Skip to content

Commit

Permalink
update to dotnet framework 4.8
Browse files Browse the repository at this point in the history
fix problem with page down key
  • Loading branch information
mhwlng committed Apr 23, 2022
1 parent c5f6f82 commit 9ecc2de
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions starcitizen/CommandTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,7 @@ private static DirectInputKeyCode FromSCKeyboardCmd(string scKey)
case "end": return DirectInputKeyCode.DikEnd;
case "pgup": return DirectInputKeyCode.DikPageUp;
case "pgdown": return DirectInputKeyCode.DikPageDown;
case "pgdn": return DirectInputKeyCode.DikPageDown;
case "print": return DirectInputKeyCode.DikPrintscreen;
case "scrolllock": return DirectInputKeyCode.DikScroll;
case "pause": return DirectInputKeyCode.DikPause;
Expand Down
4 changes: 2 additions & 2 deletions starcitizen/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("1.0.*")]
[assembly: AssemblyVersion("1.0.7.0")]
[assembly: AssemblyFileVersion("1.0.7.0")]
[assembly: AssemblyVersion("1.0.8.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]
2 changes: 1 addition & 1 deletion starcitizen/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"Name": "Star Citizen",
"Icon": "Images/pluginIcon",
"URL": "https://github.com/mhwlng/streamdeck-starcitizen",
"Version": "1.0.7",
"Version": "1.0.8",
"CodePath": "com.mhwlng.starcitizen",
"Category": "Star Citizen",
"CategoryIcon": "Images/categoryIcon",
Expand Down
2 changes: 1 addition & 1 deletion starcitizen/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="CommandLineParser" version="2.8.0" targetFramework="net472" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.7" targetFramework="net472" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.8" targetFramework="net48" />
<package id="Microsoft.CSharp" version="4.7.0" targetFramework="net472" />
<package id="Microsoft.Win32.Registry" version="5.0.0" targetFramework="net472" />
<package id="NAudio" version="2.0.1" targetFramework="net472" />
Expand Down
4 changes: 2 additions & 2 deletions starcitizen/starcitizen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Net" />
<Reference Include="System.Net.Http.Formatting, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.7\lib\net45\System.Net.Http.Formatting.dll</HintPath>
<Reference Include="System.Net.Http.Formatting, Version=5.2.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.8\lib\net45\System.Net.Http.Formatting.dll</HintPath>
</Reference>
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
Expand Down

0 comments on commit 9ecc2de

Please sign in to comment.