├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yaml └── workflows │ ├── build-and-publish.yml │ └── build.yml ├── .gitignore ├── AM2RLauncher ├── AM2RLauncher.Gtk │ ├── AM2RLauncher.Gtk.csproj │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ └── icon64.ico ├── AM2RLauncher.Mac │ ├── AM2RLauncher.Mac.csproj │ ├── Icon.icns │ ├── Info.plist │ ├── Program.cs │ └── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx ├── AM2RLauncher.Wpf │ ├── AM2RLauncher.Wpf.csproj │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── app.config │ ├── icon64.ico │ └── log4net.config ├── AM2RLauncher.sln ├── AM2RLauncher │ ├── AM2RLauncher.csproj │ ├── Language │ │ ├── Text.Designer.cs │ │ ├── Text.de.resx │ │ ├── Text.es.resx │ │ ├── Text.fr.resx │ │ ├── Text.it.resx │ │ ├── Text.ja.resx │ │ ├── Text.pt.resx │ │ ├── Text.resx │ │ ├── Text.ru.resx │ │ └── Text.zh-Hans.resx │ ├── LauncherUpdater.cs │ ├── MainForm │ │ ├── CustomControls │ │ │ ├── BigColorButton.cs │ │ │ ├── ColorButton.cs │ │ │ ├── CustomButton.cs │ │ │ ├── ImageButton.cs │ │ │ ├── LauncherCheckbox.cs │ │ │ ├── SmallColorButton.cs │ │ │ ├── Spacer.cs │ │ │ └── URLImageButton.cs │ │ ├── LauncherColors.cs │ │ ├── MainForm.Events.cs │ │ ├── MainForm.Methods.cs │ │ ├── MainForm.StateMachine.cs │ │ └── MainForm.UI.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── AM2RIcon.png │ │ ├── LauncherIcon.ico │ │ ├── bgCentered.png │ │ ├── discord.png │ │ ├── github light x48.png │ │ ├── matrix.png │ │ ├── reddit_share_circle_48.png │ │ └── youtube_social_circle_red 48.png │ └── XML │ │ └── LauncherConfigXML.cs ├── AM2RLauncherLib │ ├── AM2RLauncherLib.csproj │ ├── Core.cs │ ├── CrossPlatformOperations.cs │ ├── HelperMethods.cs │ ├── OS.cs │ ├── Profile.cs │ ├── Splash.cs │ └── XML │ │ ├── ProfileXML.cs │ │ └── Serializer.cs ├── buildAll.bat └── distribution │ └── linux │ ├── AM2RLauncher.appdata.xml │ ├── AM2RLauncher.desktop │ └── AM2RLauncher.png ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/.github/workflows/build-and-publish.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Gtk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Gtk/Program.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Gtk/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Gtk/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Gtk/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Gtk/Properties/Resources.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Gtk/icon64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Gtk/icon64.ico -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Mac/AM2RLauncher.Mac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Mac/AM2RLauncher.Mac.csproj -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Mac/Icon.icns -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Mac/Info.plist -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Mac/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Mac/Program.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Mac/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Mac/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Mac/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Mac/Properties/Resources.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Wpf/AM2RLauncher.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Wpf/AM2RLauncher.Wpf.csproj -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Wpf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Wpf/Program.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Wpf/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Wpf/app.config -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Wpf/icon64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Wpf/icon64.ico -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.Wpf/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.Wpf/log4net.config -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher.sln -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/AM2RLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/AM2RLauncher.csproj -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.Designer.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.de.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.es.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.fr.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.it.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.ja.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.pt.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.ru.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Language/Text.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Language/Text.zh-Hans.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/LauncherUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/LauncherUpdater.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/BigColorButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/BigColorButton.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/ColorButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/ColorButton.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/CustomButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/CustomButton.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/ImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/ImageButton.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/LauncherCheckbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/LauncherCheckbox.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/SmallColorButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/SmallColorButton.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/Spacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/Spacer.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/CustomControls/URLImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/CustomControls/URLImageButton.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/LauncherColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/LauncherColors.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/MainForm.Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Methods.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/MainForm.StateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/MainForm.StateMachine.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/MainForm/MainForm.UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/MainForm/MainForm.UI.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/AM2RIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/AM2RIcon.png -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/LauncherIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/LauncherIcon.ico -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/bgCentered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/bgCentered.png -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/discord.png -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/github light x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/github light x48.png -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/matrix.png -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/reddit_share_circle_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/reddit_share_circle_48.png -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/Resources/youtube_social_circle_red 48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/Resources/youtube_social_circle_red 48.png -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncher/XML/LauncherConfigXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncher/XML/LauncherConfigXML.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/AM2RLauncherLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/AM2RLauncherLib.csproj -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/Core.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/CrossPlatformOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/CrossPlatformOperations.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/HelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/HelperMethods.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/OS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/OS.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/Profile.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/Splash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/Splash.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/XML/ProfileXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/XML/ProfileXML.cs -------------------------------------------------------------------------------- /AM2RLauncher/AM2RLauncherLib/XML/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/AM2RLauncherLib/XML/Serializer.cs -------------------------------------------------------------------------------- /AM2RLauncher/buildAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/buildAll.bat -------------------------------------------------------------------------------- /AM2RLauncher/distribution/linux/AM2RLauncher.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/distribution/linux/AM2RLauncher.appdata.xml -------------------------------------------------------------------------------- /AM2RLauncher/distribution/linux/AM2RLauncher.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/distribution/linux/AM2RLauncher.desktop -------------------------------------------------------------------------------- /AM2RLauncher/distribution/linux/AM2RLauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/AM2RLauncher/distribution/linux/AM2RLauncher.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/AM2RLauncher/HEAD/README.md --------------------------------------------------------------------------------