Skip to content

Commit

Permalink
misc: Bump version to 0.2.0, change target framework to .net core 3.1…
Browse files Browse the repository at this point in the history
…. Fix space key not working properly.
  • Loading branch information
rabbitism committed Aug 15, 2020
1 parent 59eec0e commit 43ed720
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions GeMS-Key-Plus/GeMS-Key-Plus/GeMS-Key-Plus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp5.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>GeMS_Key_Plus</RootNamespace>
<UseWPF>true</UseWPF>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
<Authors>Rabbitism</Authors>
<Company>Galaxism</Company>
<Product>GEMS Key Plus</Product>
<Product>Keyz</Product>
<ApplicationIcon>Key.ico</ApplicationIcon>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\netcoreapp5.0\publish\</PublishDir>
<PublishDir>bin\Release\netcoreapp3.1\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>netcoreapp5.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<SelfContained>false</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>False</PublishSingleFile>
<PublishReadyToRun>False</PublishReadyToRun>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public void Query(Key key)
else if (_keyMapping.ContainsKey(key))
{
_keyMapping[key].Query();
_latestButton = _keyMapping[key];
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions GeMS-Key-Plus/GeMS-Key-Plus/Views/Setting.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
WindowStartupLocation="CenterScreen"
MinWidth="600"
Title="Setting" Height="450" Width="800">
<materialDesign:Card>
<StackPanel MouseDown="StackPanel_MouseDown">
<materialDesign:Card Margin="8">
<StackPanel PreviewMouseDown="StackPanel_MouseDown">
<Grid Margin="16">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
Expand Down

0 comments on commit 43ed720

Please sign in to comment.