Skip to content

Commit

Permalink
Version bump, AppData should use auto-properties
Browse files Browse the repository at this point in the history
  • Loading branch information
KimihikoAkayasaki committed Feb 21, 2023
1 parent 63db1ab commit 87d14a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Amethyst/Amethyst.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
<Copyright>© K2VR Team</Copyright>
<Description>Amethyst (Desktop) App</Description>
<PackageProjectUrl>k2vr.tech</PackageProjectUrl>
<Version>1.2.230000.1</Version>
<FileVersion>1.2.0.1</FileVersion>
<AssemblyVersion>1.2.0.1</AssemblyVersion>
<Version>1.2.230222.1</Version>
<FileVersion>1.2.0.2</FileVersion>
<AssemblyVersion>1.2.0.2</AssemblyVersion>
<RepositoryUrl>https://github.com/KinectToVR/Amethyst</RepositoryUrl>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions Amethyst/Classes/AppData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ public static class AppData
{
// Internal version number
public static (string Display, string Internal)
VersionString = ("1.2.0.0", "1.2.230000.1");
VersionString { get; } = ("1.2.0.2", "1.2.230222.1");

public const uint InternalVersion = 5; // Amethyst version
public const uint ApiVersion = 0; // API version

// Application settings
public static AppSettings Settings = new();
public static AppSettings Settings { get; set; } = new();
}

0 comments on commit 87d14a9

Please sign in to comment.