diff --git a/Stella.Configuration/3-1. Configuration .NET 8.csproj b/Stella.Configuration/3-1. Configuration .NET 8.csproj index 2525a81e..ffe3a89f 100644 --- a/Stella.Configuration/3-1. Configuration .NET 8.csproj +++ b/Stella.Configuration/3-1. Configuration .NET 8.csproj @@ -12,25 +12,25 @@ ..\Build\ en Sefinek - Configuration window of Genshin Stella Mod. + Configuration window for Genshin Stella Mod. Copyright 2024 © by Sefinek. All Rights Reserved. Sefinek Inc. 1.0.0.0 Configuration window of Genshin Stella Mod. Stella Configuration Window https://genshin.sefinek.net - cat.ico git - ConfigurationWindow + Configuration window of Genshin Stella Mod https://github.com/sefinek24/Genshin-Impact-ReShade LICENSE - ConfigurationWindow + Configuration Window ConfigurationNC.Program - Resources\cat-52x52.ico + Resources\cat-black_52x52.ico + README.md - + @@ -38,6 +38,10 @@ True \ + + True + \ + @@ -59,6 +63,10 @@ + + True + \ + True \ diff --git a/Stella.Configuration/Program.cs b/Stella.Configuration/Program.cs index bdc3c19c..657643d4 100644 --- a/Stella.Configuration/Program.cs +++ b/Stella.Configuration/Program.cs @@ -16,7 +16,7 @@ private static void Main() try { - Application.Run(new Window { Icon = Resources.catIcon }); + Application.Run(new Window { Icon = Resources.cat_white_52x52 }); } catch (Exception ex) { diff --git a/Stella.Configuration/Properties/Resources.Designer.cs b/Stella.Configuration/Properties/Resources.Designer.cs index a8df7132..14a890aa 100644 --- a/Stella.Configuration/Properties/Resources.Designer.cs +++ b/Stella.Configuration/Properties/Resources.Designer.cs @@ -73,9 +73,9 @@ internal static System.Drawing.Bitmap bg { /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// - internal static System.Drawing.Icon catIcon { + internal static System.Drawing.Icon cat_white_52x52 { get { - object obj = ResourceManager.GetObject("catIcon", resourceCulture); + object obj = ResourceManager.GetObject("cat_white_52x52", resourceCulture); return ((System.Drawing.Icon)(obj)); } } diff --git a/Stella.Configuration/Properties/Resources.resx b/Stella.Configuration/Properties/Resources.resx index 1e39e2f2..5eacdab6 100644 --- a/Stella.Configuration/Properties/Resources.resx +++ b/Stella.Configuration/Properties/Resources.resx @@ -121,8 +121,8 @@ ..\Resources\bg.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\cat-52x52.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\cat-white_52x52.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Required file '{0}' was not found. diff --git a/Stella.Configuration/Resources/cat-black_52x52.ico b/Stella.Configuration/Resources/cat-black_52x52.ico new file mode 100644 index 00000000..ab67b1c4 Binary files /dev/null and b/Stella.Configuration/Resources/cat-black_52x52.ico differ diff --git a/Stella.Configuration/Resources/cat-original-black.png b/Stella.Configuration/Resources/cat-original-black.png new file mode 100644 index 00000000..7730afd2 Binary files /dev/null and b/Stella.Configuration/Resources/cat-original-black.png differ diff --git a/Stella.Configuration/Resources/cat-original.png b/Stella.Configuration/Resources/cat-original-white.png similarity index 100% rename from Stella.Configuration/Resources/cat-original.png rename to Stella.Configuration/Resources/cat-original-white.png diff --git a/Stella.Configuration/Resources/cat-old.ico b/Stella.Configuration/Resources/cat-white-old.ico similarity index 100% rename from Stella.Configuration/Resources/cat-old.ico rename to Stella.Configuration/Resources/cat-white-old.ico diff --git a/Stella.Configuration/Resources/cat-52x52.ico b/Stella.Configuration/Resources/cat-white_52x52.ico similarity index 100% rename from Stella.Configuration/Resources/cat-52x52.ico rename to Stella.Configuration/Resources/cat-white_52x52.ico diff --git a/Stella.Info48793142/6. Information 48793142.csproj b/Stella.Info48793142/6. Information 48793142.csproj index 719d99d1..d6ef405a 100644 --- a/Stella.Info48793142/6. Information 48793142.csproj +++ b/Stella.Info48793142/6. Information 48793142.csproj @@ -30,7 +30,9 @@ 1.0.1.0 Stella Mod Information 48793142 Sefinek - InformationWindow48793142 + Information Window 48793142 + LICENSE + README.md @@ -49,6 +51,17 @@ + + + True + \ + + + True + \ + + + diff --git a/Stella.Prepare/Forms/GamePath.Designer.cs b/Stella.Prepare/Forms/GamePath.Designer.cs index 17ee64b0..3b796ba3 100644 --- a/Stella.Prepare/Forms/GamePath.Designer.cs +++ b/Stella.Prepare/Forms/GamePath.Designer.cs @@ -1,6 +1,6 @@ namespace PrepareStella.Forms { - partial class GamePath + sealed partial class GamePath { /// /// Required designer variable. @@ -52,7 +52,7 @@ private void InitializeComponent() // // button3 // - this.button3.Location = new System.Drawing.Point(473, 369); + this.button3.Location = new System.Drawing.Point(190, 354); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(129, 32); this.button3.TabIndex = 13; @@ -62,7 +62,7 @@ private void InitializeComponent() // // button2 // - this.button2.Location = new System.Drawing.Point(195, 369); + this.button2.Location = new System.Drawing.Point(475, 354); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(129, 32); this.button2.TabIndex = 12; diff --git a/Stella.Prepare/Forms/GamePath.cs b/Stella.Prepare/Forms/GamePath.cs index ba96763b..077c14af 100644 --- a/Stella.Prepare/Forms/GamePath.cs +++ b/Stella.Prepare/Forms/GamePath.cs @@ -7,13 +7,15 @@ namespace PrepareStella.Forms { - public partial class GamePath : Form + public sealed partial class GamePath : Form { private readonly string _inputString; public GamePath(string inputString) { InitializeComponent(); + + DoubleBuffered = true; _inputString += inputString; } diff --git a/Stella.Prepare/Forms/Help.Designer.cs b/Stella.Prepare/Forms/Help.Designer.cs index 76c09cc3..c8a9b6b1 100644 --- a/Stella.Prepare/Forms/Help.Designer.cs +++ b/Stella.Prepare/Forms/Help.Designer.cs @@ -1,6 +1,6 @@ namespace PrepareStella.Forms { - partial class Help + sealed partial class Help { /// /// Required designer variable. diff --git a/Stella.Prepare/Forms/Help.cs b/Stella.Prepare/Forms/Help.cs index 4fa97393..14db6caf 100644 --- a/Stella.Prepare/Forms/Help.cs +++ b/Stella.Prepare/Forms/Help.cs @@ -2,11 +2,13 @@ namespace PrepareStella.Forms { - public partial class Help : Form + public sealed partial class Help : Form { public Help() { InitializeComponent(); + + DoubleBuffered = true; } } } diff --git a/Stella.Prepare/Forms/Resources.Designer.cs b/Stella.Prepare/Forms/Resources.Designer.cs index 11f008ac..4d7e2d1e 100644 --- a/Stella.Prepare/Forms/Resources.Designer.cs +++ b/Stella.Prepare/Forms/Resources.Designer.cs @@ -1,6 +1,6 @@ namespace PrepareStella.Forms { - partial class Resources + sealed partial class Resources { /// /// Required designer variable. diff --git a/Stella.Prepare/Forms/Resources.cs b/Stella.Prepare/Forms/Resources.cs index 14b82e35..b3cde78c 100644 --- a/Stella.Prepare/Forms/Resources.cs +++ b/Stella.Prepare/Forms/Resources.cs @@ -5,11 +5,13 @@ namespace PrepareStella.Forms { - public partial class Resources : Form + public sealed partial class Resources : Form { public Resources() { InitializeComponent(); + + DoubleBuffered = true; } private void SelectShadersPath_Load(object sender, EventArgs e) diff --git a/Stella.SefinAntiCheat/Program.cs b/Stella.SefinAntiCheat/Program.cs index 383bcfde..97b57a12 100644 --- a/Stella.SefinAntiCheat/Program.cs +++ b/Stella.SefinAntiCheat/Program.cs @@ -17,10 +17,11 @@ internal static class Program [STAThread] private static void Main() { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + try { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainWindow { Icon = Resources.icon }); } catch (Exception ex) diff --git a/Stella.SefinAntiCheat/Properties/AssemblyInfo.cs b/Stella.SefinAntiCheat/Properties/AssemblyInfo.cs index ed45150c..eef3f01a 100644 --- a/Stella.SefinAntiCheat/Properties/AssemblyInfo.cs +++ b/Stella.SefinAntiCheat/Properties/AssemblyInfo.cs @@ -1,3 +1,4 @@ +using System.Resources; using System.Reflection; using System.Runtime.InteropServices; @@ -5,12 +6,12 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Sefin Anti Cheat")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("In fact, this application does nothing. Perhaps I'll attend to it someday.")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Sefinek Inc.")] [assembly: AssemblyProduct("Sefin Anti Cheat")] [assembly: AssemblyCopyright("Copyright 2024 © by Sefinek. All Rights Reserved.")] -[assembly: AssemblyTrademark("")] +[assembly: AssemblyTrademark("© Sefinek Inc.")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible @@ -33,3 +34,4 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: NeutralResourcesLanguage("en")]