Windows Tweaker has been written in C# and WPF using .net Framework 4.5, to allow users to easily change every possible setting in Windows without having to dig deep into registry.
Head to this Lifehacker article if you don't know how to setup git on Windows.
-
Download Visual Studio Express 2013 for Windows Desktop, in case you don't have a paid license for Visual Studio 2013.
-
Clone the repository
git clone git@github.com:siddharth96/windows-tweaker.git
-
Create a new file called
Keys.Local.cs
, which is an extension toKeys.cs
. On production buildKeys.Local.cs
contains the actual values for the parameters (which can't be checked into the repo for security reasons). Put the following code in this file:-
namespace WindowsTweaker {
internal static partial class Keys { }
}
- Porter Stemmer 2 algorithm for stemming English words (C# Implementation link, Python Implementation Link)
- Snowball Stemmer algorithm for stemming German and Russian words (C# Implementation Link, Python Implementation Link)
Change the branch, if you want to build the previous stable release.