소스 검색

added view changes

deadmoon 7 년 전
부모
커밋
23e303a7c8
3개의 변경된 파일153개의 추가작업 그리고 138개의 파일을 삭제
  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]
 - Added: Disable Program Compatibility Assistant Service
 - Added: Check for new versions in Options
+- Added: View changes in Options
 
 ## [3.8] - 2017-12-31
 - Windows 7 crashing fixed

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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 _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 _betaVersionMessage = "You are using an experimental version!";
@@ -1747,5 +1748,14 @@ namespace Optimizer
         {
             CheckForUpdate();
         }
+
+        private void btnChangelog_Click(object sender, EventArgs e)
+        {
+            try
+            {
+                Process.Start(_changelogLink);
+            }
+            catch { }
+        }
     }
 }

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.