Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
suchmememanyskill committed Jan 9, 2023
1 parent c34eb56 commit 17a1fcf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
16 changes: 7 additions & 9 deletions Launcher/Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<!--Avalonia doesen't support TrimMode=link currently,but we are working on that https://github.com/AvaloniaUI/Avalonia/issues/6892 -->
<TrimMode>copyused</TrimMode>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<TrimMode>link</TrimMode>
<PackageVersion>1.0.0</PackageVersion>
<AssemblyVersion>1.3.1</AssemblyVersion>
<AssemblyVersion>1.3.2</AssemblyVersion>
<AssemblyName>Alfae</AssemblyName>
</PropertyGroup>
<ItemGroup>
Expand All @@ -23,12 +21,12 @@
<TrimmableAssembly Include="Avalonia.Themes.Default" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.0-preview1" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview1" />
<PackageReference Include="Avalonia" Version="11.0.0-preview4" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview4" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0-preview1" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.0-preview1" />
<PackageReference Include="XamlNameReferenceGenerator" Version="1.3.4" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0-preview4" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.0-preview4" />
<PackageReference Include="XamlNameReferenceGenerator" Version="1.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LauncherGamePlugin\LauncherGamePlugin.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion SteamExporterPlugin/Exporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace SteamExporterPlugin;
public class Exporter : IGameSource
{
public string ServiceName => "Steam Exporter";
public string Version => "v1.2.4";
public string Version => "v1.2.5";
public string SlugServiceName => "steam-exporter";
public string ShortServiceName => "Steam";
public IApp? App { get; private set; }
Expand Down

0 comments on commit 17a1fcf

Please sign in to comment.