diff --git a/UnionPatcher.Gui.Linux/Program.cs b/UnionPatcher.Gui.Linux/Program.cs
index b989300..a3ca1aa 100644
--- a/UnionPatcher.Gui.Linux/Program.cs
+++ b/UnionPatcher.Gui.Linux/Program.cs
@@ -1,4 +1,4 @@
-namespace UnionPatcher.Gui.Linux {
+namespace LBPUnion.UnionPatcher.Gui.Linux {
public static class Program {
public static void Main() {
Gui.Show();
diff --git a/UnionPatcher.Gui.Linux/UnionPatcher.Gui.Linux.csproj b/UnionPatcher.Gui.Linux/UnionPatcher.Gui.Linux.csproj
index 79b1a13..d27be80 100644
--- a/UnionPatcher.Gui.Linux/UnionPatcher.Gui.Linux.csproj
+++ b/UnionPatcher.Gui.Linux/UnionPatcher.Gui.Linux.csproj
@@ -3,6 +3,8 @@
Exe
net5.0
+ LBPUnion.UnionPatcher.Gui.Linux
+ LBPUnion.UnionPatcher.Gui.Linux
diff --git a/UnionPatcher.Gui.MacOS/Program.cs b/UnionPatcher.Gui.MacOS/Program.cs
index fcb78c2..e20eb37 100644
--- a/UnionPatcher.Gui.MacOS/Program.cs
+++ b/UnionPatcher.Gui.MacOS/Program.cs
@@ -1,4 +1,4 @@
-namespace UnionPatcher.Gui.MacOS {
+namespace LBPUnion.UnionPatcher.Gui.MacOS {
public static class Program {
public static void Main() {
Gui.Show();
diff --git a/UnionPatcher.Gui.MacOS/UnionPatcher.Gui.MacOS.csproj b/UnionPatcher.Gui.MacOS/UnionPatcher.Gui.MacOS.csproj
index 2f6c40d..b87c4ea 100644
--- a/UnionPatcher.Gui.MacOS/UnionPatcher.Gui.MacOS.csproj
+++ b/UnionPatcher.Gui.MacOS/UnionPatcher.Gui.MacOS.csproj
@@ -4,6 +4,8 @@
Exe
net5.0
osx-x64
+ LBPUnion.UnionPatcher.Gui.MacOS
+ LBPUnion.UnionPatcher.Gui.MacOS
diff --git a/UnionPatcher.Gui.Windows/Program.cs b/UnionPatcher.Gui.Windows/Program.cs
index 44bf0f1..3cd096c 100644
--- a/UnionPatcher.Gui.Windows/Program.cs
+++ b/UnionPatcher.Gui.Windows/Program.cs
@@ -1,6 +1,6 @@
using System;
-namespace UnionPatcher.Gui.Windows {
+namespace LBPUnion.UnionPatcher.Gui.Windows {
public static class Program {
[STAThread]
public static void Main() {
diff --git a/UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj b/UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj
index 73c9ff2..7f28d17 100644
--- a/UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj
+++ b/UnionPatcher.Gui.Windows/UnionPatcher.Gui.Windows.csproj
@@ -3,7 +3,8 @@
WinExe
net5.0-windows
- UnionPatcher.Gui.Windows
+ LBPUnion.UnionPatcher.Gui.Windows
+ LBPUnion.UnionPatcher.Gui.Windows
diff --git a/UnionPatcher.Gui/EasterEgg.cs b/UnionPatcher.Gui/EasterEgg.cs
index 04d487c..ce9a960 100644
--- a/UnionPatcher.Gui/EasterEgg.cs
+++ b/UnionPatcher.Gui/EasterEgg.cs
@@ -1,6 +1,6 @@
using System;
-namespace UnionPatcher.Gui {
+namespace LBPUnion.UnionPatcher.Gui {
public static class EasterEgg {
private static bool? restitch = null;
diff --git a/UnionPatcher.Gui/Gui.cs b/UnionPatcher.Gui/Gui.cs
index 4535294..a5b1bba 100644
--- a/UnionPatcher.Gui/Gui.cs
+++ b/UnionPatcher.Gui/Gui.cs
@@ -1,6 +1,6 @@
using Eto.Forms;
-namespace UnionPatcher.Gui {
+namespace LBPUnion.UnionPatcher.Gui {
public static class Gui {
public static void Show() {
new Application().Run(new MainForm());
diff --git a/UnionPatcher.Gui/MainForm.cs b/UnionPatcher.Gui/MainForm.cs
index 9746058..9276123 100644
--- a/UnionPatcher.Gui/MainForm.cs
+++ b/UnionPatcher.Gui/MainForm.cs
@@ -4,7 +4,7 @@ using Eto;
using Eto.Drawing;
using Eto.Forms;
-namespace UnionPatcher.Gui {
+namespace LBPUnion.UnionPatcher.Gui {
public class MainForm : Form {
private readonly FilePicker filePicker;
private readonly TextBox serverUrl;
@@ -76,7 +76,7 @@ namespace UnionPatcher.Gui {
return;
}
- CreateOkDialog("Success!", "The Server URL has been patched to " + this.serverUrl.Text).ShowModal();
+ this.CreateOkDialog("Success!", "The Server URL has been patched to " + this.serverUrl.Text).ShowModal();
};
return control;
@@ -108,19 +108,19 @@ namespace UnionPatcher.Gui {
Rows = {
new TableRow(
new TableCell(new Label { Text = "EBOOT.elf: ", VerticalAlignment = VerticalAlignment.Center }),
- new TableCell(filePicker = new FilePicker { TabIndex = 0 })
+ new TableCell(this.filePicker = new FilePicker { TabIndex = 0 })
),
new TableRow(
new TableCell(new Label { Text = "Server URL: ", VerticalAlignment = VerticalAlignment.Center }),
- new TableCell(serverUrl = new TextBox { TabIndex = 1 })
+ new TableCell(this.serverUrl = new TextBox { TabIndex = 1 })
),
new TableRow(
new TableCell(new Label { Text = "Output filename: ", VerticalAlignment = VerticalAlignment.Center }),
new TableCell(this.outputFileName = new FilePicker { TabIndex = 2, FileAction = FileAction.SaveFile })
),
new TableRow(
- new TableCell(CreateHelpButton(4)),
- new TableCell(CreatePatchButton(3))
+ new TableCell(this.CreateHelpButton(4)),
+ new TableCell(this.CreatePatchButton(3))
),
},
};
diff --git a/UnionPatcher.Gui/UnionPatcher.Gui.csproj b/UnionPatcher.Gui/UnionPatcher.Gui.csproj
index c35739d..56bbefc 100644
--- a/UnionPatcher.Gui/UnionPatcher.Gui.csproj
+++ b/UnionPatcher.Gui/UnionPatcher.Gui.csproj
@@ -2,7 +2,8 @@
net5.0
- UnionPatcher.Gui
+ LBPUnion.UnionPatcher.Gui
+ LBPUnion.UnionPatcher.Gui
diff --git a/UnionPatcher/Patcher.cs b/UnionPatcher/Patcher.cs
index deaffbd..ae584c2 100644
--- a/UnionPatcher/Patcher.cs
+++ b/UnionPatcher/Patcher.cs
@@ -2,7 +2,7 @@ using System;
using System.IO;
using System.Text;
-namespace UnionPatcher {
+namespace LBPUnion.UnionPatcher {
public static class Patcher {
private static readonly string[] ToBePatched = {
"https://littlebigplanetps3.online.scee.com:10061/LITTLEBIGPLANETPS3_XML",
diff --git a/UnionPatcher/Program.cs b/UnionPatcher/Program.cs
index 0204dac..371ff24 100644
--- a/UnionPatcher/Program.cs
+++ b/UnionPatcher/Program.cs
@@ -2,7 +2,7 @@
using System.Diagnostics;
using System.IO;
-namespace UnionPatcher {
+namespace LBPUnion.UnionPatcher {
public static class Program {
public const string Version = "1.0";
diff --git a/UnionPatcher/UnionPatcher.csproj b/UnionPatcher/UnionPatcher.csproj
index 9590466..5106a2b 100644
--- a/UnionPatcher/UnionPatcher.csproj
+++ b/UnionPatcher/UnionPatcher.csproj
@@ -3,6 +3,8 @@
Exe
net5.0
+ LBPUnion.UnionPatcher
+ LBPUnion.UnionPatcher