mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-12-26 22:32:01 +00:00
Update release note
This commit is contained in:
parent
e94cb5e581
commit
0e0822970b
4 changed files with 14 additions and 16 deletions
|
@ -4,7 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<Configuration>Local</Configuration>
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
<PublishDir>..\..\..\publish\master</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
|
|
|
@ -1,15 +1,7 @@
|
|||
## Version 4.1.1
|
||||
## Version 4.1.2
|
||||
|
||||
* Added option to store POPM profiles and configuration files in your user's AppData Roaming folder instead of Documents folder. Hopefully, this solved the issue where OneDrive users are having issue with POPM files.
|
||||
* Added touch support for pop out when in full screen mode.
|
||||
|
||||
* Fixed POPM inability to close correctly when Keyboard Shortcuts preference is disabled.
|
||||
* Fixed pop out always on top issue where it sometimes does not work.
|
||||
|
||||
* Fixed issue where auto start option failed to retain CommandLine arguments in exe.xml file.
|
||||
|
||||
* Fixed issue where auto start does not work correctly for Steam version of MSFS since exe.xml file location has been moved by Steam installation.
|
||||
|
||||
* Added ability for full screen panel to work as floating panel. An example use case is to show and hide EFB as full screen using keyboard shortcut.
|
||||
|
||||
* Added dynamic LOD (my own implementation of AutoFPS) - this is totally experimental and unsupported. If you decide to use this version of dynamic LOD, you don't have to run multiple apps.
|
||||
|
||||
* Fixed various smaller bugs.
|
||||
* Improved dynamic LOD FPS detection and logic.
|
||||
|
|
|
@ -1,6 +1,15 @@
|
|||
# Version History
|
||||
<hr/>
|
||||
|
||||
## Version 4.1.2
|
||||
|
||||
* Added touch support for pop out when in full screen mode.
|
||||
|
||||
* Fixed pop out always on top issue where it sometimes does not work.
|
||||
|
||||
* Improved dynamic LOD FPS detection and logic.
|
||||
|
||||
|
||||
## Version 4.1.1
|
||||
|
||||
* Added option to store POPM profiles and configuration files in your user's AppData Roaming folder instead of Documents folder. Hopefully, this solved the issue where OneDrive users are having issue with POPM files.
|
||||
|
|
|
@ -143,9 +143,6 @@ namespace MSFSPopoutPanelManager.WindowsAgent
|
|||
[DllImport("user32.dll", SetLastError = true)]
|
||||
public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
public static extern void SwitchToThisWindow(IntPtr hWnd, bool turnOn);
|
||||
|
||||
[DllImport("user32.dll", SetLastError = true)]
|
||||
public static extern int UnhookWinEvent(IntPtr hWinEventHook);
|
||||
|
||||
|
|
Loading…
Reference in a new issue