diff --git a/Main.Designer.cs b/Main.Designer.cs index a6d3d26..ba43327 100644 --- a/Main.Designer.cs +++ b/Main.Designer.cs @@ -311,6 +311,7 @@ private void InitializeComponent() this.autolabel.Size = new System.Drawing.Size(312, 25); this.autolabel.TabIndex = 19; this.autolabel.Text = "automatic respring and uicache"; + this.autolabel.Click += new System.EventHandler(this.autolabel_Click); // // paypal // diff --git a/Main.cs b/Main.cs index 953bd45..794f103 100644 --- a/Main.cs +++ b/Main.cs @@ -63,6 +63,7 @@ private void Uninstall_Click(object sender, EventArgs e) private void Main_Load(object sender, EventArgs e) { + if (!Directory.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\tweak-installer\\")) Directory.CreateDirectory(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\tweak-installer\\"); //check for updates try { @@ -156,5 +157,10 @@ private void paypal_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start("http://paypal.me/JosephWalden"); } + + private void autolabel_Click(object sender, EventArgs e) + { + auto.Checked = !auto.Checked; + } } } diff --git a/bin/Debug/Tweak Installer.exe b/bin/Debug/Tweak Installer.exe index 108cf0c..0670315 100644 Binary files a/bin/Debug/Tweak Installer.exe and b/bin/Debug/Tweak Installer.exe differ diff --git a/bin/Debug/Tweak Installer.pdb b/bin/Debug/Tweak Installer.pdb index afc6692..558c78b 100644 Binary files a/bin/Debug/Tweak Installer.pdb and b/bin/Debug/Tweak Installer.pdb differ diff --git a/obj/Debug/Tweak Installer.csproj.GenerateResource.Cache b/obj/Debug/Tweak Installer.csproj.GenerateResource.Cache index 3feec44..ac724cc 100644 Binary files a/obj/Debug/Tweak Installer.csproj.GenerateResource.Cache and b/obj/Debug/Tweak Installer.csproj.GenerateResource.Cache differ diff --git a/obj/Debug/Tweak Installer.exe b/obj/Debug/Tweak Installer.exe index 108cf0c..0670315 100644 Binary files a/obj/Debug/Tweak Installer.exe and b/obj/Debug/Tweak Installer.exe differ diff --git a/obj/Debug/Tweak Installer.pdb b/obj/Debug/Tweak Installer.pdb index afc6692..558c78b 100644 Binary files a/obj/Debug/Tweak Installer.pdb and b/obj/Debug/Tweak Installer.pdb differ