Skip to content

Commit

Permalink
version: v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Nov 24, 2023
1 parent 87b6e3d commit c8ecefa
Show file tree
Hide file tree
Showing 4 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("Fischless Setup")]
[assembly: AssemblyCompany("GenshinMatrix")]
[assembly: AssemblyCopyright("Under MIT License. Copyright (c) GenshinMatrix Contributors.")]
[assembly: AssemblyVersion("0.3.5.0")]
[assembly: AssemblyFileVersion("0.3.5.0")]
[assembly: AssemblyVersion("0.3.6.0")]
[assembly: AssemblyFileVersion("0.3.6.0")]

namespace MicaSetup;

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

namespace MicaSetup;

Expand Down Expand Up @@ -45,7 +45,7 @@ internal static void Main()
option.KeyName = "Fischless";
option.DisplayName = "Fischless";
option.DisplayIcon = "Fischless.exe";
option.DisplayVersion = "0.3.5.0";
option.DisplayVersion = "0.3.6.0";
option.Publisher = "GenshinMatrix";
option.AppName = "Fischless";
option.SetupName = $"Fischless {Mui("UninstallProgram")}";
Expand Down
6 changes: 3 additions & 3 deletions src/Desktop/Fischless/Fischless.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<StartupObject>Fischless.Program</StartupObject>
<Platforms>x64</Platforms>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<AssemblyVersion>0.3.5.0</AssemblyVersion>
<FileVersion>0.3.5.0</FileVersion>
<Version>$(VersionPrefix)0.3.5.0</Version>
<AssemblyVersion>0.3.6.0</AssemblyVersion>
<FileVersion>0.3.6.0</FileVersion>
<Version>$(VersionPrefix)0.3.6.0</Version>
<Company>GenshinMatrix</Company>
<ApplicationIcon>Assets\Icons\i2Q2r-4cr2K2kT3cSkf-ke.ico</ApplicationIcon>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static BorderlessPlugin()
public string Description => MuiLanguage.Mui("BorderlessHint");
public object Icon => IconProvider.GetFontIcon(FontSymbols.QuickNote);
public string Author => "GenshinMatrix";
public Version Version => new(0, 0, 2);
public Version Version => new(0, 0, 3);
public int Index => 1;
public bool IsShowButton => true;
public ICommand ButtonCommand => ButtonMethod.Default.GoToCommand;
Expand Down

0 comments on commit c8ecefa

Please sign in to comment.