Skip to content

Commit

Permalink
Merge pull request #244 from calibx/develop
Browse files Browse the repository at this point in the history
3.0.1 : Bugfixe on the misc
  • Loading branch information
calibx committed Feb 29, 2024
2 parents 45a0554 + 7daf85a commit e13f568
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MsfsPlugin/MsfsPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("4.3.0.7478")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyVersion("3.0.1.0")]

2 changes: 1 addition & 1 deletion MsfsPlugin/MsfsPlugin/Resources/LoupedeckPackage.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
type: plugin4
name: MSFS
displayName: Microsoft Flight Simulator
version: 3.0.0
version: 3.0.1
author: CaliBx
copyright: CaliBx

Expand Down
2 changes: 1 addition & 1 deletion MsfsPlugin/MsfsPlugin/Resources/LoupedeckPackageRazor.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
type: plugin4
name: MSFS
displayName: Microsoft Flight Simulator
version: 3.0.0
version: 3.0.1
author: CaliBx
copyright: CaliBx

Expand Down
2 changes: 1 addition & 1 deletion MsfsPlugin/MsfsPlugin/input/misc/MiscInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ protected override bool RunCommand(ActionEditorActionParameters actionParameters
actionParameters.TryGetString(componentListBox, out var components);
actionParameters.TryGetString(eventListBox, out var eventName);
DebugTracing.Trace("Exec " + vendor + " " + aircraft + " " + components + " " + eventName);
Tuple<string, uint> eventItem = DataTransferOut.MobiEvents[vendor][aircraft][components].Find(x => x.Item1 == eventName);
Tuple<string, uint> eventItem = DataTransferOut.MobiEvents[vendor][aircraft][components.Split("/")[1]].Find(x => x.Item1 == eventName);
SimConnectDAO.Instance.SendEvent((DataTransferTypes.DUMMY_EVENTS)eventItem.Item2, 1);
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion MsfsPlugin/MsfsPlugin/msfs/MsfsData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MsfsData

private MsfsData()
{
DEBUG = true;
DEBUG = false;
}

public void Register(INotifiable notif) => notifiables.Add(notif);
Expand Down

0 comments on commit e13f568

Please sign in to comment.