Skip to content

Commit ad953ac

Browse files
committed
bump: version
1 parent 21c599e commit ad953ac

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

AquaMai

MaiChartManager/Program.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99

1010
namespace MaiChartManager;
1111

12-
static partial class Program
12+
public static partial class Program
1313
{
14+
public const string Version = "1.3.1";
1415
public static Browser? BrowserWin { get; set; }
1516

1617
[LibraryImport("kernel32.dll", SetLastError = true)]
@@ -28,7 +29,7 @@ static partial class Program
2829
/// The main entry point for the application.
2930
/// </summary>
3031
[STAThread]
31-
static void Main()
32+
public static void Main()
3233
{
3334
SetConsoleOutputCP(65001);
3435
try
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
using System.Reflection;
2+
using MaiChartManager;
23

34
[assembly: AssemblyCompany("Clansty")]
4-
[assembly: AssemblyFileVersion("1.3.0.0")]
5-
[assembly: AssemblyInformationalVersion("1.3.0")]
5+
[assembly: AssemblyFileVersion(Program.Version)]
6+
[assembly: AssemblyInformationalVersion(Program.Version)]
67
[assembly: AssemblyProduct("MaiChartManager")]
78
[assembly: AssemblyTitle("MaiChartManager")]
8-
[assembly: AssemblyVersion("1.3.0.0")]
9+
[assembly: AssemblyVersion(Program.Version)]
910
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.17763.0")]
1011
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.14393.0")]

Packaging/Base/AppxManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
99
IgnorableNamespaces="win32dependencies"
1010
>
11-
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.3.0.0"
11+
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.3.1.0"
1212
ProcessorArchitecture="x64" />
1313
<Properties>
1414
<DisplayName>MaiChartManager</DisplayName>

0 commit comments

Comments
 (0)