Skip to content

Commit

Permalink
update: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Jun 11, 2024
1 parent 27a4e8f commit 82d6347
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build/MicaSetup/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
[assembly: AssemblyDescription("LyricStudio Setup")]
[assembly: AssemblyCompany("Lemutec")]
[assembly: AssemblyCopyright("Under MIT License. Copyright (c) Lemutec Contributors.")]
[assembly: AssemblyVersion("0.0.1.0")]
[assembly: AssemblyFileVersion("0.0.1.0")]
[assembly: AssemblyVersion("0.1.1.0")]
[assembly: AssemblyFileVersion("0.1.1.0")]

namespace MicaSetup;

Expand Down Expand Up @@ -51,7 +51,7 @@ internal static void Main()
option.KeyName = "LyricStudio";
option.DisplayName = "LyricStudio";
option.DisplayIcon = "LyricStudio.exe";
option.DisplayVersion = "0.0.1.0";
option.DisplayVersion = "0.1.1.0";
option.Publisher = "Lemutec";
option.AppName = "LyricStudio";
option.SetupName = $"LyricStudio {Mui("Setup")}";
Expand Down
4 changes: 2 additions & 2 deletions build/MicaSetup/Program.un.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
[assembly: AssemblyDescription("LyricStudio Uninst")]
[assembly: AssemblyCompany("Lemutec")]
[assembly: AssemblyCopyright("Under MIT License. Copyright (c) Lemutec Contributors.")]
[assembly: AssemblyVersion("0.0.1.0")]
[assembly: AssemblyFileVersion("0.0.1.0")]
[assembly: AssemblyVersion("0.1.1.0")]
[assembly: AssemblyFileVersion("0.1.1.0")]

namespace MicaSetup;

Expand Down
1 change: 0 additions & 1 deletion build/setup_publish.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ for /f "usebackq delims=" %%i in (`powershell -NoLogo -NoProfile -Command ^"%scr
echo currnet version is %version%
cd /d %~dp0

set version=0.1.0.0
echo [build app using vs2022]
cd ..\src\
dotnet restore
Expand Down
6 changes: 3 additions & 3 deletions src/Desktop/LyricStudio/LyricStudio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<ApplicationIcon>Assets\Images\Favicon.ico</ApplicationIcon>
<Platforms>x64</Platforms>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<Version>$(VersionPrefix)0.1.0.0</Version>
<AssemblyVersion>0.1.1.0</AssemblyVersion>
<FileVersion>0.1.1.0</FileVersion>
<Version>$(VersionPrefix)0.1.1.0</Version>
<Company>GenshinMatrix</Company>
</PropertyGroup>
<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion src/Desktop/LyricStudio/Views/Pages/SettingsPage.axaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<UserControl x:Class="LyricStudio.Views.SettingsPage"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:base="using:LyricStudio"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:fui="urn:fischless.design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down Expand Up @@ -48,7 +49,7 @@
</StackPanel>
<TextBlock FontSize="13"
Foreground="{DynamicResource TextFillColorTertiaryBrush}"
Text="v0.0.1" />
Text="{x:Static base:AppConfig.AppVersion}" />
</StackPanel>
<StackPanel Margin="16,0,0,0"
VerticalAlignment="Center"
Expand Down

0 comments on commit 82d6347

Please sign in to comment.