Skip to content

Commit 288986e

Browse files
committed
Update to version 2.2
1 parent a8041f2 commit 288986e

6 files changed

Lines changed: 8 additions & 7 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
@@ -24,7 +24,7 @@ public partial class MainWindow : UWPHost.Window {
2424
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
2525
+ "/Project Tracker";
2626
// IF YOU CHANGE THIS, ALSO CHANGE IT IN UpdateWindow.xaml.cs
27-
private readonly string CURRENT_VERSION = "2.1";
27+
private readonly string CURRENT_VERSION = "2.2";
2828

2929
private readonly string DATA_DIRECTORY =
3030
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)

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 = "2.1";
21+
private readonly string CURRENT_VERSION = "2.2";
2222
private readonly Color sortColor = Color.FromRgb(228, 233, 235);
2323
private readonly FontFamily textFont = new FontFamily("Microsoft Sans Serif");
2424

910 Bytes
Binary file not shown.
2.5 KB
Binary file not shown.
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"Version": "2.1",
3-
"Updates": [],
2+
"Version": "2.2",
3+
"Updates": [
4+
"Added the ability to update key components in the background."
5+
],
46
"Fixes": [
5-
"Fixed installation issues.",
6-
"Fixed other small bugs in the program."
7+
"Fixed small bugs in the program."
78
]
89
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1
1+
2.2

0 commit comments

Comments
 (0)