Răsfoiți Sursa

Updated to 6.8

deadmoon 4 ani în urmă
părinte
comite
0ac7ce3cab
8 a modificat fișierele cu 614 adăugiri și 17244 ștergeri
  1. 1 0
      CHANGELOG.md
  2. 6 3
      Optimizer/InfoForm.Designer.cs
  3. 544 740
      Optimizer/MainForm.Designer.cs
  4. 18 0
      Optimizer/MainForm.cs
  5. 40 16496
      Optimizer/MainForm.resx
  6. 1 1
      Optimizer/Program.cs
  7. 3 3
      README.md
  8. 1 1
      version.txt

+ 1 - 0
CHANGELOG.md

@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
 - New: Visual C++ AiO, .NET Frameworks & ViPER4Windows in Common Apps
 - New: Visual C++ AiO, .NET Frameworks & ViPER4Windows in Common Apps
 - New: Error logging
 - New: Error logging
 - Improved: Updates to Common Apps versions
 - Improved: Updates to Common Apps versions
+- Improved: UI polishing
 
 
 ## [6.7] - 2021-02-25
 ## [6.7] - 2021-02-25
 - Hotfix: Search not working (Reset Superfetch, disable it again and restart Windows to fix)
 - Hotfix: Search not working (Reset Superfetch, disable it again and restart Windows to fix)

+ 6 - 3
Optimizer/InfoForm.Designer.cs

@@ -43,7 +43,7 @@
             this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
             this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
             this.btnOK.ForeColor = System.Drawing.Color.White;
             this.btnOK.ForeColor = System.Drawing.Color.White;
             this.btnOK.Location = new System.Drawing.Point(487, 354);
             this.btnOK.Location = new System.Drawing.Point(487, 354);
-            this.btnOK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
+            this.btnOK.Margin = new System.Windows.Forms.Padding(2);
             this.btnOK.Name = "btnOK";
             this.btnOK.Name = "btnOK";
             this.btnOK.Size = new System.Drawing.Size(96, 31);
             this.btnOK.Size = new System.Drawing.Size(96, 31);
             this.btnOK.TabIndex = 32;
             this.btnOK.TabIndex = 32;
@@ -54,12 +54,15 @@
             // 
             // 
             // txtInfo
             // txtInfo
             // 
             // 
+            this.txtInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
+            | System.Windows.Forms.AnchorStyles.Left) 
+            | System.Windows.Forms.AnchorStyles.Right)));
             this.txtInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
             this.txtInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
             this.txtInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
             this.txtInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
             this.txtInfo.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
             this.txtInfo.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
             this.txtInfo.ForeColor = System.Drawing.Color.White;
             this.txtInfo.ForeColor = System.Drawing.Color.White;
             this.txtInfo.Location = new System.Drawing.Point(10, 10);
             this.txtInfo.Location = new System.Drawing.Point(10, 10);
-            this.txtInfo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
+            this.txtInfo.Margin = new System.Windows.Forms.Padding(2);
             this.txtInfo.Multiline = true;
             this.txtInfo.Multiline = true;
             this.txtInfo.Name = "txtInfo";
             this.txtInfo.Name = "txtInfo";
             this.txtInfo.ReadOnly = true;
             this.txtInfo.ReadOnly = true;
@@ -80,13 +83,13 @@
             this.Controls.Add(this.btnOK);
             this.Controls.Add(this.btnOK);
             this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
             this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
             this.ForeColor = System.Drawing.Color.White;
             this.ForeColor = System.Drawing.Color.White;
-            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
             this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
             this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
             this.MaximizeBox = false;
             this.MaximizeBox = false;
             this.MinimizeBox = false;
             this.MinimizeBox = false;
             this.Name = "InfoForm";
             this.Name = "InfoForm";
             this.ShowIcon = false;
             this.ShowIcon = false;
             this.ShowInTaskbar = false;
             this.ShowInTaskbar = false;
+            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
             this.Load += new System.EventHandler(this.Info_Load);
             this.Load += new System.EventHandler(this.Info_Load);
             this.ResumeLayout(false);
             this.ResumeLayout(false);

Fișier diff suprimat deoarece este prea mare
+ 544 - 740
Optimizer/MainForm.Designer.cs


+ 18 - 0
Optimizer/MainForm.cs

@@ -2334,5 +2334,23 @@ namespace Optimizer
         {
         {
             Process.Start("https://github.com/hellzerg/optimizer");
             Process.Start("https://github.com/hellzerg/optimizer");
         }
         }
+
+        private void btnViewLog_Click(object sender, EventArgs e)
+        {
+            if (File.Exists(ErrorLogger.ErrorLogFile))
+            {
+                InfoForm iform = new InfoForm(File.ReadAllText(ErrorLogger.ErrorLogFile, Encoding.UTF8));
+                iform.ShowDialog();
+            }
+            else
+            {
+                MessageBox.Show("There are no errors to show!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
+            }
+        }
+
+        private void btnOpenConf_Click(object sender, EventArgs e)
+        {
+            Process.Start(Required.CoreFolder);
+        }
     }
     }
 }
 }

Fișier diff suprimat deoarece este prea mare
+ 40 - 16496
Optimizer/MainForm.resx


+ 1 - 1
Optimizer/Program.cs

@@ -42,7 +42,7 @@ namespace Optimizer
         {
         {
             EmbeddedAssembly.Load(_jsonAssembly, _jsonAssembly.Replace("Optimizer.", string.Empty));
             EmbeddedAssembly.Load(_jsonAssembly, _jsonAssembly.Replace("Optimizer.", string.Empty));
             AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
             AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
-
+            
             Application.EnableVisualStyles();
             Application.EnableVisualStyles();
             Application.SetCompatibleTextRenderingDefault(false);
             Application.SetCompatibleTextRenderingDefault(false);
 
 

+ 3 - 3
README.md

@@ -48,6 +48,6 @@ https://github.com/hellzerg/optimizer/blob/master/LEGACY.md
 
 
 ## Details: ##
 ## Details: ##
 
 
-* Latest version: 6.7
-* Released: February 25, 2021
-* SHA256: 12F997868501087306ADF6B8F934F11F03544CBBE2CB4D680257C1906A67CADC
+* Latest version: 6.8
+* Released: March 12, 2021
+* SHA256: 6433E18C3C6E85C5992B2571AD9B726B1ABFF1E3FA4FE0DC377CFB3BDFFFC5B6

+ 1 - 1
version.txt

@@ -1 +1 @@
-6.7
+6.8

Unele fișiere nu au fost afișate deoarece prea multe fișiere au fost modificate în acest diff