Skip to content

Commit 5198cff

Browse files
authored
Merge pull request #43 from CyanCoding/cyancoding-test-branch
Update to v1.2
2 parents 73081e7 + 6b8f03c commit 5198cff

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

app/Project Tracker/Project Tracker/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public partial class MainWindow : Window {
3333
private readonly string DATA_DIRECTORY = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "/Project Tracker/data";
3434
private readonly string VERSION_MANIFEST_URL = "https://raw.githubusercontent.com/CyanCoding/Project-Tracker/master/install-resources/version.json";
3535
private readonly string VERSION_INFO = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "/Project Tracker/version.json";
36-
private readonly string CURRENT_VERSION = "1.0"; // IF YOU CHANGE THIS, ALSO CHANGE IT IN UpdateWindow.xaml.cs
36+
private readonly string CURRENT_VERSION = "1.2"; // IF YOU CHANGE THIS, ALSO CHANGE IT IN UpdateWindow.xaml.cs
3737

3838
public MainWindow() {
3939
InitializeComponent();

app/Project Tracker/Project Tracker/UpdateWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public partial class UpdateWindow : Window {
1818

1919
private readonly string INSTALLER_PATH = @"C:\Program Files\Project Tracker\Project Tracker Installer.exe";
2020
private readonly string VERSION_FILE = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "/Project Tracker/update.txt";
21-
private readonly string CURRENT_VERSION = "1.0";
21+
private readonly string CURRENT_VERSION = "1.2";
2222
private readonly Color sortColor = Color.FromRgb(228, 233, 235);
2323
private readonly FontFamily textFont = new FontFamily("Microsoft Sans Serif");
2424

93 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.

install-resources/version.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"Version": "1.0",
3-
"Updates": [
4-
"Officially released Project Tracker"
5-
],
6-
"Fixes": []
2+
"Version": "1.2",
3+
"Updates": [],
4+
"Fixes": [
5+
"Fixed some bugs with the add new item system."
6+
]
77
}

install-resources/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0
1+
1.2

0 commit comments

Comments
 (0)