├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report.yml │ ├── feature_request.md │ └── feature_request.yml ├── .gitignore ├── InstallerManifest └── MCC321_eMixedNiteMC_DesktopTheme.yml ├── LICENSE ├── README.md ├── crowdin.yml ├── eMixedNiteMC_Font ├── InstallFont.bat └── Lato-Edited-Uppercase.ttf ├── icon.png ├── screenshots ├── README_Images │ ├── Demo1.gif │ ├── Expander.png │ ├── PlatformBannerH1.png │ ├── PlatformBannerH2.png │ ├── PlatformBannerV1.png │ ├── PlatformBannerV2.png │ ├── Plugins_Preview │ │ ├── BackToGame_Button.png │ │ ├── BackgroundChanger_Control.png │ │ ├── BackgroundChanger_ImagesManager.png │ │ ├── BackgroundChanger_ImagesManager2.png │ │ ├── CheckDLC_Button.png │ │ ├── CheckDLC_PluginView.png │ │ ├── CheckLocalizations_Button.png │ │ ├── CheckLocalizations_PluginView.png │ │ ├── DuplicateHider_DetailsControl.png │ │ ├── DuplicateHider_GridControl.png │ │ ├── ExtraMetaDataLoader_GameLogo.png │ │ ├── ExtraMetaDataLoader_GameTrailer.png │ │ ├── ExtraMetaDataLoader_Manager.png │ │ ├── GOGSCGW_Control.png │ │ ├── GOGSCGW_Control2.png │ │ ├── GOGSCGW_PluginView.png │ │ ├── GameActivity_Button.png │ │ ├── GameActivity_LastSession.png │ │ ├── GameActivity_PluginView.png │ │ ├── GameActivity_TimeSession.png │ │ ├── GameRelations_SameDeveloper.png │ │ ├── GameRelations_SamePublisher.png │ │ ├── GameRelations_SameSeries.png │ │ ├── GameRelations_SimilarGames.png │ │ ├── HowLongToBeat_Button.png │ │ ├── HowLongToBeat_GameInfo.png │ │ ├── HowLongToBeat_GameInfo2.png │ │ ├── HowLongToBeat_PluginView.png │ │ ├── LibraryManagement_FeaturesPanel.png │ │ ├── LibraryManagement_FeaturesPanel2.png │ │ ├── NewsViewer_Control.png │ │ ├── NewsViewer_Control2.png │ │ ├── NewsViewer_PlayerCount.png │ │ ├── PlayNotes_Control.png │ │ ├── PlayniteSoundMod_ControlPaused.png │ │ ├── PlayniteSoundMod_ControlPlaying.png │ │ ├── PlayniteSoundMod_Manager1.png │ │ ├── PlayniteSoundMod_Manager2.png │ │ ├── ReviewViewer_Control.png │ │ ├── ScreenshotsVisualizer_Button.png │ │ ├── ScreenshotsVisualizer_GameCaptures.png │ │ ├── ScreenshotsVisualizer_PluginView.png │ │ ├── SteamStoreScreenshots_Control.png │ │ ├── SuccessStory_Button.png │ │ ├── SuccessStory_List1.png │ │ ├── SuccessStory_List2.png │ │ ├── SuccessStory_List3.png │ │ ├── SuccessStory_PluginView.png │ │ ├── SuccessStory_TimeLine.png │ │ ├── SystemChecker_Button.png │ │ ├── SystemChecker_PluginView.png │ │ ├── ThemeExtras_CompletionDropInMenu.png │ │ ├── ThemeExtras_DefaultLinkPanelLogo.png │ │ ├── ThemeExtras_FavoriteToggleSetting.png │ │ ├── ThemeExtras_HideToggleSetting.png │ │ ├── ThemeExtras_ScoreStars.png │ │ ├── ThemeExtras_SecondLinkPanelLogo.png │ │ ├── ThemeModifier_ColorMenu.png │ │ ├── ThemeModifier_ConstantMenu.png │ │ ├── ThemeModifier_ConstantMenuButton.png │ │ └── ThemeOptions_Control.png │ ├── QuickSettinsWheel1.png │ ├── QuickSettinsWheel2.png │ ├── QuickSettinsWheel3.png │ ├── QuickSettinsWheel4.png │ ├── QuickSettinsWheel5.png │ ├── SourceBannerH1.png │ ├── SourceBannerH2.png │ ├── SourceBannerV1.png │ ├── SourceBannerV2.png │ ├── TopPanelButton1.png │ ├── TopPanelButton2.png │ ├── VideoPlaying1.png │ └── VideoPlaying2.png ├── Thumbnail_01.png ├── Thumbnail_02.png ├── Thumbnail_03.png ├── Thumbnail_04.png ├── Thumbnail_05.png ├── screenshot_01.png ├── screenshot_02.png ├── screenshot_03.png ├── screenshot_04.png └── screenshot_05.png └── source ├── App.xaml ├── Common.xaml ├── Constants.xaml ├── ControlGalleryView.xaml ├── CustomControls ├── ComboBoxList.xaml ├── ExpanderEx.xaml ├── ExtendedDataGrid.xaml ├── ExtendedListBox.xaml ├── ExtendedListView.xaml ├── FilterSelectionBox.xaml ├── GameGroupMenu.xaml ├── GameMenu.xaml ├── HotKeyBox.xaml ├── HtmlTextView.xaml ├── NumericBoxes.xaml ├── PathSelectionBox.xaml ├── SearchBox.xaml ├── SidebarItem.xaml ├── SliderEx.xaml ├── TopPanelItem.xaml ├── TrayContextMenu.xaml └── WindowBase.xaml ├── DefaultControls ├── Border.xaml ├── Button.xaml ├── CheckBox.xaml ├── ComboBox.xaml ├── ContextMenu.xaml ├── DataGrid.xaml ├── DatePicker.xaml ├── Expander.xaml ├── GridSplitter.xaml ├── GroupBox.xaml ├── Hyperlink.xaml ├── Label.xaml ├── ListBox.xaml ├── ListView.xaml ├── Menu.xaml ├── PasswordBox.xaml ├── Popup.xaml ├── ProgressBar.xaml ├── RadioButton.xaml ├── RepeatButton.xaml ├── RichTextBox.xaml ├── ScrollViewer.xaml ├── Slider.xaml ├── TabControl.xaml ├── TextBlock.xaml ├── TextBox.xaml ├── Thumb.xaml ├── ToggleButton.xaml ├── ToolTip.xaml └── TreeView.xaml ├── DerivedStyles ├── BottomButton.xaml ├── DetailsHyperlink.xaml ├── DetailsScrollViewer.xaml ├── DetailsViewGroupStyle.xaml ├── DetailsViewItemStyle.xaml ├── DetailsViewItemTemplate.xaml ├── GridViewGroupStyle.xaml ├── GridViewItemStyle.xaml ├── GridViewItemTemplate.xaml ├── HighlightBorder.xaml ├── ImageHighlightButton.xaml ├── ListViewGroupStyle.xaml ├── MainWindowStyle.xaml ├── NotificationMessage.xaml ├── PlayButton.xaml ├── PropertyItemButton.xaml ├── SimpleButton.xaml ├── StandardWindowStyle.xaml ├── TextBlockGameScore.xaml └── WindowBarButton.xaml ├── DescriptionView.html ├── Fonts └── icofont.ttf ├── GlobalResources.xaml ├── Images ├── Banners │ ├── PlatformsDefault │ │ ├── commodore_amiga.png │ │ ├── commodore_amiga_cd32.png │ │ ├── microsoft_msx.png │ │ ├── microsoft_msx2.png │ │ ├── nec_pc98.png │ │ └── snk_neogeo_aes.png │ ├── PlatformsExtra │ │ ├── FM Towns.png │ │ ├── Flash.png │ │ ├── Microsoft MSX.png │ │ ├── Microsoft MSX2.png │ │ ├── NEC PC9801.png │ │ ├── PICO-8.png │ │ ├── Philips CD-i.png │ │ ├── Sammy Atomiswave.png │ │ └── Sega NAOMI.png │ ├── Stores │ │ ├── DLsite.png │ │ ├── DODI.png │ │ ├── EA App.png │ │ ├── FITGIRL.png │ │ ├── GamersGate.png │ │ ├── HoYoPlay.png │ │ ├── Legendary.png │ │ ├── MangaGamer.png │ │ ├── Patreon.png │ │ ├── RexaGames.png │ │ ├── Riot Games.png │ │ ├── ScummVM.png │ │ └── XCloud.png │ └── UnknownLibrary.png ├── Icons │ └── Stores │ │ ├── Amazon Games.png │ │ ├── Amazon.png │ │ ├── AniList.png │ │ ├── Battle.net.png │ │ ├── Bethesda.png │ │ ├── EA app.png │ │ ├── Epic.png │ │ ├── GOG.png │ │ ├── Game Pass.png │ │ ├── Geforce NOW.png │ │ ├── Groupees.png │ │ ├── Humble.png │ │ ├── Importer for AniList.png │ │ ├── Indiegala.png │ │ ├── Itch.io.png │ │ ├── JAST USA.png │ │ ├── JAST.png │ │ ├── Legacy Games.png │ │ ├── Legacy.png │ │ ├── NVIDIA Geforce NOW.png │ │ ├── Nintendo.png │ │ ├── Oculus.png │ │ ├── Origin.png │ │ ├── PlayStation.png │ │ ├── Riot Launcher.png │ │ ├── Riot.png │ │ ├── Rockstar Games.png │ │ ├── Rockstar.png │ │ ├── Steam.png │ │ ├── Ubisoft Connect.png │ │ ├── Ubisoft.png │ │ ├── Viveport.png │ │ ├── Xbox Game Pass.png │ │ └── Xbox.png ├── applogo.ico ├── applogo.png ├── applogo_black.ico ├── applogo_dark.png ├── applogo_eMixedNiteMC.png ├── applogo_white.ico ├── banners │ ├── PlatformsDefault │ │ ├── 3do.png │ │ ├── adobe_flash.png │ │ ├── amstrad_cpc.png │ │ ├── apple_2.png │ │ ├── atari_2600.png │ │ ├── atari_5200.png │ │ ├── atari_7800.png │ │ ├── atari_jaguar.png │ │ ├── atari_lynx.png │ │ ├── bandai_wonderswan.png │ │ ├── bandai_wonderswan_color.png │ │ ├── coleco_vision.png │ │ ├── commodore_64.png │ │ ├── macintosh.png │ │ ├── mattel_intellivision.png │ │ ├── nec_pcfx.png │ │ ├── nec_supergrafx.png │ │ ├── nec_turbografx_16.png │ │ ├── nec_turbografx_cd.png │ │ ├── nintendo_3ds.png │ │ ├── nintendo_64.png │ │ ├── nintendo_ds.png │ │ ├── nintendo_famicom_disk.png │ │ ├── nintendo_gameboy.png │ │ ├── nintendo_gameboyadvance.png │ │ ├── nintendo_gameboycolor.png │ │ ├── nintendo_gamecube.png │ │ ├── nintendo_nes.png │ │ ├── nintendo_super_nes.png │ │ ├── nintendo_switch.png │ │ ├── nintendo_virtualboy.png │ │ ├── nintendo_wii.png │ │ ├── nintendo_wiiu.png │ │ ├── pc_dos.png │ │ ├── pc_windows.png │ │ ├── sega_32x.png │ │ ├── sega_cd.png │ │ ├── sega_dreamcast.png │ │ ├── sega_gamegear.png │ │ ├── sega_genesis.png │ │ ├── sega_mastersystem.png │ │ ├── sega_saturn.png │ │ ├── sinclair_zxspectrum.png │ │ ├── snk_neogeopocket.png │ │ ├── snk_neogeopocket_color.png │ │ ├── sony_playstation.png │ │ ├── sony_playstation2.png │ │ ├── sony_playstation3.png │ │ ├── sony_playstation4.png │ │ ├── sony_playstation5.png │ │ ├── sony_psp.png │ │ ├── sony_vita.png │ │ ├── vectrex.png │ │ ├── xbox.png │ │ ├── xbox360.png │ │ ├── xbox_one.png │ │ └── xbox_series.png │ ├── PlatformsExtra │ │ ├── Android.png │ │ ├── Arcade.png │ │ ├── Web.png │ │ └── iOS.png │ ├── Playnite.png │ └── Stores │ │ ├── Amazon Games.png │ │ ├── Amazon.png │ │ ├── AniList.png │ │ ├── Battle.net.png │ │ ├── Bethesda.png │ │ ├── Epic.png │ │ ├── GOG.png │ │ ├── Game Pass.png │ │ ├── Geforce NOW.png │ │ ├── Groupees.png │ │ ├── Humble.png │ │ ├── Importer for AniList.png │ │ ├── Indiegala.png │ │ ├── Itch.io.png │ │ ├── JAST USA.png │ │ ├── JAST.png │ │ ├── Legacy Games.png │ │ ├── Legacy.png │ │ ├── NVIDIA Geforce NOW.png │ │ ├── Nintendo.png │ │ ├── Oculus.png │ │ ├── Origin.png │ │ ├── PlayStation.png │ │ ├── Riot.png │ │ ├── Rockstar Games.png │ │ ├── Rockstar.png │ │ ├── Steam.png │ │ ├── Ubisoft Connect.png │ │ ├── Ubisoft.png │ │ ├── Viveport.png │ │ ├── Xbox Game Pass.png │ │ └── Xbox.png ├── csharp.ico ├── custom_cover_background.png ├── discord.png ├── kofi.png ├── patreon.png ├── powershell.ico ├── python.ico ├── reddit.png └── twitter.png ├── LocSource.xaml ├── Localization ├── LocSource.xaml ├── af_ZA.xaml ├── ar_SA.xaml ├── ca_ES.xaml ├── cs_CZ.xaml ├── da_DK.xaml ├── de_DE.xaml ├── en_US.xaml ├── eo_UY.xaml ├── es_ES.xaml ├── fa_IR.xaml ├── fi_FI.xaml ├── fr_FR.xaml ├── gl_ES.xaml ├── he_IL.xaml ├── hr_HR.xaml ├── hu_HU.xaml ├── it_IT.xaml ├── ja_JP.xaml ├── ko_KR.xaml ├── nl_NL.xaml ├── no_NO.xaml ├── pl_PL.xaml ├── pt_BR.xaml ├── pt_PT.xaml ├── ro_RO.xaml ├── ru_RU.xaml ├── sr_SP.xaml ├── tr_TR.xaml ├── uk_UA.xaml ├── vi_VN.xaml ├── zh_CN.xaml └── zh_TW.xaml ├── Media.xaml ├── Presets ├── PlayniteLogo │ ├── BlackLogo │ │ ├── Screenshot_BlackLogo.png │ │ └── Views │ │ │ ├── Sidebar.xaml │ │ │ └── TopPanel.xaml │ ├── DarkLogo │ │ ├── Screenshot_DarkLogo.png │ │ └── Views │ │ │ ├── Sidebar.xaml │ │ │ └── TopPanel.xaml │ ├── DefaultLogo │ │ ├── Screenshot_DefaultLogo.png │ │ └── Views │ │ │ ├── Sidebar.xaml │ │ │ └── TopPanel.xaml │ ├── WhiteLogo │ │ ├── Screenshot_WhiteLogo.png │ │ └── Views │ │ │ ├── Sidebar.xaml │ │ │ └── TopPanel.xaml │ └── eMixedNiteMCLogo │ │ ├── Screenshot_eMixedNiteMCLogo.png │ │ └── Views │ │ ├── Sidebar.xaml │ │ └── TopPanel.xaml └── RoundedCornerWindows11 │ ├── RoundedCornerDisabled │ ├── DerivedStyles │ │ ├── MainWindowStyle.xaml │ │ └── StandardWindowStyle.xaml │ ├── MainWindowStyle.xaml │ └── StandardWindowStyle.xaml │ └── RoundedCornerEnabled │ └── DerivedStyles │ ├── MainWindowStyle.xaml │ └── StandardWindowStyle.xaml ├── Theme.csproj ├── Theme.sln ├── Views ├── DetailsViewGameOverview.xaml ├── ExplorerPanel.xaml ├── FilterPanelView.xaml ├── GridViewGameOverview.xaml ├── Library.xaml ├── LibraryDetailsView.xaml ├── LibraryGridView.xaml ├── LibraryListView.xaml ├── MainWindow.xaml ├── NotificationPanel.xaml ├── SearchView.xaml ├── Sidebar.xaml └── TopPanel.xaml ├── changelog.yaml ├── lastChanged.json ├── options.yaml ├── theme.yaml ├── themeExtras.yaml └── thememodifier.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: MCC321 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/.gitignore -------------------------------------------------------------------------------- /InstallerManifest/MCC321_eMixedNiteMC_DesktopTheme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/InstallerManifest/MCC321_eMixedNiteMC_DesktopTheme.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/crowdin.yml -------------------------------------------------------------------------------- /eMixedNiteMC_Font/InstallFont.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/eMixedNiteMC_Font/InstallFont.bat -------------------------------------------------------------------------------- /eMixedNiteMC_Font/Lato-Edited-Uppercase.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/eMixedNiteMC_Font/Lato-Edited-Uppercase.ttf -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/icon.png -------------------------------------------------------------------------------- /screenshots/README_Images/Demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Demo1.gif -------------------------------------------------------------------------------- /screenshots/README_Images/Expander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Expander.png -------------------------------------------------------------------------------- /screenshots/README_Images/PlatformBannerH1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/PlatformBannerH1.png -------------------------------------------------------------------------------- /screenshots/README_Images/PlatformBannerH2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/PlatformBannerH2.png -------------------------------------------------------------------------------- /screenshots/README_Images/PlatformBannerV1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/PlatformBannerV1.png -------------------------------------------------------------------------------- /screenshots/README_Images/PlatformBannerV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/PlatformBannerV2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/BackToGame_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/BackToGame_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/BackgroundChanger_Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/BackgroundChanger_Control.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/BackgroundChanger_ImagesManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/BackgroundChanger_ImagesManager.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/BackgroundChanger_ImagesManager2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/BackgroundChanger_ImagesManager2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/CheckDLC_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/CheckDLC_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/CheckDLC_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/CheckDLC_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/CheckLocalizations_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/CheckLocalizations_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/CheckLocalizations_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/CheckLocalizations_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/DuplicateHider_DetailsControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/DuplicateHider_DetailsControl.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/DuplicateHider_GridControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/DuplicateHider_GridControl.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ExtraMetaDataLoader_GameLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ExtraMetaDataLoader_GameLogo.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ExtraMetaDataLoader_GameTrailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ExtraMetaDataLoader_GameTrailer.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ExtraMetaDataLoader_Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ExtraMetaDataLoader_Manager.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GOGSCGW_Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GOGSCGW_Control.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GOGSCGW_Control2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GOGSCGW_Control2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GOGSCGW_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GOGSCGW_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameActivity_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameActivity_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameActivity_LastSession.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameActivity_LastSession.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameActivity_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameActivity_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameActivity_TimeSession.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameActivity_TimeSession.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameRelations_SameDeveloper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameRelations_SameDeveloper.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameRelations_SamePublisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameRelations_SamePublisher.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameRelations_SameSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameRelations_SameSeries.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/GameRelations_SimilarGames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/GameRelations_SimilarGames.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/HowLongToBeat_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/HowLongToBeat_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/HowLongToBeat_GameInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/HowLongToBeat_GameInfo.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/HowLongToBeat_GameInfo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/HowLongToBeat_GameInfo2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/HowLongToBeat_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/HowLongToBeat_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/LibraryManagement_FeaturesPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/LibraryManagement_FeaturesPanel.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/LibraryManagement_FeaturesPanel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/LibraryManagement_FeaturesPanel2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/NewsViewer_Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/NewsViewer_Control.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/NewsViewer_Control2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/NewsViewer_Control2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/NewsViewer_PlayerCount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/NewsViewer_PlayerCount.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/PlayNotes_Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/PlayNotes_Control.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_ControlPaused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_ControlPaused.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_ControlPlaying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_ControlPlaying.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_Manager1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_Manager1.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_Manager2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/PlayniteSoundMod_Manager2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ReviewViewer_Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ReviewViewer_Control.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ScreenshotsVisualizer_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ScreenshotsVisualizer_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ScreenshotsVisualizer_GameCaptures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ScreenshotsVisualizer_GameCaptures.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ScreenshotsVisualizer_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ScreenshotsVisualizer_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SteamStoreScreenshots_Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SteamStoreScreenshots_Control.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SuccessStory_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SuccessStory_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SuccessStory_List1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SuccessStory_List1.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SuccessStory_List2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SuccessStory_List2.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SuccessStory_List3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SuccessStory_List3.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SuccessStory_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SuccessStory_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SuccessStory_TimeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SuccessStory_TimeLine.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SystemChecker_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SystemChecker_Button.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/SystemChecker_PluginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/SystemChecker_PluginView.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeExtras_CompletionDropInMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeExtras_CompletionDropInMenu.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeExtras_DefaultLinkPanelLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeExtras_DefaultLinkPanelLogo.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeExtras_FavoriteToggleSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeExtras_FavoriteToggleSetting.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeExtras_HideToggleSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeExtras_HideToggleSetting.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeExtras_ScoreStars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeExtras_ScoreStars.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeExtras_SecondLinkPanelLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeExtras_SecondLinkPanelLogo.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeModifier_ColorMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeModifier_ColorMenu.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeModifier_ConstantMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeModifier_ConstantMenu.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeModifier_ConstantMenuButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeModifier_ConstantMenuButton.png -------------------------------------------------------------------------------- /screenshots/README_Images/Plugins_Preview/ThemeOptions_Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/Plugins_Preview/ThemeOptions_Control.png -------------------------------------------------------------------------------- /screenshots/README_Images/QuickSettinsWheel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/QuickSettinsWheel1.png -------------------------------------------------------------------------------- /screenshots/README_Images/QuickSettinsWheel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/QuickSettinsWheel2.png -------------------------------------------------------------------------------- /screenshots/README_Images/QuickSettinsWheel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/QuickSettinsWheel3.png -------------------------------------------------------------------------------- /screenshots/README_Images/QuickSettinsWheel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/QuickSettinsWheel4.png -------------------------------------------------------------------------------- /screenshots/README_Images/QuickSettinsWheel5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/QuickSettinsWheel5.png -------------------------------------------------------------------------------- /screenshots/README_Images/SourceBannerH1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/SourceBannerH1.png -------------------------------------------------------------------------------- /screenshots/README_Images/SourceBannerH2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/SourceBannerH2.png -------------------------------------------------------------------------------- /screenshots/README_Images/SourceBannerV1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/SourceBannerV1.png -------------------------------------------------------------------------------- /screenshots/README_Images/SourceBannerV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/SourceBannerV2.png -------------------------------------------------------------------------------- /screenshots/README_Images/TopPanelButton1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/TopPanelButton1.png -------------------------------------------------------------------------------- /screenshots/README_Images/TopPanelButton2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/TopPanelButton2.png -------------------------------------------------------------------------------- /screenshots/README_Images/VideoPlaying1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/VideoPlaying1.png -------------------------------------------------------------------------------- /screenshots/README_Images/VideoPlaying2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/README_Images/VideoPlaying2.png -------------------------------------------------------------------------------- /screenshots/Thumbnail_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/Thumbnail_01.png -------------------------------------------------------------------------------- /screenshots/Thumbnail_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/Thumbnail_02.png -------------------------------------------------------------------------------- /screenshots/Thumbnail_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/Thumbnail_03.png -------------------------------------------------------------------------------- /screenshots/Thumbnail_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/Thumbnail_04.png -------------------------------------------------------------------------------- /screenshots/Thumbnail_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/Thumbnail_05.png -------------------------------------------------------------------------------- /screenshots/screenshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/screenshot_01.png -------------------------------------------------------------------------------- /screenshots/screenshot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/screenshot_02.png -------------------------------------------------------------------------------- /screenshots/screenshot_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/screenshot_03.png -------------------------------------------------------------------------------- /screenshots/screenshot_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/screenshot_04.png -------------------------------------------------------------------------------- /screenshots/screenshot_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/screenshots/screenshot_05.png -------------------------------------------------------------------------------- /source/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/App.xaml -------------------------------------------------------------------------------- /source/Common.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Common.xaml -------------------------------------------------------------------------------- /source/Constants.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Constants.xaml -------------------------------------------------------------------------------- /source/ControlGalleryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/ControlGalleryView.xaml -------------------------------------------------------------------------------- /source/CustomControls/ComboBoxList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/ComboBoxList.xaml -------------------------------------------------------------------------------- /source/CustomControls/ExpanderEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/ExpanderEx.xaml -------------------------------------------------------------------------------- /source/CustomControls/ExtendedDataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/ExtendedDataGrid.xaml -------------------------------------------------------------------------------- /source/CustomControls/ExtendedListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/ExtendedListBox.xaml -------------------------------------------------------------------------------- /source/CustomControls/ExtendedListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/ExtendedListView.xaml -------------------------------------------------------------------------------- /source/CustomControls/FilterSelectionBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/FilterSelectionBox.xaml -------------------------------------------------------------------------------- /source/CustomControls/GameGroupMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/GameGroupMenu.xaml -------------------------------------------------------------------------------- /source/CustomControls/GameMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/GameMenu.xaml -------------------------------------------------------------------------------- /source/CustomControls/HotKeyBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/HotKeyBox.xaml -------------------------------------------------------------------------------- /source/CustomControls/HtmlTextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/HtmlTextView.xaml -------------------------------------------------------------------------------- /source/CustomControls/NumericBoxes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/NumericBoxes.xaml -------------------------------------------------------------------------------- /source/CustomControls/PathSelectionBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/PathSelectionBox.xaml -------------------------------------------------------------------------------- /source/CustomControls/SearchBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/SearchBox.xaml -------------------------------------------------------------------------------- /source/CustomControls/SidebarItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/SidebarItem.xaml -------------------------------------------------------------------------------- /source/CustomControls/SliderEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/SliderEx.xaml -------------------------------------------------------------------------------- /source/CustomControls/TopPanelItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/TopPanelItem.xaml -------------------------------------------------------------------------------- /source/CustomControls/TrayContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/TrayContextMenu.xaml -------------------------------------------------------------------------------- /source/CustomControls/WindowBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/CustomControls/WindowBase.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Border.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Button.xaml -------------------------------------------------------------------------------- /source/DefaultControls/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/CheckBox.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ComboBox.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ContextMenu.xaml -------------------------------------------------------------------------------- /source/DefaultControls/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/DataGrid.xaml -------------------------------------------------------------------------------- /source/DefaultControls/DatePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/DatePicker.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Expander.xaml -------------------------------------------------------------------------------- /source/DefaultControls/GridSplitter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/GridSplitter.xaml -------------------------------------------------------------------------------- /source/DefaultControls/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/GroupBox.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Hyperlink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Hyperlink.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Label.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ListBox.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ListView.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Menu.xaml -------------------------------------------------------------------------------- /source/DefaultControls/PasswordBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/PasswordBox.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Popup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Popup.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ProgressBar.xaml -------------------------------------------------------------------------------- /source/DefaultControls/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/RadioButton.xaml -------------------------------------------------------------------------------- /source/DefaultControls/RepeatButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/RepeatButton.xaml -------------------------------------------------------------------------------- /source/DefaultControls/RichTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/RichTextBox.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ScrollViewer.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Slider.xaml -------------------------------------------------------------------------------- /source/DefaultControls/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/TabControl.xaml -------------------------------------------------------------------------------- /source/DefaultControls/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/TextBlock.xaml -------------------------------------------------------------------------------- /source/DefaultControls/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/TextBox.xaml -------------------------------------------------------------------------------- /source/DefaultControls/Thumb.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/Thumb.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ToggleButton.xaml -------------------------------------------------------------------------------- /source/DefaultControls/ToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/ToolTip.xaml -------------------------------------------------------------------------------- /source/DefaultControls/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DefaultControls/TreeView.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/BottomButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/BottomButton.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsHyperlink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/DetailsHyperlink.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/DetailsScrollViewer.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsViewGroupStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/DetailsViewGroupStyle.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsViewItemStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/DetailsViewItemStyle.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsViewItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/DetailsViewItemTemplate.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/GridViewGroupStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/GridViewGroupStyle.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/GridViewItemStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/GridViewItemStyle.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/GridViewItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/GridViewItemTemplate.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/HighlightBorder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/HighlightBorder.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/ImageHighlightButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/ImageHighlightButton.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/ListViewGroupStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/ListViewGroupStyle.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/MainWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/MainWindowStyle.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/NotificationMessage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/NotificationMessage.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/PlayButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/PlayButton.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/PropertyItemButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/PropertyItemButton.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/SimpleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/SimpleButton.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/StandardWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/StandardWindowStyle.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/TextBlockGameScore.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/TextBlockGameScore.xaml -------------------------------------------------------------------------------- /source/DerivedStyles/WindowBarButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DerivedStyles/WindowBarButton.xaml -------------------------------------------------------------------------------- /source/DescriptionView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/DescriptionView.html -------------------------------------------------------------------------------- /source/Fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Fonts/icofont.ttf -------------------------------------------------------------------------------- /source/GlobalResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/GlobalResources.xaml -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsDefault/commodore_amiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsDefault/commodore_amiga.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsDefault/commodore_amiga_cd32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsDefault/commodore_amiga_cd32.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsDefault/microsoft_msx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsDefault/microsoft_msx.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsDefault/microsoft_msx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsDefault/microsoft_msx2.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsDefault/nec_pc98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsDefault/nec_pc98.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsDefault/snk_neogeo_aes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsDefault/snk_neogeo_aes.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/FM Towns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/FM Towns.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/Flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/Flash.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/Microsoft MSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/Microsoft MSX.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/Microsoft MSX2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/Microsoft MSX2.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/NEC PC9801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/NEC PC9801.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/PICO-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/PICO-8.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/Philips CD-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/Philips CD-i.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/Sammy Atomiswave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/Sammy Atomiswave.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformsExtra/Sega NAOMI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/PlatformsExtra/Sega NAOMI.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/DLsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/DLsite.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/DODI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/DODI.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/EA App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/EA App.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/FITGIRL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/FITGIRL.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/GamersGate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/GamersGate.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/HoYoPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/HoYoPlay.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/Legendary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/Legendary.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/MangaGamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/MangaGamer.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/Patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/Patreon.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/RexaGames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/RexaGames.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/Riot Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/Riot Games.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/ScummVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/ScummVM.png -------------------------------------------------------------------------------- /source/Images/Banners/Stores/XCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/Stores/XCloud.png -------------------------------------------------------------------------------- /source/Images/Banners/UnknownLibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Banners/UnknownLibrary.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Amazon Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Amazon Games.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Amazon.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/AniList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/AniList.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Battle.net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Battle.net.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Bethesda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Bethesda.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/EA app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/EA app.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Epic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Epic.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/GOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/GOG.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Game Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Game Pass.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Geforce NOW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Geforce NOW.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Groupees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Groupees.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Humble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Humble.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Importer for AniList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Importer for AniList.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Indiegala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Indiegala.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Itch.io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Itch.io.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/JAST USA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/JAST USA.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/JAST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/JAST.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Legacy Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Legacy Games.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Legacy.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/NVIDIA Geforce NOW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/NVIDIA Geforce NOW.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Nintendo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Nintendo.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Oculus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Oculus.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Origin.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/PlayStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/PlayStation.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Riot Launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Riot Launcher.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Riot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Riot.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Rockstar Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Rockstar Games.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Rockstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Rockstar.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Steam.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Ubisoft Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Ubisoft Connect.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Ubisoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Ubisoft.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Viveport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Viveport.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Xbox Game Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Xbox Game Pass.png -------------------------------------------------------------------------------- /source/Images/Icons/Stores/Xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/Icons/Stores/Xbox.png -------------------------------------------------------------------------------- /source/Images/applogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/applogo.ico -------------------------------------------------------------------------------- /source/Images/applogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/applogo.png -------------------------------------------------------------------------------- /source/Images/applogo_black.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/applogo_black.ico -------------------------------------------------------------------------------- /source/Images/applogo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/applogo_dark.png -------------------------------------------------------------------------------- /source/Images/applogo_eMixedNiteMC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/applogo_eMixedNiteMC.png -------------------------------------------------------------------------------- /source/Images/applogo_white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/applogo_white.ico -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/3do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/3do.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/adobe_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/adobe_flash.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/amstrad_cpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/amstrad_cpc.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/apple_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/apple_2.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/atari_2600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/atari_2600.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/atari_5200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/atari_5200.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/atari_7800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/atari_7800.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/atari_jaguar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/atari_jaguar.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/atari_lynx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/atari_lynx.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/bandai_wonderswan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/bandai_wonderswan.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/bandai_wonderswan_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/bandai_wonderswan_color.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/coleco_vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/coleco_vision.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/commodore_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/commodore_64.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/macintosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/macintosh.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/mattel_intellivision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/mattel_intellivision.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nec_pcfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nec_pcfx.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nec_supergrafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nec_supergrafx.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nec_turbografx_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nec_turbografx_16.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nec_turbografx_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nec_turbografx_cd.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_3ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_3ds.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_64.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_ds.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_famicom_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_famicom_disk.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_gameboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_gameboy.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_gameboyadvance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_gameboyadvance.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_gameboycolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_gameboycolor.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_gamecube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_gamecube.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_nes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_nes.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_super_nes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_super_nes.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_switch.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_virtualboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_virtualboy.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_wii.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/nintendo_wiiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/nintendo_wiiu.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/pc_dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/pc_dos.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/pc_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/pc_windows.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sega_32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sega_32x.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sega_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sega_cd.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sega_dreamcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sega_dreamcast.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sega_gamegear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sega_gamegear.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sega_genesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sega_genesis.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sega_mastersystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sega_mastersystem.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sega_saturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sega_saturn.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sinclair_zxspectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sinclair_zxspectrum.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/snk_neogeopocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/snk_neogeopocket.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/snk_neogeopocket_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/snk_neogeopocket_color.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sony_playstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sony_playstation.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sony_playstation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sony_playstation2.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sony_playstation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sony_playstation3.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sony_playstation4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sony_playstation4.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sony_playstation5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sony_playstation5.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sony_psp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sony_psp.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/sony_vita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/sony_vita.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/vectrex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/vectrex.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/xbox.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/xbox360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/xbox360.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/xbox_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/xbox_one.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsDefault/xbox_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsDefault/xbox_series.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsExtra/Android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsExtra/Android.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsExtra/Arcade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsExtra/Arcade.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsExtra/Web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsExtra/Web.png -------------------------------------------------------------------------------- /source/Images/banners/PlatformsExtra/iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/PlatformsExtra/iOS.png -------------------------------------------------------------------------------- /source/Images/banners/Playnite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Playnite.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Amazon Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Amazon Games.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Amazon.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/AniList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/AniList.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Battle.net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Battle.net.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Bethesda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Bethesda.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Epic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Epic.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/GOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/GOG.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Game Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Game Pass.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Geforce NOW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Geforce NOW.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Groupees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Groupees.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Humble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Humble.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Importer for AniList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Importer for AniList.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Indiegala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Indiegala.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Itch.io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Itch.io.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/JAST USA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/JAST USA.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/JAST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/JAST.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Legacy Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Legacy Games.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Legacy.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/NVIDIA Geforce NOW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/NVIDIA Geforce NOW.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Nintendo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Nintendo.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Oculus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Oculus.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Origin.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/PlayStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/PlayStation.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Riot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Riot.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Rockstar Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Rockstar Games.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Rockstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Rockstar.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Steam.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Ubisoft Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Ubisoft Connect.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Ubisoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Ubisoft.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Viveport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Viveport.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Xbox Game Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Xbox Game Pass.png -------------------------------------------------------------------------------- /source/Images/banners/Stores/Xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/banners/Stores/Xbox.png -------------------------------------------------------------------------------- /source/Images/csharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/csharp.ico -------------------------------------------------------------------------------- /source/Images/custom_cover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/custom_cover_background.png -------------------------------------------------------------------------------- /source/Images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/discord.png -------------------------------------------------------------------------------- /source/Images/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/kofi.png -------------------------------------------------------------------------------- /source/Images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/patreon.png -------------------------------------------------------------------------------- /source/Images/powershell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/powershell.ico -------------------------------------------------------------------------------- /source/Images/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/python.ico -------------------------------------------------------------------------------- /source/Images/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/reddit.png -------------------------------------------------------------------------------- /source/Images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Images/twitter.png -------------------------------------------------------------------------------- /source/LocSource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/LocSource.xaml -------------------------------------------------------------------------------- /source/Localization/LocSource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/LocSource.xaml -------------------------------------------------------------------------------- /source/Localization/af_ZA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/af_ZA.xaml -------------------------------------------------------------------------------- /source/Localization/ar_SA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/ar_SA.xaml -------------------------------------------------------------------------------- /source/Localization/ca_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/ca_ES.xaml -------------------------------------------------------------------------------- /source/Localization/cs_CZ.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/cs_CZ.xaml -------------------------------------------------------------------------------- /source/Localization/da_DK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/da_DK.xaml -------------------------------------------------------------------------------- /source/Localization/de_DE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/de_DE.xaml -------------------------------------------------------------------------------- /source/Localization/en_US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/en_US.xaml -------------------------------------------------------------------------------- /source/Localization/eo_UY.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/eo_UY.xaml -------------------------------------------------------------------------------- /source/Localization/es_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/es_ES.xaml -------------------------------------------------------------------------------- /source/Localization/fa_IR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/fa_IR.xaml -------------------------------------------------------------------------------- /source/Localization/fi_FI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/fi_FI.xaml -------------------------------------------------------------------------------- /source/Localization/fr_FR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/fr_FR.xaml -------------------------------------------------------------------------------- /source/Localization/gl_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/gl_ES.xaml -------------------------------------------------------------------------------- /source/Localization/he_IL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/he_IL.xaml -------------------------------------------------------------------------------- /source/Localization/hr_HR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/hr_HR.xaml -------------------------------------------------------------------------------- /source/Localization/hu_HU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/hu_HU.xaml -------------------------------------------------------------------------------- /source/Localization/it_IT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/it_IT.xaml -------------------------------------------------------------------------------- /source/Localization/ja_JP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/ja_JP.xaml -------------------------------------------------------------------------------- /source/Localization/ko_KR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/ko_KR.xaml -------------------------------------------------------------------------------- /source/Localization/nl_NL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/nl_NL.xaml -------------------------------------------------------------------------------- /source/Localization/no_NO.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/no_NO.xaml -------------------------------------------------------------------------------- /source/Localization/pl_PL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/pl_PL.xaml -------------------------------------------------------------------------------- /source/Localization/pt_BR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/pt_BR.xaml -------------------------------------------------------------------------------- /source/Localization/pt_PT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/pt_PT.xaml -------------------------------------------------------------------------------- /source/Localization/ro_RO.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/ro_RO.xaml -------------------------------------------------------------------------------- /source/Localization/ru_RU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/ru_RU.xaml -------------------------------------------------------------------------------- /source/Localization/sr_SP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/sr_SP.xaml -------------------------------------------------------------------------------- /source/Localization/tr_TR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/tr_TR.xaml -------------------------------------------------------------------------------- /source/Localization/uk_UA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/uk_UA.xaml -------------------------------------------------------------------------------- /source/Localization/vi_VN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/vi_VN.xaml -------------------------------------------------------------------------------- /source/Localization/zh_CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/zh_CN.xaml -------------------------------------------------------------------------------- /source/Localization/zh_TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Localization/zh_TW.xaml -------------------------------------------------------------------------------- /source/Media.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Media.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/BlackLogo/Screenshot_BlackLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/BlackLogo/Screenshot_BlackLogo.png -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/BlackLogo/Views/Sidebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/BlackLogo/Views/Sidebar.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/BlackLogo/Views/TopPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/BlackLogo/Views/TopPanel.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/DarkLogo/Screenshot_DarkLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/DarkLogo/Screenshot_DarkLogo.png -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/DarkLogo/Views/Sidebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/DarkLogo/Views/Sidebar.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/DarkLogo/Views/TopPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/DarkLogo/Views/TopPanel.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/DefaultLogo/Screenshot_DefaultLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/DefaultLogo/Screenshot_DefaultLogo.png -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/DefaultLogo/Views/Sidebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/DefaultLogo/Views/Sidebar.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/DefaultLogo/Views/TopPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/DefaultLogo/Views/TopPanel.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/WhiteLogo/Screenshot_WhiteLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/WhiteLogo/Screenshot_WhiteLogo.png -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/WhiteLogo/Views/Sidebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/WhiteLogo/Views/Sidebar.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/WhiteLogo/Views/TopPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/WhiteLogo/Views/TopPanel.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/eMixedNiteMCLogo/Screenshot_eMixedNiteMCLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/eMixedNiteMCLogo/Screenshot_eMixedNiteMCLogo.png -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/eMixedNiteMCLogo/Views/Sidebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/eMixedNiteMCLogo/Views/Sidebar.xaml -------------------------------------------------------------------------------- /source/Presets/PlayniteLogo/eMixedNiteMCLogo/Views/TopPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/PlayniteLogo/eMixedNiteMCLogo/Views/TopPanel.xaml -------------------------------------------------------------------------------- /source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/DerivedStyles/MainWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/DerivedStyles/MainWindowStyle.xaml -------------------------------------------------------------------------------- /source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/DerivedStyles/StandardWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/DerivedStyles/StandardWindowStyle.xaml -------------------------------------------------------------------------------- /source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/MainWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/MainWindowStyle.xaml -------------------------------------------------------------------------------- /source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/StandardWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/RoundedCornerWindows11/RoundedCornerDisabled/StandardWindowStyle.xaml -------------------------------------------------------------------------------- /source/Presets/RoundedCornerWindows11/RoundedCornerEnabled/DerivedStyles/MainWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/RoundedCornerWindows11/RoundedCornerEnabled/DerivedStyles/MainWindowStyle.xaml -------------------------------------------------------------------------------- /source/Presets/RoundedCornerWindows11/RoundedCornerEnabled/DerivedStyles/StandardWindowStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Presets/RoundedCornerWindows11/RoundedCornerEnabled/DerivedStyles/StandardWindowStyle.xaml -------------------------------------------------------------------------------- /source/Theme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Theme.csproj -------------------------------------------------------------------------------- /source/Theme.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Theme.sln -------------------------------------------------------------------------------- /source/Views/DetailsViewGameOverview.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/DetailsViewGameOverview.xaml -------------------------------------------------------------------------------- /source/Views/ExplorerPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/ExplorerPanel.xaml -------------------------------------------------------------------------------- /source/Views/FilterPanelView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/FilterPanelView.xaml -------------------------------------------------------------------------------- /source/Views/GridViewGameOverview.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/GridViewGameOverview.xaml -------------------------------------------------------------------------------- /source/Views/Library.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/Library.xaml -------------------------------------------------------------------------------- /source/Views/LibraryDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/LibraryDetailsView.xaml -------------------------------------------------------------------------------- /source/Views/LibraryGridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/LibraryGridView.xaml -------------------------------------------------------------------------------- /source/Views/LibraryListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/LibraryListView.xaml -------------------------------------------------------------------------------- /source/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/MainWindow.xaml -------------------------------------------------------------------------------- /source/Views/NotificationPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/NotificationPanel.xaml -------------------------------------------------------------------------------- /source/Views/SearchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/SearchView.xaml -------------------------------------------------------------------------------- /source/Views/Sidebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/Sidebar.xaml -------------------------------------------------------------------------------- /source/Views/TopPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/Views/TopPanel.xaml -------------------------------------------------------------------------------- /source/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/changelog.yaml -------------------------------------------------------------------------------- /source/lastChanged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/lastChanged.json -------------------------------------------------------------------------------- /source/options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/options.yaml -------------------------------------------------------------------------------- /source/theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/theme.yaml -------------------------------------------------------------------------------- /source/themeExtras.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/themeExtras.yaml -------------------------------------------------------------------------------- /source/thememodifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCC321-QC/eMixedNiteMC/HEAD/source/thememodifier.yaml --------------------------------------------------------------------------------