Skip to content

Commit

Permalink
Rename to SuperSAD
Browse files Browse the repository at this point in the history
  • Loading branch information
krisdb2009 committed Mar 19, 2019
1 parent 493daaf commit 1dae23b
Show file tree
Hide file tree
Showing 18 changed files with 42 additions and 85 deletions.
2 changes: 1 addition & 1 deletion SuperWash.sln → SuperSAD.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.168
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuperWash", "SuperWash\SuperWash.csproj", "{01C73168-DC4A-4B7E-A7F4-CA34298BE2DF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuperSAD", "SuperSAD\SuperSAD.csproj", "{01C73168-DC4A-4B7E-A7F4-CA34298BE2DF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
32 changes: 16 additions & 16 deletions SuperWash/Main.Designer.cs → SuperSAD/Main.Designer.cs

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

12 changes: 6 additions & 6 deletions SuperWash/Main.cs → SuperSAD/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace SuperWash
namespace SuperSAD
{
public partial class Main : Form
{
Expand Down Expand Up @@ -47,9 +47,9 @@ private void EnumerateUsers()
}
}
}
private async void washBtn_Click(object sender, EventArgs e)
private async void deleteBtn_Click(object sender, EventArgs e)
{
washBtn.Enabled = false;
deleteBtn.Enabled = false;
usersList.Enabled = false;
gifShadow.BringToFront();
deletingGif.BringToFront();
Expand All @@ -62,17 +62,17 @@ private async void washBtn_Click(object sender, EventArgs e)
foreach (int index in indexList)
{
usersList.SelectedItem = profileNameList[index];
Text = "Deleting: " + profileNameList[index] + "... (SuperWash)";
Text = "Deleting: " + profileNameList[index] + "... (SuperSAD)";
await DeleteSelectIndex(index);
usersList.Items.Remove(profileNameList[index]);
}
EnumerateUsers();
Text = "SuperWash";
Text = "SuperSAD";
deletingGif.Enabled = false;
gifShadow.SendToBack();
deletingGif.SendToBack();
usersList.Enabled = true;
washBtn.Enabled = true;
deleteBtn.Enabled = true;
}
private Task DeleteSelectIndex(int index)
{
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion SuperWash/Program.cs → SuperSAD/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace SuperWash
namespace SuperSAD
{
static class Program
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SuperWash - Batch Profile Clearing Tool")]
[assembly: AssemblyDescription("SuperWash")]
[assembly: AssemblyTitle("SuperSAD - Super Account Delete")]
[assembly: AssemblyDescription("SuperSAD")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Dylan Bickerstaff")]
[assembly: AssemblyProduct("SuperWash")]
[assembly: AssemblyProduct("SuperSAD")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("Dylan Bickerstaff")]
[assembly: AssemblyCulture("")]
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="delete" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\delete.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<value>..\resources\delete.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icon.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
13 changes: 2 additions & 11 deletions SuperWash/SuperWash.csproj → SuperSAD/SuperSAD.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{01C73168-DC4A-4B7E-A7F4-CA34298BE2DF}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>SuperWash</RootNamespace>
<AssemblyName>SuperWash</AssemblyName>
<RootNamespace>SuperSAD</RootNamespace>
<AssemblyName>SuperSAD</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand Down Expand Up @@ -85,15 +85,6 @@
<DependentUpon>Warning.cs</DependentUpon>
</EmbeddedResource>
<None Include="Properties\app.manifest" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
Expand Down

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

2 changes: 1 addition & 1 deletion SuperWash/Warning.cs → SuperSAD/Warning.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace SuperWash
namespace SuperSAD
{
public partial class Warning : Form
{
Expand Down
5 changes: 4 additions & 1 deletion SuperWash/Warning.resx → SuperSAD/Warning.resx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@
<value>17, 17</value>
</metadata>
<data name="RTB.Text" xml:space="preserve">
<value>Warning! Super Wash is a program designed to batch remove Windows User Accounts via native Windows methods. This prompt is the only warning. Pressing "Wash" on the next screen will run the deletion without further consent. Please proceed with caution!</value>
<value>Warning! Super SAD is a program designed to batch remove Windows User Accounts via native Windows methods. This prompt is the only warning. Pressing "Delete" on the next screen will run the deletion without further consent. Please proceed with caution!</value>
</data>
<metadata name="credToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>
30 changes: 0 additions & 30 deletions SuperWash/Properties/Settings.Designer.cs

This file was deleted.

7 changes: 0 additions & 7 deletions SuperWash/Properties/Settings.settings

This file was deleted.

0 comments on commit 1dae23b

Please sign in to comment.