1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00

Version 3.3.7 Release

This commit is contained in:
Stanley 2022-07-10 20:18:02 -04:00
commit 515e4e2215
4 changed files with 17 additions and 34 deletions

View file

@ -2,7 +2,11 @@
<hr/> <hr/>
## Version 3.3.7 ## Version 3.3.7
* Fixed an issue where panel number circles are displayed at the wrong location instead of at the location where you clicked your mouse when setting monitor scale that is greater than 100% in Windows display setting. * Fixed an issue where panel number circles are displayed at the incorrect location instead of at the location where you clicked your mouse. This issue will most likely occur if your monitor display scale is greater than 100% in Windows display setting.
* Fixed an issue where panel number circles cannot be move immediately after the completion of panel selection.
* Added support for multi window (new in SU10 beta) so the app does not close the add-on window when pop out starts.
## Version 3.3.6 ## Version 3.3.6
* Hot Fix: Resolved an issue where panel separation fails if your MSFS game window is not on the same monitor as where the panels are initially popped out (upper left corner). * Hot Fix: Resolved an issue where panel separation fails if your MSFS game window is not on the same monitor as where the panels are initially popped out (upper left corner).

View file

@ -34,9 +34,6 @@ namespace MSFSPopoutPanelManager.WpfApp
{ {
_leftCoor = x - LEFT_ADJUSTMENT; _leftCoor = x - LEFT_ADJUSTMENT;
_topCoor = y - TOP_ADJUSTMENT; _topCoor = y - TOP_ADJUSTMENT;
this.Left = x - LEFT_ADJUSTMENT;
this.Top = y - TOP_ADJUSTMENT;
} }
private void PanelCoorOverlay_Loaded(object sender, System.EventArgs e) private void PanelCoorOverlay_Loaded(object sender, System.EventArgs e)

View file

@ -206,8 +206,8 @@ namespace MSFSPopoutPanelManager.WpfApp.ViewModel
_panelSelectionManager.UserProfile = DataStore.ActiveUserProfile; _panelSelectionManager.UserProfile = DataStore.ActiveUserProfile;
_panelSelectionManager.AppSetting = DataStore.AppSetting; _panelSelectionManager.AppSetting = DataStore.AppSetting;
if (DataStore.AppSetting.UseAutoPanning) //if (DataStore.AppSetting.UseAutoPanning)
InputEmulationManager.LoadCustomView(DataStore.AppSetting.AutoPanningKeyBinding); // InputEmulationManager.LoadCustomView(DataStore.AppSetting.AutoPanningKeyBinding);
InputHookManager.StartHook(); InputHookManager.StartHook();
} }
@ -306,6 +306,8 @@ namespace MSFSPopoutPanelManager.WpfApp.ViewModel
Logger.LogStatus("Panels selection is completed. No panel has been selected.", StatusMessageType.Info); Logger.LogStatus("Panels selection is completed. No panel has been selected.", StatusMessageType.Info);
IsEditingPanelCoorOverlay = true; IsEditingPanelCoorOverlay = true;
ShowPanelOverlay(true);
} }
private bool CanExecute(object commandParameter) private bool CanExecute(object commandParameter)

View file

@ -1,31 +1,11 @@
Version 3.3.6.0 (HOT FIX) Version 3.3.7
- Resolved an issue where panel separation fails if your MSFS game window is not on the same - Fixed an issue where panel number circles are displayed at the incorrect location instead of
monitor as where the panels are initially popped out (upper left corner). at the location where you clicked your mouse. This issue will most likely occur if your monitor
display scale is greater than 100% in Windows display setting.
Version 3.3.5.0 - Fixed an issue where panel number circles cannot be move immediately after the completion of
panel selection.
This update is optional. You can safely skip this version if you do not require the following - Added support for multi window (new in SU10 beta) so the app does not close the add-on window
application fixes. when pop out starts.
- Fixed an issue when using auto pop out panel in combination with power on during cold start for
the following two G1000 planes (Cessna 172 and Cessna 208B Grand Caravan), instrumentations are
not powering on to allow pop out to occur.
- Fixed an issue when panels are designated as full screen mode, they're not resizing to full
screen after they're popped out.
- Fixed an issue when using auto pop out panel, "Ready to Fly" button may not get click when
interface scale is set to higher than 70. Unfortunately, because of how MSFS coded this
particular button, this fix may add few extra seconds to the duration of auto pop out process
since the application needs to search for the button to click. To speed up the pop out process,
you can try to set auto pop out panel wait delays to minimum of 1 second in preferences menu and
increase one second at a time until pop out works flawlessly for your system.
- Updated verbiage for "Save Auto Panning Camera" button to "Override Auto Panning Camera". This
is to clear the confusion when initially selecting panels for a profile, clicking this button
eems to be required. "Override Auto Panning Camera" is only needed when your camera viewport has
changed for an existing profile and you do not want to recreate a new profile to set new panel
locations.
- Made improvement to the behavior of Track IR (enable/disable) when using the application.