Skip to content

Commit

Permalink
Major update v16.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hellzerg committed Jul 6, 2024
1 parent 4fa02a3 commit 4a63793
Show file tree
Hide file tree
Showing 50 changed files with 893 additions and 237 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
## [Unreleased]
## [16.6] - 2024-07-06
- New: System Variables editor in Integrator
- New: Disable Copilot + Recall feature
- New: Disable Phone Link suggestions
- New: Disable Microsoft Services ads showing as suggestions
- New: Indonesian and Croatian language added
- Hotfix: Malware Tool Removal excluded completely, because of false positives
- Improved: Localization updates
- Improved: Visual changes

## [16.5] - 2024-05-03
- New: Enable UTC time globally on Windows
Expand Down
2 changes: 1 addition & 1 deletion FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The decision to disable System Restore is up to you. Keep in mind that disabling
### **Should I disable Print Service or Fax Service?**
If you actively use printer and/or fax devices, it's advisable not to disable these services. Disabling them might hinder your ability to use these devices effectively.

### **My Windows Hello stopped working! Why?**
### **My Windows Hello, Fingerprint and Biometrics stopped working! Why?**
You should reset the "Enhance Privacy" and restart your computer.

### **I cannot log in to Xbox Live! Why?**
Expand Down
3 changes: 2 additions & 1 deletion Optimizer/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ internal static class Constants
internal static string BULGARIAN = "български";
internal static string VIETNAMESE = "Tiếng Việt";
internal static string URDU = "لشکری ‍زبان";
internal static string INDONESIA = "Bahasa Indonesia";
internal static string INDONESIAN = "Bahasa Indonesia";
internal static string CROATIAN = "Hrvat";

internal static string CloudflareDNS = "Cloudflare";
internal static string OpenDNS = "OpenDNS";
Expand Down
2 changes: 2 additions & 0 deletions Optimizer/Controls/MoonTabs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ protected override void OnMouseDown(MouseEventArgs e)
{
bMouseDown = true;
SetDragState();
if (SelectedIndex == -1) return;
Rectangle rectDrag = GetTabRect(SelectedIndex);
ptPreviousLocation = new Point(rectDrag.X, rectDrag.Y);
rectDrag.Width += 1; rectDrag.Height += 1;
Expand Down Expand Up @@ -179,6 +180,7 @@ protected override void OnPaint(PaintEventArgs e)
}

{
if (SelectedIndex == -1) return;
Rectangle rectDivider = GetTabRect(SelectedIndex);

if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom)
Expand Down
1 change: 1 addition & 0 deletions Optimizer/Controls/ToggleCard.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Optimizer/Controls/ToggleCard.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Drawing;
using System.Windows.Forms;

namespace Optimizer
Expand Down Expand Up @@ -55,11 +56,13 @@ private void Toggle_CheckedChanged(object sender, EventArgs e)
private void Label_MouseLeave(object sender, EventArgs e)
{
Label.Font = new System.Drawing.Font(Label.Font, System.Drawing.FontStyle.Regular);
Label.ForeColor = Color.White;
}

private void Label_MouseEnter(object sender, EventArgs e)
{
Label.Font = new System.Drawing.Font(Label.Font, System.Drawing.FontStyle.Underline);
Label.ForeColor = OptionsHelper.ForegroundColor;
}

private void Label_Click(object sender, EventArgs e)
Expand All @@ -72,6 +75,7 @@ private void Label_Click(object sender, EventArgs e)
private void Label_MouseHover(object sender, EventArgs e)
{
Label.Font = new System.Drawing.Font(Label.Font, System.Drawing.FontStyle.Underline);
Label.ForeColor = OptionsHelper.ForegroundColor;
}
}
}
2 changes: 1 addition & 1 deletion Optimizer/DebugHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal sealed class DebugHelper
internal static void FindDifferenceInTwoJsons()
{
JObject file1 = JObject.Parse(Properties.Resources.EN);
JObject file2 = JObject.Parse(Properties.Resources.BG);
JObject file2 = JObject.Parse(Properties.Resources.ID);

var p1 = file1.Properties().ToList();
var p2 = file2.Properties().ToList();
Expand Down
150 changes: 109 additions & 41 deletions Optimizer/Forms/FirstRunForm.Designer.cs

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions Optimizer/Forms/FirstRunForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -348,5 +348,29 @@ private void radioUrdu_CheckedChanged(object sender, EventArgs e)
OptionsHelper.SaveSettings();
OptionsHelper.LoadTranslation();
}

private void pictureBox25_Click(object sender, EventArgs e)
{
radioCroatian.PerformClick();
}

private void pictureBox24_Click(object sender, EventArgs e)
{
radioIndonesian.PerformClick();
}

private void radioCroatian_CheckedChanged(object sender, EventArgs e)
{
OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.HR;
OptionsHelper.SaveSettings();
OptionsHelper.LoadTranslation();
}

private void radioIndonesian_CheckedChanged(object sender, EventArgs e)
{
OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.ID;
OptionsHelper.SaveSettings();
OptionsHelper.LoadTranslation();
}
}
}
174 changes: 174 additions & 0 deletions Optimizer/Forms/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4a63793

Please sign in to comment.