Browse Source

added view changes

deadmoon 7 years ago
parent
commit
23e303a7c8
3 changed files with 153 additions and 138 deletions
  1. 1 0
      CHANGELOG.md
  2. 142 138
      Optimizer/MainForm.Designer.cs
  3. 10 0
      Optimizer/MainForm.cs

+ 1 - 0
CHANGELOG.md

@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
 ## [UNRELEASED] [3.9]
 ## [UNRELEASED] [3.9]
 - Added: Disable Program Compatibility Assistant Service
 - Added: Disable Program Compatibility Assistant Service
 - Added: Check for new versions in Options
 - Added: Check for new versions in Options
+- Added: View changes in Options
 
 
 ## [3.8] - 2017-12-31
 ## [3.8] - 2017-12-31
 - Windows 7 crashing fixed
 - Windows 7 crashing fixed

File diff suppressed because it is too large
+ 142 - 138
Optimizer/MainForm.Designer.cs


+ 10 - 0
Optimizer/MainForm.cs

@@ -34,6 +34,7 @@ namespace Optimizer
 
 
         readonly string _latestVersionLink = "https://raw.githubusercontent.com/hellzerg/optimizer/master/version.txt";
         readonly string _latestVersionLink = "https://raw.githubusercontent.com/hellzerg/optimizer/master/version.txt";
         readonly string _releasesLink = "https://github.com/hellzerg/optimizer/releases";
         readonly string _releasesLink = "https://github.com/hellzerg/optimizer/releases";
+        readonly string _changelogLink = "https://github.com/hellzerg/optimizer/blob/master/CHANGELOG.md";
 
 
         readonly string _noNewVersionMessage = "You already have the latest version!";
         readonly string _noNewVersionMessage = "You already have the latest version!";
         readonly string _betaVersionMessage = "You are using an experimental version!";
         readonly string _betaVersionMessage = "You are using an experimental version!";
@@ -1747,5 +1748,14 @@ namespace Optimizer
         {
         {
             CheckForUpdate();
             CheckForUpdate();
         }
         }
+
+        private void btnChangelog_Click(object sender, EventArgs e)
+        {
+            try
+            {
+                Process.Start(_changelogLink);
+            }
+            catch { }
+        }
     }
     }
 }
 }

Some files were not shown because too many files changed in this diff