Skip to content

Commit

Permalink
Updated to 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hellzerg committed Dec 10, 2020
1 parent 7bdd43a commit 1b583e7
Show file tree
Hide file tree
Showing 19 changed files with 822 additions and 1,639 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [5.0] - 2020-12-10
- Added: Remove Cast to Device option
- Added: Pre-made adblock in HOSTS editor
- Added: Allow Optimizer on Windows Server using "/unsafe" switch
- Improved: Faster HOSTS file reading
- Improved: Disable Network Throttling
- Removed: Block Skype ads (useless)

## [4.9] - 2019-11-07
- Added: Run Optimizer silently, using configuration file
- Added: Disable Windows Store automatic updates (Disable Silent App Install)
Expand Down
6 changes: 4 additions & 2 deletions CONFS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ Download the configuration file based on your Windows version and edit it accord

Then, execute it like this: optimizer.exe /w10.conf


### For Windows 7: ###
https://github.com/hellzerg/optimizer/blob/master/confs/w7.conf

### For Windows 8/8.1: ###
https://github.com/hellzerg/optimizer/blob/master/confs/w8.conf

### For Windows 10: ###
https://github.com/hellzerg/optimizer/blob/master/confs/w10.conf
https://github.com/hellzerg/optimizer/blob/master/confs/w10.conf

## Run Optimizer on Windows Server 2008-2012-2016 ##
optimizer.exe /unsafe
39 changes: 20 additions & 19 deletions Optimizer/HostsEditorForm.Designer.cs

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

11 changes: 7 additions & 4 deletions Optimizer/HostsEditorForm.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.IO;
using System.Windows.Forms;

namespace Optimizer
Expand All @@ -20,10 +21,12 @@ public HostsEditorForm()

private void HostsEditor_Load(object sender, EventArgs e)
{
foreach (string line in HostsHelper.ReadHosts())
{
textBox1.Text += line + HostsHelper.NewLine;
}
//foreach (string line in HostsHelper.ReadHosts())
//{
// textBox1.Text += line + HostsHelper.NewLine;
//}

textBox1.Text = HostsHelper.ReadHostsFast();

textBox1.Focus();
}
Expand Down
Loading

0 comments on commit 1b583e7

Please sign in to comment.