Skip to content

Commit

Permalink
bump: version
Browse files Browse the repository at this point in the history
  • Loading branch information
clansty committed Dec 8, 2024
1 parent 21c599e commit ad953ac
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions MaiChartManager/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

namespace MaiChartManager;

static partial class Program
public static partial class Program
{
public const string Version = "1.3.1";
public static Browser? BrowserWin { get; set; }

[LibraryImport("kernel32.dll", SetLastError = true)]
Expand All @@ -28,7 +29,7 @@ static partial class Program
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
public static void Main()
{
SetConsoleOutputCP(65001);
try
Expand Down
7 changes: 4 additions & 3 deletions MaiChartManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
using System.Reflection;
using MaiChartManager;

[assembly: AssemblyCompany("Clansty")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyInformationalVersion("1.3.0")]
[assembly: AssemblyFileVersion(Program.Version)]
[assembly: AssemblyInformationalVersion(Program.Version)]
[assembly: AssemblyProduct("MaiChartManager")]
[assembly: AssemblyTitle("MaiChartManager")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyVersion(Program.Version)]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.17763.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.14393.0")]
2 changes: 1 addition & 1 deletion Packaging/Base/AppxManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
IgnorableNamespaces="win32dependencies"
>
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.3.0.0"
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.3.1.0"
ProcessorArchitecture="x64" />
<Properties>
<DisplayName>MaiChartManager</DisplayName>
Expand Down

0 comments on commit ad953ac

Please sign in to comment.