Skip to content

Commit

Permalink
bump version, move app version string property to Utils.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
GlowPuff committed May 30, 2024
1 parent 0681339 commit abe4cba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AppModels/ProjectListData.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using System.Collections.ObjectModel;
using CommunityToolkit.Mvvm.ComponentModel;
using Imperial_Commander_Editor;

namespace Saga_Translator_V2
{
public class ProjectListData : ObservableObject
{
private string _version = "Version: 3.0";
public string version { get => _version; set => SetProperty( ref _version, value ); }
public string version { get => Utils.appVersionString; }

public ObservableCollection<ProjectListItem> projectListItems { get; set; }

Expand Down
1 change: 1 addition & 0 deletions Models/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace Imperial_Commander_Editor
public static class Utils
{
public const string formatVersion = "22";
public const string appVersionString = "Version: 3.1";

public static List<DeploymentCard> allyData { get; set; }
public static List<DeploymentCard> enemyData { get; set; }//enemies + villains
Expand Down

0 comments on commit abe4cba

Please sign in to comment.