diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..dbd4bc2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet.defaultSolution": "Kiseki.Launcher.sln" +} \ No newline at end of file diff --git a/Kiseki.Launcher.Linux/Kiseki.Launcher.Linux.csproj b/Kiseki.Launcher.Linux/Kiseki.Launcher.Linux.csproj deleted file mode 100644 index 04bfbce..0000000 --- a/Kiseki.Launcher.Linux/Kiseki.Launcher.Linux.csproj +++ /dev/null @@ -1,23 +0,0 @@ - - - - Exe - net6.0 - enable - enable - - - - - - %(Filename)%(Extension) - - - - - - - - - - diff --git a/Kiseki.Launcher.Linux/MainWindow.cs b/Kiseki.Launcher.Linux/MainWindow.cs deleted file mode 100644 index 8049a0f..0000000 --- a/Kiseki.Launcher.Linux/MainWindow.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Gtk; -using Kiseki.Launcher.Core; - -using UI = Gtk.Builder.ObjectAttribute; - -namespace Kiseki.Launcher.Linux -{ - public class MainWindow : Window - { - [UI] private readonly Image Logo = null; - [UI] private readonly ProgressBar ProgressBar = null; - [UI] private readonly Label PageHeading = null; - [UI] private readonly Button CancelButton = null; - - private readonly Controller Controller; - - public MainWindow() : this(new Builder("MainWindow.glade")) { } - - private MainWindow(Builder builder) : base(builder.GetRawOwnedObject("MainWindow")) - { - builder.Autoconnect(this); - - DeleteEvent += Window_DeleteEvent; - CancelButton.Clicked += Window_DeleteEvent; - } - - private void Window_DeleteEvent(object? sender, EventArgs? e) - { - Application.Quit(); - } - } -} diff --git a/Kiseki.Launcher.Linux/MainWindow.glade b/Kiseki.Launcher.Linux/MainWindow.glade deleted file mode 100644 index a3a1b12..0000000 --- a/Kiseki.Launcher.Linux/MainWindow.glade +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - False - Kiseki - False - True - True - - - - True - False - - - Cancel - True - True - True - center - center - - - 2 - 2 - - - - - True - False - gtk-dialog-question - - - 0 - 0 - - - - - True - False - start - end - 32 - 5 - label - - - 1 - 0 - - - - - True - False - center - start - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - diff --git a/Kiseki.Launcher.Linux/Program.cs b/Kiseki.Launcher.Linux/Program.cs deleted file mode 100644 index 2b03079..0000000 --- a/Kiseki.Launcher.Linux/Program.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Gtk; - -namespace Kiseki.Launcher.Linux -{ - public class Program - { - [STAThread] - public static void Main(string[] args) - { - Application.Init(); - - var app = new Application("org.Kiseki.Launcher", GLib.ApplicationFlags.None); - app.Register(GLib.Cancellable.Current); - - var window = new MainWindow(); - app.AddWindow(window); - - window.Show(); - Application.Run(); - } - } -} \ No newline at end of file diff --git a/Kiseki.Launcher.Linux/Properties/PublishProfiles/Build.pubxml b/Kiseki.Launcher.Linux/Properties/PublishProfiles/Build.pubxml deleted file mode 100644 index b3a87bd..0000000 --- a/Kiseki.Launcher.Linux/Properties/PublishProfiles/Build.pubxml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Release - Any CPU - ..\build\linux-x64\ - FileSystem - <_TargetId>Folder - net6.0 - linux-x64 - false - true - false - - \ No newline at end of file diff --git a/Kiseki.Launcher.sln b/Kiseki.Launcher.sln index fd670f4..788731d 100644 --- a/Kiseki.Launcher.sln +++ b/Kiseki.Launcher.sln @@ -5,8 +5,6 @@ VisualStudioVersion = 17.6.33712.159 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kiseki.Launcher.Windows", "Kiseki.Launcher.Windows\Kiseki.Launcher.Windows.csproj", "{38AAA6A8-C482-4F17-816F-E0A42B065033}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kiseki.Launcher.Linux", "Kiseki.Launcher.Linux\Kiseki.Launcher.Linux.csproj", "{40AB861A-C06C-4279-86F6-EC60BEC2C690}" -EndProject Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Kiseki.Launcher.Core", "Kiseki.Launcher.Core\Kiseki.Launcher.Core.shproj", "{9DA0F813-6151-496B-B907-C94A7B6A3889}" EndProject Global diff --git a/README.md b/README.md index 5537cc0..631ede3 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ Launches Kiseki game clients from the website # License -Licensed under the GNU Affero General Public License v3.0. A copy of it [has been included](https://github.com/kiseki-lol/launcher/blob/trunk/LICENSE). \ No newline at end of file +Kiseki.Launcher is licensed under the Licensed under the [GNU Affero General Public License v3](https://www.gnu.org/licenses/agpl-3.0.txt). A copy of it has been included with Kiseki.Launcher. \ No newline at end of file