├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ └── sample │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── spec.yml ├── Install-WindowsSdkISO.ps1 ├── azp │ └── azp.yml ├── dependabot.yml ├── steps │ └── install_dependencies │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .idea └── .idea.Emerald │ └── .idea │ ├── .gitignore │ ├── AndroidProjectSystem.xml │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vsconfig ├── CODEOWNERS ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Emerald.App ├── Emerald.App.Package │ ├── Images │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Package.WinUI.wapproj │ └── Package.appxmanifest └── Emerald.App │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── Blocks │ │ ├── CraftingTable.png │ │ ├── Dirt.png │ │ ├── Furnace.png │ │ ├── Furnace_Burn.png │ │ └── Redstone.png │ ├── NavigationViewIcons │ │ ├── home.png │ │ ├── logs.png │ │ ├── news.png │ │ ├── settings.png │ │ ├── store.png │ │ └── tasks.png │ ├── icon.ico │ └── icon.png │ ├── Converters │ ├── Converters.cs │ └── DataTemplateSelectors.cs │ ├── DirectResources.cs │ ├── Emerald.App.csproj │ ├── Enums │ ├── AccountType.cs │ ├── ExpanderStyles.cs │ └── MessageBox.cs │ ├── Helpers │ ├── CompositionControl.cs │ ├── Extensions.cs │ ├── MCVersionsCreator.cs │ ├── MSLogin.cs │ ├── MarkupExtensions │ │ ├── ConditionString.cs │ │ ├── FontIcon.cs │ │ └── LocalizeString.cs │ ├── MessageBox.cs │ ├── Settings │ │ ├── Enums │ │ │ └── MicaTintColor.cs │ │ ├── JSON.cs │ │ └── SettingsSystem.cs │ ├── SingleInstanceDesktopApp.cs │ ├── Updater │ │ ├── GithubJSON.cs │ │ └── Updater.cs │ ├── WindowManager.cs │ └── WindowsHello.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ ├── Account.cs │ ├── ArgTemplate.cs │ ├── InfobarBrushSet.cs │ ├── MinecraftVersions.cs │ ├── Model.cs │ ├── NavViewHeader.cs │ ├── SquareNavigationViewItem.cs │ ├── StoreItem.cs │ └── Task.cs │ ├── ResourceDictionaries │ ├── Expanders.xaml │ └── RightAlignedToggleSwitch.xaml │ ├── Restart.bat │ ├── Strings │ ├── af-ZA │ │ └── Resources.resw │ ├── ar-SA │ │ └── Resources.resw │ ├── ca-ES │ │ └── Resources.resw │ ├── cs-CZ │ │ └── Resources.resw │ ├── da-DK │ │ └── Resources.resw │ ├── de-DE │ │ └── Resources.resw │ ├── el-GR │ │ └── Resources.resw │ ├── en-US │ │ └── Resources.resw │ ├── es-ES │ │ └── Resources.resw │ ├── fi-FI │ │ └── Resources.resw │ ├── fr-FR │ │ └── Resources.resw │ ├── he-IL │ │ └── Resources.resw │ ├── hu-HU │ │ └── Resources.resw │ ├── it-IT │ │ └── Resources.resw │ ├── ja-JP │ │ └── Resources.resw │ ├── ko-KR │ │ └── Resources.resw │ ├── nl-NL │ │ └── Resources.resw │ ├── no-NO │ │ └── Resources.resw │ ├── pl-PL │ │ └── Resources.resw │ ├── pt-BR │ │ └── Resources.resw │ ├── pt-PT │ │ └── Resources.resw │ ├── ro-RO │ │ └── Resources.resw │ ├── ru-RU │ │ └── Resources.resw │ ├── si-LK │ │ └── Resources.resw │ ├── si │ │ └── Resources.resw │ ├── sr-SP │ │ └── Resources.resw │ ├── sv-SE │ │ └── Resources.resw │ ├── tr-TR │ │ └── Resources.resw │ ├── uk-UA │ │ └── Resources.resw │ ├── vi-VN │ │ └── Resources.resw │ ├── zh-CN │ │ └── Resources.resw │ └── zh-TW │ │ └── Resources.resw │ ├── UserControls │ ├── AdaptiveItemPane.xaml │ ├── AdaptiveItemPane.xaml.cs │ ├── ArgumentsListView.xaml │ ├── ArgumentsListView.xaml.cs │ ├── Expander.xaml │ ├── Expander.xaml.cs │ ├── ExpanderItem.xaml │ ├── ExpanderItem.xaml.cs │ ├── NavViewItem.xaml │ ├── NavViewItem.xaml.cs │ ├── TaskView.xaml │ ├── TaskView.xaml.cs │ ├── TaskViewGrid.xaml │ ├── TaskViewGrid.xaml.cs │ ├── TitleBar.xaml │ └── TitleBar.xaml.cs │ ├── ViewModels │ ├── ExpanderVM.cs │ └── ViewModel.cs │ ├── Views │ ├── Home │ │ ├── AccountsPage.xaml │ │ ├── AccountsPage.xaml.cs │ │ ├── HomePage.xaml │ │ ├── HomePage.xaml.cs │ │ ├── NewsPage.xaml │ │ └── NewsPage.xaml.cs │ ├── LogsPage.xaml │ ├── LogsPage.xaml.cs │ ├── Settings │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── AccountPage.xaml │ │ ├── AccountPage.xaml.cs │ │ ├── AppearancePage.xaml │ │ ├── AppearancePage.xaml.cs │ │ ├── GeneralPage.xaml │ │ ├── GeneralPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ └── SettingsPage.xaml.cs │ └── Store │ │ ├── InstallerPage.xaml │ │ ├── InstallerPage.xaml.cs │ │ ├── StorePage.xaml │ │ └── StorePage.xaml.cs │ └── app.manifest ├── Emerald.Core ├── Args │ └── Args.cs ├── Clients │ └── GlacierClient.cs ├── Core.cs ├── Emerald.Core.csproj ├── Extensions.cs ├── Launcher.cs ├── News │ ├── JSON │ │ ├── Dimensions.cs │ │ ├── Entry.cs │ │ ├── Highlight.cs │ │ ├── IconImage.cs │ │ ├── Image.cs │ │ ├── NewsPageImage.cs │ │ ├── PlayPageImage.cs │ │ └── Root.cs │ └── NewsHelper.cs ├── Optifine.cs ├── Store │ └── Labrinth.cs ├── Strings.cs ├── Tasks │ ├── TaskQueue.cs │ └── TasksHelper.cs └── Util.cs ├── Emerald.CoreX ├── Core.cs ├── Emerald.CoreX.csproj ├── Enums │ └── MCVersionType.cs ├── Game.cs ├── Helpers │ ├── BaseSettingsService.cs │ ├── Enums │ │ └── MessageBox.cs │ ├── Extensions.cs │ ├── FileDownloader.cs │ ├── HandledException.cs │ └── SettingsKeys.cs ├── Installers │ ├── Fabric.cs │ ├── Forge.cs │ ├── IModLoaderInstaller.cs │ ├── LiteLoader.cs │ ├── LoaderInfo.cs │ ├── ModLoaderRouter.cs │ ├── Optifine.cs │ └── Quilt.cs ├── Models │ ├── EAccount.cs │ ├── GameSettings.cs │ └── MCVersion.cs ├── Notifications │ ├── INotificationService.cs │ ├── LauncherNotification.cs │ ├── NotificationService.cs │ └── NotificationType.cs ├── Services │ ├── AccountService.cs │ ├── IAccountService.cs │ └── IBaseSettingsService.cs ├── Store │ └── Modrinth │ │ ├── IModrinthStore.cs │ │ ├── JSON.cs │ │ ├── ModrinthStore.cs │ │ ├── SearchSortOptions.cs │ │ └── Stores.cs └── Versions │ └── Version.cs ├── Emerald.sln ├── Emerald ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Icons │ │ ├── icon.svg │ │ └── icon_foreground.svg │ ├── NavigationViewIcons │ │ ├── home.png │ │ ├── logs.png │ │ ├── news.png │ │ ├── settings.png │ │ ├── store.png │ │ └── tasks.png │ ├── SharedAssets.md │ ├── Splash │ │ └── splash_screen.svg │ ├── icon.png │ └── icon_new.png ├── DirectResources.cs ├── Emerald.csproj ├── GlobalUsings.cs ├── Helpers │ ├── Converters │ │ ├── BoolToVisibility.cs │ │ ├── CountToVisibilityConverter.cs │ │ ├── NotificationTypeToBrushConverter.cs.cs │ │ └── StepToVisibilityConverter.cs │ ├── Enums │ │ └── MessageBox.cs │ ├── Extensions.cs │ ├── MarkupExtensions │ │ ├── ConditionString.cs │ │ ├── FontIcon.cs │ │ └── LocalizeString.cs │ ├── MessageBox.cs │ ├── Settings │ │ ├── Enums │ │ │ └── MicaTintColor.cs │ │ └── JSON.cs │ └── WindowManager.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Models │ ├── ArgTemplate.cs │ ├── Model.cs │ ├── NavViewHeader.cs │ └── SquareNavigationViewItem.cs ├── Package.appxmanifest ├── Platforms │ ├── Desktop │ │ └── Program.cs │ ├── MacCatalyst │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.maccatalyst.cs │ │ └── Media.xcassets │ │ │ └── LaunchImages.launchimage │ │ │ └── Contents.json │ └── Windows │ │ └── Properties │ │ └── PublishProfiles │ │ ├── win-arm64.pubxml │ │ ├── win-x64.pubxml │ │ └── win-x86.pubxml ├── Properties │ ├── PublishProfiles │ │ ├── win-arm64.pubxml │ │ ├── win-x64.pubxml │ │ └── win-x86.pubxml │ └── launchSettings.json ├── ReadMe.md ├── Services │ ├── ServiceProviderLocator.cs │ └── SettingsService.cs ├── Strings │ └── en │ │ └── Resources.resw ├── UserControls │ ├── AddGameWizardControl.xaml │ ├── AddGameWizardControl.xaml.cs │ ├── ArgumentsListView.xaml │ ├── ArgumentsListView.xaml.cs │ ├── MinecraftSettingsUC.xaml │ ├── MinecraftSettingsUC.xaml.cs │ ├── NotificationListControl.xaml │ ├── NotificationListControl.xaml.cs │ ├── Titlebar.xaml │ └── Titlebar.xaml.cs ├── ViewModels │ ├── GamesPageViewModel.cs │ ├── NotificationListViewModel.cs │ └── NotificationViewModel.cs ├── Views │ ├── GamesPage.xaml │ ├── GamesPage.xaml.cs │ ├── Settings │ │ ├── AppearancePage.xaml │ │ ├── AppearancePage.xaml.cs │ │ ├── GeneralPage.xaml │ │ ├── GeneralPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ └── SettingsPage.xaml.cs │ └── Store │ │ ├── ModrinthStorePage.xaml │ │ └── ModrinthStorePage.xaml.cs └── app.manifest ├── LICENSE.md ├── README.md ├── crowdin.yml └── global.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sample/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/ISSUE_TEMPLATE/sample/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sample/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sample/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/ISSUE_TEMPLATE/sample/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sample/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/ISSUE_TEMPLATE/sample/spec.yml -------------------------------------------------------------------------------- /.github/Install-WindowsSdkISO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/Install-WindowsSdkISO.ps1 -------------------------------------------------------------------------------- /.github/azp/azp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/azp/azp.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/steps/install_dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/steps/install_dependencies/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.idea.Emerald/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.idea/.idea.Emerald/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Emerald/.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.idea/.idea.Emerald/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/.idea.Emerald/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.idea/.idea.Emerald/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.Emerald/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.idea/.idea.Emerald/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.Emerald/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.idea/.idea.Emerald/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/.vsconfig -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Package.WinUI.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Package.WinUI.wapproj -------------------------------------------------------------------------------- /Emerald.App/Emerald.App.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App.Package/Package.appxmanifest -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/App.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/App.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/Blocks/CraftingTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/Blocks/CraftingTable.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/Blocks/Dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/Blocks/Dirt.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/Blocks/Furnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/Blocks/Furnace.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/Blocks/Furnace_Burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/Blocks/Furnace_Burn.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/Blocks/Redstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/Blocks/Redstone.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/NavigationViewIcons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/NavigationViewIcons/home.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/NavigationViewIcons/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/NavigationViewIcons/logs.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/NavigationViewIcons/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/NavigationViewIcons/news.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/NavigationViewIcons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/NavigationViewIcons/settings.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/NavigationViewIcons/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/NavigationViewIcons/store.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/NavigationViewIcons/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/NavigationViewIcons/tasks.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/icon.ico -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Assets/icon.png -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Converters/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Converters/Converters.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Converters/DataTemplateSelectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Converters/DataTemplateSelectors.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/DirectResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/DirectResources.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Emerald.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Emerald.App.csproj -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Enums/AccountType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Enums/AccountType.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Enums/ExpanderStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Enums/ExpanderStyles.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Enums/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Enums/MessageBox.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/CompositionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/CompositionControl.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/Extensions.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/MCVersionsCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/MCVersionsCreator.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/MSLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/MSLogin.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/MarkupExtensions/ConditionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/MarkupExtensions/ConditionString.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/MarkupExtensions/FontIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/MarkupExtensions/FontIcon.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/MarkupExtensions/LocalizeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/MarkupExtensions/LocalizeString.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/MessageBox.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/Settings/Enums/MicaTintColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/Settings/Enums/MicaTintColor.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/Settings/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/Settings/JSON.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/Settings/SettingsSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/Settings/SettingsSystem.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/SingleInstanceDesktopApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/SingleInstanceDesktopApp.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/Updater/GithubJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/Updater/GithubJSON.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/Updater/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/Updater/Updater.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/WindowManager.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Helpers/WindowsHello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Helpers/WindowsHello.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/MainWindow.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/Account.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/ArgTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/ArgTemplate.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/InfobarBrushSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/InfobarBrushSet.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/MinecraftVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/MinecraftVersions.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/Model.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/NavViewHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/NavViewHeader.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/SquareNavigationViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/SquareNavigationViewItem.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/StoreItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/StoreItem.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Models/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Models/Task.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/ResourceDictionaries/Expanders.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/ResourceDictionaries/Expanders.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/ResourceDictionaries/RightAlignedToggleSwitch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/ResourceDictionaries/RightAlignedToggleSwitch.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Restart.bat -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/af-ZA/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/af-ZA/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/ar-SA/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/ar-SA/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/ca-ES/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/ca-ES/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/cs-CZ/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/cs-CZ/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/da-DK/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/da-DK/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/de-DE/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/de-DE/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/el-GR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/el-GR/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/es-ES/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/es-ES/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/fi-FI/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/fi-FI/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/fr-FR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/fr-FR/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/he-IL/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/he-IL/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/hu-HU/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/hu-HU/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/it-IT/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/it-IT/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/ja-JP/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/ja-JP/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/ko-KR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/ko-KR/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/nl-NL/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/nl-NL/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/no-NO/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/no-NO/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/pl-PL/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/pl-PL/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/pt-BR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/pt-BR/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/pt-PT/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/pt-PT/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/ro-RO/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/ro-RO/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/ru-RU/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/ru-RU/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/si-LK/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/si-LK/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/si/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/si/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/sr-SP/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/sr-SP/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/sv-SE/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/sv-SE/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/tr-TR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/tr-TR/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/uk-UA/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/uk-UA/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/vi-VN/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/vi-VN/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/zh-CN/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/zh-CN/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Strings/zh-TW/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Strings/zh-TW/Resources.resw -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/AdaptiveItemPane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/AdaptiveItemPane.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/AdaptiveItemPane.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/AdaptiveItemPane.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/ArgumentsListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/ArgumentsListView.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/ArgumentsListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/ArgumentsListView.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/Expander.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/Expander.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/Expander.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/ExpanderItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/ExpanderItem.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/ExpanderItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/ExpanderItem.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/NavViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/NavViewItem.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/NavViewItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/NavViewItem.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/TaskView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/TaskView.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/TaskView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/TaskView.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/TaskViewGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/TaskViewGrid.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/TaskViewGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/TaskViewGrid.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/TitleBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/TitleBar.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/UserControls/TitleBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/UserControls/TitleBar.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/ViewModels/ExpanderVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/ViewModels/ExpanderVM.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Home/AccountsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Home/AccountsPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Home/AccountsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Home/AccountsPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Home/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Home/HomePage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Home/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Home/HomePage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Home/NewsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Home/NewsPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Home/NewsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Home/NewsPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/LogsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/LogsPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/LogsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/LogsPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/AboutPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/AccountPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/AccountPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/AccountPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/AccountPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/AppearancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/AppearancePage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/AppearancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/AppearancePage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/GeneralPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/GeneralPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/GeneralPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/GeneralPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/SettingsPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Settings/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Settings/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Store/InstallerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Store/InstallerPage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Store/InstallerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Store/InstallerPage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Store/StorePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Store/StorePage.xaml -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/Views/Store/StorePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/Views/Store/StorePage.xaml.cs -------------------------------------------------------------------------------- /Emerald.App/Emerald.App/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.App/Emerald.App/app.manifest -------------------------------------------------------------------------------- /Emerald.Core/Args/Args.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Args/Args.cs -------------------------------------------------------------------------------- /Emerald.Core/Clients/GlacierClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Clients/GlacierClient.cs -------------------------------------------------------------------------------- /Emerald.Core/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Core.cs -------------------------------------------------------------------------------- /Emerald.Core/Emerald.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Emerald.Core.csproj -------------------------------------------------------------------------------- /Emerald.Core/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Extensions.cs -------------------------------------------------------------------------------- /Emerald.Core/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Launcher.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/Dimensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/Dimensions.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/Entry.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/Highlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/Highlight.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/IconImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/IconImage.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/Image.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/NewsPageImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/NewsPageImage.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/PlayPageImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/PlayPageImage.cs -------------------------------------------------------------------------------- /Emerald.Core/News/JSON/Root.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/JSON/Root.cs -------------------------------------------------------------------------------- /Emerald.Core/News/NewsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/News/NewsHelper.cs -------------------------------------------------------------------------------- /Emerald.Core/Optifine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Optifine.cs -------------------------------------------------------------------------------- /Emerald.Core/Store/Labrinth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Store/Labrinth.cs -------------------------------------------------------------------------------- /Emerald.Core/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Strings.cs -------------------------------------------------------------------------------- /Emerald.Core/Tasks/TaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Tasks/TaskQueue.cs -------------------------------------------------------------------------------- /Emerald.Core/Tasks/TasksHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Tasks/TasksHelper.cs -------------------------------------------------------------------------------- /Emerald.Core/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.Core/Util.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Core.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Emerald.CoreX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Emerald.CoreX.csproj -------------------------------------------------------------------------------- /Emerald.CoreX/Enums/MCVersionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Enums/MCVersionType.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Game.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Helpers/BaseSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Helpers/BaseSettingsService.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Helpers/Enums/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Helpers/Enums/MessageBox.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Helpers/Extensions.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Helpers/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Helpers/FileDownloader.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Helpers/HandledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Helpers/HandledException.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Helpers/SettingsKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Helpers/SettingsKeys.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/Fabric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/Fabric.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/Forge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/Forge.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/IModLoaderInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/IModLoaderInstaller.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/LiteLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/LiteLoader.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/LoaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/LoaderInfo.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/ModLoaderRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/ModLoaderRouter.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/Optifine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/Optifine.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Installers/Quilt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Installers/Quilt.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Models/EAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Models/EAccount.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Models/GameSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Models/GameSettings.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Models/MCVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Models/MCVersion.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Notifications/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Notifications/INotificationService.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Notifications/LauncherNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Notifications/LauncherNotification.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Notifications/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Notifications/NotificationService.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Notifications/NotificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Notifications/NotificationType.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Services/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Services/AccountService.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Services/IAccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Services/IAccountService.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Services/IBaseSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Services/IBaseSettingsService.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Store/Modrinth/IModrinthStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Store/Modrinth/IModrinthStore.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Store/Modrinth/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Store/Modrinth/JSON.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Store/Modrinth/ModrinthStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Store/Modrinth/ModrinthStore.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Store/Modrinth/SearchSortOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Store/Modrinth/SearchSortOptions.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Store/Modrinth/Stores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Store/Modrinth/Stores.cs -------------------------------------------------------------------------------- /Emerald.CoreX/Versions/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.CoreX/Versions/Version.cs -------------------------------------------------------------------------------- /Emerald.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald.sln -------------------------------------------------------------------------------- /Emerald/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/App.xaml -------------------------------------------------------------------------------- /Emerald/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/App.xaml.cs -------------------------------------------------------------------------------- /Emerald/Assets/Icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/Icons/icon.svg -------------------------------------------------------------------------------- /Emerald/Assets/Icons/icon_foreground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/Icons/icon_foreground.svg -------------------------------------------------------------------------------- /Emerald/Assets/NavigationViewIcons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/NavigationViewIcons/home.png -------------------------------------------------------------------------------- /Emerald/Assets/NavigationViewIcons/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/NavigationViewIcons/logs.png -------------------------------------------------------------------------------- /Emerald/Assets/NavigationViewIcons/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/NavigationViewIcons/news.png -------------------------------------------------------------------------------- /Emerald/Assets/NavigationViewIcons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/NavigationViewIcons/settings.png -------------------------------------------------------------------------------- /Emerald/Assets/NavigationViewIcons/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/NavigationViewIcons/store.png -------------------------------------------------------------------------------- /Emerald/Assets/NavigationViewIcons/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/NavigationViewIcons/tasks.png -------------------------------------------------------------------------------- /Emerald/Assets/SharedAssets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/SharedAssets.md -------------------------------------------------------------------------------- /Emerald/Assets/Splash/splash_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/Splash/splash_screen.svg -------------------------------------------------------------------------------- /Emerald/Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/icon.png -------------------------------------------------------------------------------- /Emerald/Assets/icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Assets/icon_new.png -------------------------------------------------------------------------------- /Emerald/DirectResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/DirectResources.cs -------------------------------------------------------------------------------- /Emerald/Emerald.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Emerald.csproj -------------------------------------------------------------------------------- /Emerald/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/GlobalUsings.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Converters/BoolToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Converters/BoolToVisibility.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Converters/CountToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Converters/CountToVisibilityConverter.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Converters/NotificationTypeToBrushConverter.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Converters/NotificationTypeToBrushConverter.cs.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Converters/StepToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Converters/StepToVisibilityConverter.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Enums/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Enums/MessageBox.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Extensions.cs -------------------------------------------------------------------------------- /Emerald/Helpers/MarkupExtensions/ConditionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/MarkupExtensions/ConditionString.cs -------------------------------------------------------------------------------- /Emerald/Helpers/MarkupExtensions/FontIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/MarkupExtensions/FontIcon.cs -------------------------------------------------------------------------------- /Emerald/Helpers/MarkupExtensions/LocalizeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/MarkupExtensions/LocalizeString.cs -------------------------------------------------------------------------------- /Emerald/Helpers/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/MessageBox.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Settings/Enums/MicaTintColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Settings/Enums/MicaTintColor.cs -------------------------------------------------------------------------------- /Emerald/Helpers/Settings/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/Settings/JSON.cs -------------------------------------------------------------------------------- /Emerald/Helpers/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Helpers/WindowManager.cs -------------------------------------------------------------------------------- /Emerald/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/MainPage.xaml -------------------------------------------------------------------------------- /Emerald/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/MainPage.xaml.cs -------------------------------------------------------------------------------- /Emerald/Models/ArgTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Models/ArgTemplate.cs -------------------------------------------------------------------------------- /Emerald/Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Models/Model.cs -------------------------------------------------------------------------------- /Emerald/Models/NavViewHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Models/NavViewHeader.cs -------------------------------------------------------------------------------- /Emerald/Models/SquareNavigationViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Models/SquareNavigationViewItem.cs -------------------------------------------------------------------------------- /Emerald/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Package.appxmanifest -------------------------------------------------------------------------------- /Emerald/Platforms/Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/Desktop/Program.cs -------------------------------------------------------------------------------- /Emerald/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /Emerald/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Emerald/Platforms/MacCatalyst/Main.maccatalyst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/MacCatalyst/Main.maccatalyst.cs -------------------------------------------------------------------------------- /Emerald/Platforms/MacCatalyst/Media.xcassets/LaunchImages.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/MacCatalyst/Media.xcassets/LaunchImages.launchimage/Contents.json -------------------------------------------------------------------------------- /Emerald/Platforms/Windows/Properties/PublishProfiles/win-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/Windows/Properties/PublishProfiles/win-arm64.pubxml -------------------------------------------------------------------------------- /Emerald/Platforms/Windows/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/Windows/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /Emerald/Platforms/Windows/Properties/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Platforms/Windows/Properties/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /Emerald/Properties/PublishProfiles/win-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Properties/PublishProfiles/win-arm64.pubxml -------------------------------------------------------------------------------- /Emerald/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /Emerald/Properties/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Properties/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /Emerald/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Properties/launchSettings.json -------------------------------------------------------------------------------- /Emerald/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/ReadMe.md -------------------------------------------------------------------------------- /Emerald/Services/ServiceProviderLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Services/ServiceProviderLocator.cs -------------------------------------------------------------------------------- /Emerald/Services/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Services/SettingsService.cs -------------------------------------------------------------------------------- /Emerald/Strings/en/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Strings/en/Resources.resw -------------------------------------------------------------------------------- /Emerald/UserControls/AddGameWizardControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/AddGameWizardControl.xaml -------------------------------------------------------------------------------- /Emerald/UserControls/AddGameWizardControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/AddGameWizardControl.xaml.cs -------------------------------------------------------------------------------- /Emerald/UserControls/ArgumentsListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/ArgumentsListView.xaml -------------------------------------------------------------------------------- /Emerald/UserControls/ArgumentsListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/ArgumentsListView.xaml.cs -------------------------------------------------------------------------------- /Emerald/UserControls/MinecraftSettingsUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/MinecraftSettingsUC.xaml -------------------------------------------------------------------------------- /Emerald/UserControls/MinecraftSettingsUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/MinecraftSettingsUC.xaml.cs -------------------------------------------------------------------------------- /Emerald/UserControls/NotificationListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/NotificationListControl.xaml -------------------------------------------------------------------------------- /Emerald/UserControls/NotificationListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/NotificationListControl.xaml.cs -------------------------------------------------------------------------------- /Emerald/UserControls/Titlebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/Titlebar.xaml -------------------------------------------------------------------------------- /Emerald/UserControls/Titlebar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/UserControls/Titlebar.xaml.cs -------------------------------------------------------------------------------- /Emerald/ViewModels/GamesPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/ViewModels/GamesPageViewModel.cs -------------------------------------------------------------------------------- /Emerald/ViewModels/NotificationListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/ViewModels/NotificationListViewModel.cs -------------------------------------------------------------------------------- /Emerald/ViewModels/NotificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/ViewModels/NotificationViewModel.cs -------------------------------------------------------------------------------- /Emerald/Views/GamesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/GamesPage.xaml -------------------------------------------------------------------------------- /Emerald/Views/GamesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/GamesPage.xaml.cs -------------------------------------------------------------------------------- /Emerald/Views/Settings/AppearancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Settings/AppearancePage.xaml -------------------------------------------------------------------------------- /Emerald/Views/Settings/AppearancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Settings/AppearancePage.xaml.cs -------------------------------------------------------------------------------- /Emerald/Views/Settings/GeneralPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Settings/GeneralPage.xaml -------------------------------------------------------------------------------- /Emerald/Views/Settings/GeneralPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Settings/GeneralPage.xaml.cs -------------------------------------------------------------------------------- /Emerald/Views/Settings/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Settings/SettingsPage.xaml -------------------------------------------------------------------------------- /Emerald/Views/Settings/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Settings/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Emerald/Views/Store/ModrinthStorePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Store/ModrinthStorePage.xaml -------------------------------------------------------------------------------- /Emerald/Views/Store/ModrinthStorePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/Views/Store/ModrinthStorePage.xaml.cs -------------------------------------------------------------------------------- /Emerald/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/Emerald/app.manifest -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/crowdin.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiversideValley/Emerald/HEAD/global.json --------------------------------------------------------------------------------