Skip to content

Commit

Permalink
Merge pull request #102 from calibx/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
calibx committed Jul 3, 2022
2 parents a874c5b + 77b9beb commit d3f098e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MsfsPlugin/MsfsPlugin/MsfsPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ if $(ConfigurationName) == Release (
powershell Copy-Item '$(OutDir)Microsoft.FlightSimulator.SimConnect.dll' -Destination '$(OutDir)archive\bin\win'
powershell Copy-Item '$(OutDir)\SimConnect.dll' -Destination '$(OutDir)archive\bin\win'
powershell Copy-Item '$(OutDir)Resources\LoupedeckPackage.yaml' -Destination '$(OutDir)archive\'
powershell Compress-Archive -Path '$(OutDir)archive\*', '$(OutDir)archive\bin' -DestinationPath '$(OutDir)archive\MSFSPluginPackage.zip'
powershell Compress-Archive -Path '$(OutDir)archive\*' -DestinationPath '$(OutDir)archive\MSFSPluginPackage.zip'
powershell Rename-Item -Path '$(OutDir)archive\MSFSPluginPackage.zip' -NewName MSFSPluginPackage.lplug4
)
</PostBuildEvent>
Expand Down
2 changes: 1 addition & 1 deletion MsfsPlugin/MsfsPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
// 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("1.0.2")]
[assembly: AssemblyVersion("1.0.3")]
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: 1.0.2
version: 1.0.3
author: CaliBx
copyright: CaliBx

Expand Down
4 changes: 2 additions & 2 deletions MsfsPlugin/MsfsPlugin/folder/ComDynamicFolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ private Int64 ApplyAdjustment(Int64 value, Int32 min, Int32 max, Int32 steps, In
{
value += ticks * steps;
if (value < min)
{ value = min; }
else if (value > max)
{ value = max; }
else if (value > max)
{ value = min; }
return value;
}
private String IntToCOMStatus(Int64 comStatus)
Expand Down

0 comments on commit d3f098e

Please sign in to comment.