From 8ec8c6c01ae62620546ceda711258daba74419d3 Mon Sep 17 00:00:00 2001
From: miku-666 <74728189+NessieHax@users.noreply.github.com>
Date: Wed, 5 Oct 2022 20:30:45 +0200
Subject: [PATCH] Remove Job.cs and goodbye.cs
---
.../Forms/Additional-Popups/Job.Designer.cs | 103 --------
PCK-Studio/Forms/Additional-Popups/Job.cs | 38 ---
PCK-Studio/Forms/Additional-Popups/Job.resx | 135 ----------
.../Additional-Popups/goodbye.Designer.cs | 83 ------
PCK-Studio/Forms/Additional-Popups/goodbye.cs | 35 ---
.../Forms/Additional-Popups/goodbye.ja.resx | 158 ------------
.../Forms/Additional-Popups/goodbye.resx | 244 ------------------
PCK-Studio/PckStudio.csproj | 21 --
8 files changed, 817 deletions(-)
delete mode 100644 PCK-Studio/Forms/Additional-Popups/Job.Designer.cs
delete mode 100644 PCK-Studio/Forms/Additional-Popups/Job.cs
delete mode 100644 PCK-Studio/Forms/Additional-Popups/Job.resx
delete mode 100644 PCK-Studio/Forms/Additional-Popups/goodbye.Designer.cs
delete mode 100644 PCK-Studio/Forms/Additional-Popups/goodbye.cs
delete mode 100644 PCK-Studio/Forms/Additional-Popups/goodbye.ja.resx
delete mode 100644 PCK-Studio/Forms/Additional-Popups/goodbye.resx
diff --git a/PCK-Studio/Forms/Additional-Popups/Job.Designer.cs b/PCK-Studio/Forms/Additional-Popups/Job.Designer.cs
deleted file mode 100644
index 6bfb4818..00000000
--- a/PCK-Studio/Forms/Additional-Popups/Job.Designer.cs
+++ /dev/null
@@ -1,103 +0,0 @@
-
-namespace PckStudio.Forms
-{
- partial class Job
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Job));
- this.buttonClose = new System.Windows.Forms.Button();
- this.buttonDonate = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // buttonClose
- //
- this.buttonClose.BackColor = System.Drawing.Color.Transparent;
- this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.buttonClose.Font = new System.Drawing.Font("Segoe UI", 12F);
- this.buttonClose.ForeColor = System.Drawing.Color.White;
- this.buttonClose.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.buttonClose.Location = new System.Drawing.Point(308, 336);
- this.buttonClose.Name = "buttonClose";
- this.buttonClose.Size = new System.Drawing.Size(103, 38);
- this.buttonClose.TabIndex = 6;
- this.buttonClose.Text = "Close";
- this.buttonClose.UseVisualStyleBackColor = false;
- this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
- //
- // buttonDonate
- //
- this.buttonDonate.BackColor = System.Drawing.Color.DarkCyan;
- this.buttonDonate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.buttonDonate.Font = new System.Drawing.Font("Segoe UI", 12F);
- this.buttonDonate.ForeColor = System.Drawing.Color.White;
- this.buttonDonate.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.buttonDonate.Location = new System.Drawing.Point(163, 336);
- this.buttonDonate.Name = "buttonDonate";
- this.buttonDonate.Size = new System.Drawing.Size(134, 38);
- this.buttonDonate.TabIndex = 5;
- this.buttonDonate.Text = "Join Discord";
- this.buttonDonate.UseVisualStyleBackColor = false;
- this.buttonDonate.Click += new System.EventHandler(this.buttonDonate_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.label1.ForeColor = System.Drawing.Color.White;
- this.label1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label1.Location = new System.Drawing.Point(19, 31);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(428, 260);
- this.label1.TabIndex = 4;
- this.label1.Text = resources.GetString("label1.Text");
- //
- // Job
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(453, 400);
- this.Controls.Add(this.buttonClose);
- this.Controls.Add(this.buttonDonate);
- this.Controls.Add(this.label1);
- this.Name = "Job";
- this.Style = MetroFramework.MetroColorStyle.Silver;
- this.Theme = MetroFramework.MetroThemeStyle.Dark;
- this.Load += new System.EventHandler(this.Job_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Button buttonClose;
- private System.Windows.Forms.Button buttonDonate;
- private System.Windows.Forms.Label label1;
- }
-}
\ No newline at end of file
diff --git a/PCK-Studio/Forms/Additional-Popups/Job.cs b/PCK-Studio/Forms/Additional-Popups/Job.cs
deleted file mode 100644
index 77ff666f..00000000
--- a/PCK-Studio/Forms/Additional-Popups/Job.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-using System;
-using System.IO;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-using MetroFramework.Forms;
-
-namespace PckStudio.Forms
-{
- public partial class Job : MetroForm
- {
- public Job()
- {
- InitializeComponent();
- }
-
- private void buttonClose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
-
- private void Job_Load(object sender, EventArgs e)
- {
- File.Create(Program.AppData + "\\discordmark");
- }
-
- private void buttonDonate_Click(object sender, EventArgs e)
- {
- System.Diagnostics.Process.Start("https://discord.gg/Byh4hcq25w");
- this.Close();
- }
- }
-}
diff --git a/PCK-Studio/Forms/Additional-Popups/Job.resx b/PCK-Studio/Forms/Additional-Popups/Job.resx
deleted file mode 100644
index a356ef87..00000000
--- a/PCK-Studio/Forms/Additional-Popups/Job.resx
+++ /dev/null
@@ -1,135 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Hello users,
-
- The development of these tools has, and maintains to be,
-entertaining and fun, and with the advent of the WiiU
-edition growing, I hope to branch out to development for
-the WiiU and Xbox360 editions as well, and am currently
-researching ways of enabling Developer GUIs in-game.
-
- If you want to help contribute to the development
-of these tools, feel free to join the team I'm creating solely
-for this reason, simply open the discord server link below!
-
-- Felix (PhoenixARC)
-
-
\ No newline at end of file
diff --git a/PCK-Studio/Forms/Additional-Popups/goodbye.Designer.cs b/PCK-Studio/Forms/Additional-Popups/goodbye.Designer.cs
deleted file mode 100644
index 39b3bc0d..00000000
--- a/PCK-Studio/Forms/Additional-Popups/goodbye.Designer.cs
+++ /dev/null
@@ -1,83 +0,0 @@
-namespace PckStudio.Forms
-{
- partial class goodbye
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(goodbye));
- this.label1 = new System.Windows.Forms.Label();
- this.buttonDonate = new System.Windows.Forms.Button();
- this.buttonClose = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- resources.ApplyResources(this.label1, "label1");
- this.label1.ForeColor = System.Drawing.Color.White;
- this.label1.Name = "label1";
- //
- // buttonDonate
- //
- this.buttonDonate.BackColor = System.Drawing.Color.DarkCyan;
- resources.ApplyResources(this.buttonDonate, "buttonDonate");
- this.buttonDonate.ForeColor = System.Drawing.Color.White;
- this.buttonDonate.Name = "buttonDonate";
- this.buttonDonate.UseVisualStyleBackColor = false;
- this.buttonDonate.Click += new System.EventHandler(this.buttonDonate_Click);
- //
- // buttonClose
- //
- this.buttonClose.BackColor = System.Drawing.Color.Transparent;
- resources.ApplyResources(this.buttonClose, "buttonClose");
- this.buttonClose.ForeColor = System.Drawing.Color.White;
- this.buttonClose.Name = "buttonClose";
- this.buttonClose.UseVisualStyleBackColor = false;
- this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
- //
- // goodbye
- //
- resources.ApplyResources(this, "$this");
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.buttonClose);
- this.Controls.Add(this.buttonDonate);
- this.Controls.Add(this.label1);
- this.Name = "goodbye";
- this.Resizable = false;
- this.Style = MetroFramework.MetroColorStyle.Silver;
- this.Theme = MetroFramework.MetroThemeStyle.Dark;
- this.Load += new System.EventHandler(this.goodbye_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button buttonDonate;
- private System.Windows.Forms.Button buttonClose;
- }
-}
\ No newline at end of file
diff --git a/PCK-Studio/Forms/Additional-Popups/goodbye.cs b/PCK-Studio/Forms/Additional-Popups/goodbye.cs
deleted file mode 100644
index b9693f75..00000000
--- a/PCK-Studio/Forms/Additional-Popups/goodbye.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace PckStudio.Forms
-{
- public partial class goodbye : MetroFramework.Forms.MetroForm
- {
- public goodbye()
- {
- InitializeComponent();
- }
-
- private void buttonDonate_Click(object sender, EventArgs e)
- {
- System.Diagnostics.Process.Start("https://cash.app/$PhoenixARC");
- }
-
- private void buttonClose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
-
- private void goodbye_Load(object sender, EventArgs e)
- {
- System.IO.File.Create(Program.AppData + "\\goodbyemark");
- }
- }
-}
diff --git a/PCK-Studio/Forms/Additional-Popups/goodbye.ja.resx b/PCK-Studio/Forms/Additional-Popups/goodbye.ja.resx
deleted file mode 100644
index 6cd67c01..00000000
--- a/PCK-Studio/Forms/Additional-Popups/goodbye.ja.resx
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- 411, 280
-
-
- こんにちはユーザー、
-
- これらのツールの開発は、現在も維持されています。
-面白くて楽しい、そしてWiiUの登場とともに
-エディションが成長しているので、開発に分岐したいと思っています
-WiiUとXbox360のエディションもあり、現在
-ゲーム内で開発者GUIを有効にする方法を研究しています。
-
-開発に貢献したい場合
-これらのツールのうち、お気軽に寄付してください
-以下のCashappへの選択(Paypalは私が偽物だと思っています
-何らかの理由で人... マジ!?)
-
--フェリックス(PhoenixARC)
-
-
- 200, 384
-
-
- 寄付
-
-
- 314, 384
-
-
- 閉じる
-
-
- 457, 456
-
-
- 寄付することを忘れないでください
-
-
\ No newline at end of file
diff --git a/PCK-Studio/Forms/Additional-Popups/goodbye.resx b/PCK-Studio/Forms/Additional-Popups/goodbye.resx
deleted file mode 100644
index 9c1854d9..00000000
--- a/PCK-Studio/Forms/Additional-Popups/goodbye.resx
+++ /dev/null
@@ -1,244 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- True
-
-
-
- Microsoft Sans Serif, 12pt
-
-
- 23, 72
-
-
- 428, 280
-
-
- 1
-
-
- Hello users,
-
- The development of these tools has, and maintains to be,
-entertaining and fun, and with the advent of the WiiU
-edition growing, I hope to branch out to development for
-the WiiU and Xbox360 editions as well, and am currently
-researching ways of enabling Developer GUIs in-game.
-
- If you want to help contribute to the development
-of these tools, feel free to donate an amount of your
-choice to the Cashapp below(Paypal thinks I'm a fake
-person for some reason smh)
-
-- Felix (PhoenixARC)
-
-
- label1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 2
-
-
-
- Flat
-
-
- Segoe UI, 12pt
-
-
- 198, 377
-
-
- 103, 38
-
-
- 2
-
-
- Donate
-
-
- buttonDonate
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 1
-
-
- Flat
-
-
- Segoe UI, 12pt
-
-
- 312, 377
-
-
- 103, 38
-
-
- 3
-
-
- Close
-
-
- buttonClose
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 0
-
-
- True
-
-
- 6, 13
-
-
- 468, 443
-
-
- Don't forget to donate
-
-
- goodbye
-
-
- MetroFramework.Forms.MetroForm, MetroFramework, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a
-
-
\ No newline at end of file
diff --git a/PCK-Studio/PckStudio.csproj b/PCK-Studio/PckStudio.csproj
index 4a935b9d..1b992442 100644
--- a/PCK-Studio/PckStudio.csproj
+++ b/PCK-Studio/PckStudio.csproj
@@ -318,12 +318,6 @@
generateModel.cs
-
- Form
-
-
- goodbye.cs
-
Form
@@ -366,12 +360,6 @@
installWiiU.cs
-
- Form
-
-
- Job.cs
-
Form
@@ -525,12 +513,6 @@
generateModel.cs
-
- goodbye.cs
-
-
- goodbye.cs
-
SkinPreview.cs
@@ -556,9 +538,6 @@
installWiiU.cs
-
- Job.cs
-
meta.cs