├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ └── support.yml ├── .gitignore ├── LICENSE ├── README.md ├── manifests └── Installer_Manifest.yaml ├── screenshots ├── screenshot_01.webp ├── screenshot_02.webp ├── screenshot_03.webp ├── screenshot_04.webp ├── thumb_01.jpg ├── thumb_02.jpg ├── thumb_03.jpg └── thumb_04.jpg └── 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 │ ├── PlatformName │ │ ├── Android.png │ │ ├── Arcade.png │ │ ├── Microsoft MSX.png │ │ ├── Microsoft MSX2.png │ │ ├── NEC PC-9801.png │ │ ├── PICO-8.png │ │ ├── Philips CD-i.png │ │ ├── Sega NAOMI.png │ │ ├── Web.png │ │ └── iOS.png │ ├── PlatformSpecId │ │ ├── 3do.png │ │ ├── adobe_flash.png │ │ ├── amstrad_cpc.png │ │ ├── apple_2.jpg │ │ ├── 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 │ │ ├── commodore_amiga.png │ │ ├── commodore_amiga_cd32.png │ │ ├── macintosh.jpg │ │ ├── mattel_intellivision.png │ │ ├── nec_pcfx.png │ │ ├── nec_supergrafx.png │ │ ├── nec_turbografx_16.png │ │ ├── nec_turbografx_cd.png │ │ ├── nintendo_3ds.png │ │ ├── nintendo_64.jpg │ │ ├── nintendo_ds.jpg │ │ ├── nintendo_famicom_disk.png │ │ ├── nintendo_gameboy.jpg │ │ ├── nintendo_gameboyadvance.png │ │ ├── nintendo_gameboycolor.png │ │ ├── nintendo_gamecube.png │ │ ├── nintendo_nes.png │ │ ├── nintendo_super_nes.png │ │ ├── nintendo_switch.jpg │ │ ├── nintendo_virtualboy.png │ │ ├── nintendo_wii.png │ │ ├── nintendo_wiiu.jpg │ │ ├── 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.jpg │ │ ├── sony_playstation2.jpg │ │ ├── sony_playstation3.jpg │ │ ├── sony_playstation4.jpg │ │ ├── sony_playstation5.jpg │ │ ├── sony_psp.png │ │ ├── sony_vita.jpg │ │ ├── vectrex.png │ │ ├── xbox.jpg │ │ ├── xbox360.jpg │ │ ├── xbox_one.jpg │ │ └── xbox_series.png │ ├── PluginId │ │ ├── 00000000-0000-0000-0000-000000000000.png │ │ ├── 00000001-ebb2-4eec-abcb-7c89937a42bb.png │ │ ├── 00000002-dbd1-46c6-b5d0-b1ba559d10e4.jpg │ │ ├── 03689811-3f33-4dfb-a121-2ee168fb9a5c.png │ │ ├── 0dbead64-b7ed-47e5-904c-0ccdb5d5ff59.png │ │ ├── 0e2e793e-e0dd-4447-835c-c44a1fd506ec.png │ │ ├── 2366fb38-bf25-45ea-9a78-dcc797ee83c3.png │ │ ├── 2a62a584-2cc3-4220-8da6-cf4ac588a439.png │ │ ├── 317a5e2e-eac1-48bc-adb3-fb9e321afd3f.png │ │ ├── 34c3178f-6e1d-4e27-8885-99d4f031b168.png │ │ ├── 37995df7-2ce2-4f7c-83a3-618138ae745d.png │ │ ├── 402674cd-4af6-4886-b6ec-0e695bfa0688.png │ │ ├── 40e56f44-4955-40ec-9bf3-682c4007e55b.png │ │ ├── 41e49490-0583-4148-94d2-940c7c74f1d9.png │ │ ├── 42ff71aa-34dc-4b12-86b6-1328136c958f.png │ │ ├── 4de579c6-7179-4229-b776-7a3a9e902052.png │ │ ├── 555d58fd-a000-401b-972c-9230bed81aed.png │ │ ├── 5901b4b4-774d-411a-9cce-807c5ca49d88.png │ │ ├── 5befaf7a-a0af-4ce2-992c-bc048d94e71b.jpg │ │ ├── 5f2dfd12-5f13-46fe-bcdd-64eb53ace26a.png │ │ ├── 62ac4052-e08a-4a1a-b70a-c2c0c3673bb9.png │ │ ├── 6ab2531e-4800-404b-a938-4421b28a9f3e.png │ │ ├── 77346dd6-b0cc-4f7d-80f0-c1d138ccae58.png │ │ ├── 7e4fbb5e-2ae3-48d4-8ba0-6b30e7a4e287.jpg │ │ ├── 85dd7072-2f20-4e76-a007-41035e390724.png │ │ ├── 88409022-088a-4de8-805a-fdbac291f00a.png │ │ ├── 91d13c6f-63d3-42ed-a100-6f811a8387ea.png │ │ ├── 96e8c4bc-ec5c-4c8b-87e7-18ee5a690626.png │ │ ├── 9700aa21-447d-41b4-a989-acd38f407d9f.png │ │ ├── 97d85dbd-ad52-4834-bf4b-f6681f1445cc.png │ │ ├── a8050aa6-0fb3-4b28-8bac-491d644e81c7.png │ │ ├── aebe8b7c-6dc3-4a66-af31-e7375c6b5e9e.png │ │ ├── b28970a8-37b0-4461-aa33-628024643e73.png │ │ ├── c2f038e5-8b92-4877-91f1-da9094155fc5.png │ │ ├── cb91dfc9-b977-43bf-8e70-55f46e410fab.png │ │ ├── d407a620-5953-4ca4-a25c-8194c8559381.png │ │ ├── e3c26a3d-d695-4cb7-a769-5ff7612c7edd.png │ │ ├── e4ac81cb-1b1a-4ec9-8639-9a9633989a71.jpg │ │ ├── e4ac81cb-1b1a-4ec9-8639-9a9633989a72.png │ │ ├── e894b739-2d6e-41ee-aed4-2ea898e29803.png │ │ ├── ead65c3b-2f8f-4e37-b4e6-b3de6be540c6.png │ │ ├── ef17cc27-95d4-45e7-bd49-214ba2e5f4b2.png │ │ ├── f7da6eb0-17d7-497c-92fd-347050914954.png │ │ ├── fab8be77-18ab-4e6c-ad3d-89097b492d74.png │ │ └── fcd1bbc9-c3a3-499f-9a4c-8b7c9c8b9de8.png │ ├── SourceName │ │ └── Microsoft Store.png │ └── UnknownLibrary.png ├── applogo.ico ├── applogo.png ├── applogo_black.ico ├── applogo_dark.png ├── applogo_white.ico ├── csharp.ico ├── custom_cover_background.png ├── dark_noise.png ├── discord.png ├── innerglow.png ├── noise.png ├── patreon.png ├── powershell.ico ├── python.ico ├── reddit.png ├── twitter.png └── white_noise.png ├── LocSource.xaml ├── Media.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 ├── theme.yaml ├── themeExtras.yaml ├── themeGridConverter.yaml └── thememodifier.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: darklinkpower 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Report a bug to help us improve 3 | labels: ['bug'] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | **Check for existing issues first** 9 | Before reporting a bug, please use the issue search to check if the problem has already been reported. This helps avoid duplicates and speeds up resolution. 10 | 11 | **Instructions** 12 | Change the placeholder title automatically filled in the template and provide the necessary details in the sections below. Fields marked with a * are required. 13 | - type: textarea 14 | attributes: 15 | label: Bug Description 16 | description: A clear and concise description of the bug and what behavior you expected instead. 17 | validations: 18 | required: true 19 | - type: textarea 20 | attributes: 21 | label: Steps to Reproduce 22 | description: If the issue isn’t obvious from the description, please list the steps to reproduce the behavior. This is especially important for intermittent issues. 23 | validations: 24 | required: false 25 | - type: textarea 26 | attributes: 27 | label: Extensions Log 28 | description: | 29 | If the issue caused Playnite to crash or is related to a theme error, please attach the **Extensions.log** file. 30 | 31 | - For the portable version of Playnite, this file is located in the Playnite installation directory. 32 | - For the installed version, you can find it in **%AppData%\Playnite** (type this in the Explorer address bar). 33 | validations: 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Screenshots 38 | description: Add screenshots or videos to help illustrate the issue, if applicable. These are particularly useful for UI or visual bugs. 39 | validations: 40 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Suggest an idea for this project 3 | labels: ['enhancement'] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | **Search for existing issues first** 9 | Before suggesting a new feature, please use the issue search in the repository to check if a similar suggestion has already been made. This helps prevent duplicates and ensures your request gets proper attention. 10 | 11 | **Instructions** 12 | Create a title for your request and provide the required details in the sections below. Sections marked with a * are obligatory. 13 | - type: checkboxes 14 | attributes: 15 | label: Pre-Request Checklist 16 | description: Before submitting your feature request, please confirm the following 17 | options: 18 | - label: "I have checked Playnite's settings (e.g., in Settings -> Appearance) and confirmed that this change cannot be made there." 19 | required: true 20 | - label: "I have checked that this feature is not already available using the [ThemeModifier plugin](https://playnite.link/addons.html#playnite-thememodifier-plugin)." 21 | required: true 22 | - type: textarea 23 | attributes: 24 | label: Feature Description 25 | description: Provide a clear and concise description of the suggested feature. Explain why it would be useful and how it enhances the project. 26 | validations: 27 | required: true 28 | - type: textarea 29 | attributes: 30 | label: Screenshots or Mockups 31 | description: If applicable, add screenshots or mockups to help visualize your idea, especially for UI changes. 32 | validations: 33 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.yml: -------------------------------------------------------------------------------- 1 | name: Support request 2 | description: Create a support ticket 3 | labels: ['support'] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | **Search for existing issues first** 9 | Before creating a new support request, please use the issue search in the repository to check if this problem or request has already been opened. This helps to avoid duplicates and speeds up response times. 10 | 11 | **Instructions** 12 | Please change the placeholder title automatically filled in the template and provide the information requested in the sections below. Fields marked with a * are required. 13 | - type: checkboxes 14 | attributes: 15 | label: Pre-Request Checklist 16 | description: Please confirm the following before submitting your request 17 | options: 18 | - label: "I have checked Playnite's settings (e.g., in Settings -> Appearance) and confirmed that this change cannot be made there." 19 | required: true 20 | - label: "I have checked that this cannot be changed with an option provided by the theme using the [ThemeModifier plugin](https://playnite.link/addons.html#playnite-thememodifier-plugin)." 21 | required: true 22 | - type: textarea 23 | attributes: 24 | label: Support Request Description 25 | description: Provide a clear and concise description of the issue or support request, including any relevant details. 26 | validations: 27 | required: true 28 | - type: textarea 29 | attributes: 30 | label: Screenshots 31 | description: Add screenshots, if applicable, to help explain the problem. This is especially useful for UI-related issues. 32 | validations: 33 | required: false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | #Ignore thumbnails created by Windows 3 | Thumbs.db 4 | #Ignore files built by Visual Studio 5 | *.obj 6 | *.exe 7 | *.pdb 8 | *.user 9 | *.aps 10 | *.pch 11 | *.vspscc 12 | *_i.c 13 | *_p.c 14 | *.ncb 15 | *.suo 16 | *.tlb 17 | *.tlh 18 | *.bak 19 | *.cache 20 | *.ilk 21 | *.log 22 | [Bb]in 23 | [Dd]ebug*/ 24 | *.lib 25 | *.sbr 26 | *obj/ 27 | [Rr]elease*/ 28 | _ReSharper*/ 29 | [Tt]est[Rr]esult* 30 | .vs/ 31 | #Nuget packages folder 32 | packages/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Brandon Balderas 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /screenshots/screenshot_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/screenshot_01.webp -------------------------------------------------------------------------------- /screenshots/screenshot_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/screenshot_02.webp -------------------------------------------------------------------------------- /screenshots/screenshot_03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/screenshot_03.webp -------------------------------------------------------------------------------- /screenshots/screenshot_04.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/screenshot_04.webp -------------------------------------------------------------------------------- /screenshots/thumb_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/thumb_01.jpg -------------------------------------------------------------------------------- /screenshots/thumb_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/thumb_02.jpg -------------------------------------------------------------------------------- /screenshots/thumb_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/thumb_03.jpg -------------------------------------------------------------------------------- /screenshots/thumb_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/screenshots/thumb_04.jpg -------------------------------------------------------------------------------- /source/Common.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 18 | 19 | 29 | 30 | 35 | -------------------------------------------------------------------------------- /source/CustomControls/ExpanderEx.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /source/CustomControls/ExtendedDataGrid.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /source/CustomControls/ExtendedListBox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 23 | -------------------------------------------------------------------------------- /source/CustomControls/ExtendedListView.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /source/CustomControls/GameGroupMenu.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 24 | -------------------------------------------------------------------------------- /source/CustomControls/GameMenu.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 27 | -------------------------------------------------------------------------------- /source/CustomControls/HotKeyBox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /source/CustomControls/HtmlTextView.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 26 | 27 | 34 | 35 | 42 | 43 | 50 | -------------------------------------------------------------------------------- /source/CustomControls/PathSelectionBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 40 | -------------------------------------------------------------------------------- /source/CustomControls/SidebarItem.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 37 | 38 | 39 | 45 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /source/CustomControls/SliderEx.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 17 | 18 | 84 | -------------------------------------------------------------------------------- /source/CustomControls/TrayContextMenu.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 25 | -------------------------------------------------------------------------------- /source/CustomControls/WindowBase.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 17 | -------------------------------------------------------------------------------- /source/DefaultControls/Border.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /source/DefaultControls/Button.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 44 | 45 | 75 | -------------------------------------------------------------------------------- /source/DefaultControls/CheckBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 64 | -------------------------------------------------------------------------------- /source/DefaultControls/ContextMenu.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 28 | -------------------------------------------------------------------------------- /source/DefaultControls/GridSplitter.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /source/DefaultControls/GroupBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 36 | -------------------------------------------------------------------------------- /source/DefaultControls/Hyperlink.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 26 | -------------------------------------------------------------------------------- /source/DefaultControls/Label.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 23 | -------------------------------------------------------------------------------- /source/DefaultControls/PasswordBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 38 | -------------------------------------------------------------------------------- /source/DefaultControls/Popup.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /source/DefaultControls/ProgressBar.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 60 | -------------------------------------------------------------------------------- /source/DefaultControls/RadioButton.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 53 | -------------------------------------------------------------------------------- /source/DefaultControls/RepeatButton.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 34 | -------------------------------------------------------------------------------- /source/DefaultControls/RichTextBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 38 | -------------------------------------------------------------------------------- /source/DefaultControls/Slider.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 22 | 23 | 89 | -------------------------------------------------------------------------------- /source/DefaultControls/TextBlock.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 19 | -------------------------------------------------------------------------------- /source/DefaultControls/TextBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 43 | -------------------------------------------------------------------------------- /source/DefaultControls/Thumb.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 36 | -------------------------------------------------------------------------------- /source/DefaultControls/ToggleButton.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 46 | 47 | 91 | 92 | -------------------------------------------------------------------------------- /source/DefaultControls/ToolTip.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 30 | -------------------------------------------------------------------------------- /source/DerivedStyles/BottomButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 62 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsHyperlink.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 14 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsScrollViewer.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 44 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsViewGroupStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsViewItemStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 56 | -------------------------------------------------------------------------------- /source/DerivedStyles/GridViewGroupStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 39 | 40 | 41 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /source/DerivedStyles/HighlightBorder.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /source/DerivedStyles/ImageHighlightButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /source/DerivedStyles/ListViewGroupStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 34 | 35 | 36 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /source/DerivedStyles/MainWindowStyle.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 78 | -------------------------------------------------------------------------------- /source/DerivedStyles/NotificationMessage.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 38 | -------------------------------------------------------------------------------- /source/DerivedStyles/PropertyItemButton.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 29 | 30 | 52 | -------------------------------------------------------------------------------- /source/DerivedStyles/SimpleButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 27 | -------------------------------------------------------------------------------- /source/DerivedStyles/StandardWindowStyle.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 9 | 10 | 61 | -------------------------------------------------------------------------------- /source/DerivedStyles/TextBlockGameScore.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /source/DerivedStyles/WindowBarButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 34 | -------------------------------------------------------------------------------- /source/DescriptionView.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 24 | Game Description 25 | 26 | 27 |
28 | {text} 29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /source/Fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Fonts/icofont.ttf -------------------------------------------------------------------------------- /source/GlobalResources.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 1920 11 | 1080 12 | 13 | True 14 | False 15 | 16 | /Fonts/icofont.ttf#icofont 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/Android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/Android.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/Arcade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/Arcade.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/Microsoft MSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/Microsoft MSX.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/Microsoft MSX2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/Microsoft MSX2.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/NEC PC-9801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/NEC PC-9801.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/PICO-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/PICO-8.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/Philips CD-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/Philips CD-i.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/Sega NAOMI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/Sega NAOMI.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/Web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/Web.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformName/iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformName/iOS.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/3do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/3do.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/adobe_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/adobe_flash.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/amstrad_cpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/amstrad_cpc.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/apple_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/apple_2.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/atari_2600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/atari_2600.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/atari_5200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/atari_5200.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/atari_7800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/atari_7800.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/atari_jaguar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/atari_jaguar.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/atari_lynx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/atari_lynx.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/bandai_wonderswan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/bandai_wonderswan.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/bandai_wonderswan_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/bandai_wonderswan_color.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/coleco_vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/coleco_vision.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/commodore_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/commodore_64.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/commodore_amiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/commodore_amiga.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/commodore_amiga_cd32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/commodore_amiga_cd32.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/macintosh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/macintosh.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/mattel_intellivision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/mattel_intellivision.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nec_pcfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nec_pcfx.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nec_supergrafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nec_supergrafx.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nec_turbografx_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nec_turbografx_16.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nec_turbografx_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nec_turbografx_cd.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_3ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_3ds.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_64.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_ds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_ds.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_famicom_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_famicom_disk.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_gameboy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_gameboy.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_gameboyadvance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_gameboyadvance.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_gameboycolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_gameboycolor.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_gamecube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_gamecube.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_nes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_nes.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_super_nes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_super_nes.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_switch.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_virtualboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_virtualboy.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_wii.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/nintendo_wiiu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/nintendo_wiiu.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/pc_dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/pc_dos.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/pc_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/pc_windows.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sega_32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sega_32x.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sega_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sega_cd.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sega_dreamcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sega_dreamcast.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sega_gamegear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sega_gamegear.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sega_genesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sega_genesis.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sega_mastersystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sega_mastersystem.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sega_saturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sega_saturn.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sinclair_zxspectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sinclair_zxspectrum.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/snk_neogeopocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/snk_neogeopocket.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/snk_neogeopocket_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/snk_neogeopocket_color.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sony_playstation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sony_playstation.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sony_playstation2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sony_playstation2.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sony_playstation3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sony_playstation3.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sony_playstation4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sony_playstation4.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sony_playstation5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sony_playstation5.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sony_psp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sony_psp.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/sony_vita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/sony_vita.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/vectrex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/vectrex.png -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/xbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/xbox.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/xbox360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/xbox360.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/xbox_one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/xbox_one.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PlatformSpecId/xbox_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PlatformSpecId/xbox_series.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/00000000-0000-0000-0000-000000000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/00000000-0000-0000-0000-000000000000.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/00000001-ebb2-4eec-abcb-7c89937a42bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/00000001-ebb2-4eec-abcb-7c89937a42bb.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/00000002-dbd1-46c6-b5d0-b1ba559d10e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/00000002-dbd1-46c6-b5d0-b1ba559d10e4.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/03689811-3f33-4dfb-a121-2ee168fb9a5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/03689811-3f33-4dfb-a121-2ee168fb9a5c.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/0dbead64-b7ed-47e5-904c-0ccdb5d5ff59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/0dbead64-b7ed-47e5-904c-0ccdb5d5ff59.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/0e2e793e-e0dd-4447-835c-c44a1fd506ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/0e2e793e-e0dd-4447-835c-c44a1fd506ec.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/2366fb38-bf25-45ea-9a78-dcc797ee83c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/2366fb38-bf25-45ea-9a78-dcc797ee83c3.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/2a62a584-2cc3-4220-8da6-cf4ac588a439.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/2a62a584-2cc3-4220-8da6-cf4ac588a439.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/317a5e2e-eac1-48bc-adb3-fb9e321afd3f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/317a5e2e-eac1-48bc-adb3-fb9e321afd3f.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/34c3178f-6e1d-4e27-8885-99d4f031b168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/34c3178f-6e1d-4e27-8885-99d4f031b168.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/37995df7-2ce2-4f7c-83a3-618138ae745d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/37995df7-2ce2-4f7c-83a3-618138ae745d.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/402674cd-4af6-4886-b6ec-0e695bfa0688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/402674cd-4af6-4886-b6ec-0e695bfa0688.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/40e56f44-4955-40ec-9bf3-682c4007e55b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/40e56f44-4955-40ec-9bf3-682c4007e55b.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/41e49490-0583-4148-94d2-940c7c74f1d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/41e49490-0583-4148-94d2-940c7c74f1d9.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/42ff71aa-34dc-4b12-86b6-1328136c958f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/42ff71aa-34dc-4b12-86b6-1328136c958f.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/4de579c6-7179-4229-b776-7a3a9e902052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/4de579c6-7179-4229-b776-7a3a9e902052.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/555d58fd-a000-401b-972c-9230bed81aed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/555d58fd-a000-401b-972c-9230bed81aed.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/5901b4b4-774d-411a-9cce-807c5ca49d88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/5901b4b4-774d-411a-9cce-807c5ca49d88.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/5befaf7a-a0af-4ce2-992c-bc048d94e71b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/5befaf7a-a0af-4ce2-992c-bc048d94e71b.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/5f2dfd12-5f13-46fe-bcdd-64eb53ace26a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/5f2dfd12-5f13-46fe-bcdd-64eb53ace26a.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/62ac4052-e08a-4a1a-b70a-c2c0c3673bb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/62ac4052-e08a-4a1a-b70a-c2c0c3673bb9.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/6ab2531e-4800-404b-a938-4421b28a9f3e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/6ab2531e-4800-404b-a938-4421b28a9f3e.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/77346dd6-b0cc-4f7d-80f0-c1d138ccae58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/77346dd6-b0cc-4f7d-80f0-c1d138ccae58.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/7e4fbb5e-2ae3-48d4-8ba0-6b30e7a4e287.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/7e4fbb5e-2ae3-48d4-8ba0-6b30e7a4e287.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/85dd7072-2f20-4e76-a007-41035e390724.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/85dd7072-2f20-4e76-a007-41035e390724.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/88409022-088a-4de8-805a-fdbac291f00a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/88409022-088a-4de8-805a-fdbac291f00a.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/91d13c6f-63d3-42ed-a100-6f811a8387ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/91d13c6f-63d3-42ed-a100-6f811a8387ea.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/96e8c4bc-ec5c-4c8b-87e7-18ee5a690626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/96e8c4bc-ec5c-4c8b-87e7-18ee5a690626.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/9700aa21-447d-41b4-a989-acd38f407d9f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/9700aa21-447d-41b4-a989-acd38f407d9f.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/97d85dbd-ad52-4834-bf4b-f6681f1445cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/97d85dbd-ad52-4834-bf4b-f6681f1445cc.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/a8050aa6-0fb3-4b28-8bac-491d644e81c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/a8050aa6-0fb3-4b28-8bac-491d644e81c7.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/aebe8b7c-6dc3-4a66-af31-e7375c6b5e9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/aebe8b7c-6dc3-4a66-af31-e7375c6b5e9e.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/b28970a8-37b0-4461-aa33-628024643e73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/b28970a8-37b0-4461-aa33-628024643e73.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/c2f038e5-8b92-4877-91f1-da9094155fc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/c2f038e5-8b92-4877-91f1-da9094155fc5.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/cb91dfc9-b977-43bf-8e70-55f46e410fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/cb91dfc9-b977-43bf-8e70-55f46e410fab.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/d407a620-5953-4ca4-a25c-8194c8559381.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/d407a620-5953-4ca4-a25c-8194c8559381.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/e3c26a3d-d695-4cb7-a769-5ff7612c7edd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/e3c26a3d-d695-4cb7-a769-5ff7612c7edd.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/e4ac81cb-1b1a-4ec9-8639-9a9633989a71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/e4ac81cb-1b1a-4ec9-8639-9a9633989a71.jpg -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/e4ac81cb-1b1a-4ec9-8639-9a9633989a72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/e4ac81cb-1b1a-4ec9-8639-9a9633989a72.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/e894b739-2d6e-41ee-aed4-2ea898e29803.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/e894b739-2d6e-41ee-aed4-2ea898e29803.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/ead65c3b-2f8f-4e37-b4e6-b3de6be540c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/ead65c3b-2f8f-4e37-b4e6-b3de6be540c6.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/ef17cc27-95d4-45e7-bd49-214ba2e5f4b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/ef17cc27-95d4-45e7-bd49-214ba2e5f4b2.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/f7da6eb0-17d7-497c-92fd-347050914954.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/f7da6eb0-17d7-497c-92fd-347050914954.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/fab8be77-18ab-4e6c-ad3d-89097b492d74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/fab8be77-18ab-4e6c-ad3d-89097b492d74.png -------------------------------------------------------------------------------- /source/Images/Banners/PluginId/fcd1bbc9-c3a3-499f-9a4c-8b7c9c8b9de8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/PluginId/fcd1bbc9-c3a3-499f-9a4c-8b7c9c8b9de8.png -------------------------------------------------------------------------------- /source/Images/Banners/SourceName/Microsoft Store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/SourceName/Microsoft Store.png -------------------------------------------------------------------------------- /source/Images/Banners/UnknownLibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/Banners/UnknownLibrary.png -------------------------------------------------------------------------------- /source/Images/applogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/applogo.ico -------------------------------------------------------------------------------- /source/Images/applogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/applogo.png -------------------------------------------------------------------------------- /source/Images/applogo_black.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/applogo_black.ico -------------------------------------------------------------------------------- /source/Images/applogo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/applogo_dark.png -------------------------------------------------------------------------------- /source/Images/applogo_white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/applogo_white.ico -------------------------------------------------------------------------------- /source/Images/csharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/csharp.ico -------------------------------------------------------------------------------- /source/Images/custom_cover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/custom_cover_background.png -------------------------------------------------------------------------------- /source/Images/dark_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/dark_noise.png -------------------------------------------------------------------------------- /source/Images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/discord.png -------------------------------------------------------------------------------- /source/Images/innerglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/innerglow.png -------------------------------------------------------------------------------- /source/Images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/noise.png -------------------------------------------------------------------------------- /source/Images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/patreon.png -------------------------------------------------------------------------------- /source/Images/powershell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/powershell.ico -------------------------------------------------------------------------------- /source/Images/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/python.ico -------------------------------------------------------------------------------- /source/Images/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/reddit.png -------------------------------------------------------------------------------- /source/Images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/twitter.png -------------------------------------------------------------------------------- /source/Images/white_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darklinkpower/Harmony/1519b4ba3657f49330e0d3e497e5d60cbf182e8d/source/Images/white_noise.png -------------------------------------------------------------------------------- /source/Media.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /source/Theme.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.539 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Theme", "Theme.csproj", "{DEFEF902-318F-4568-AEDB-4F681A2D1D9B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {EF4E8A61-70F4-467A-BFAC-34758533A904} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /source/Views/ExplorerPanel.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 30 | 31 | 32 | 34 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source/Views/LibraryGridView.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 22 | 23 | 26 | 29 | 31 | 32 | 33 | 34 | 35 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 54 | 55 | 63 | 64 | 65 | 66 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /source/Views/LibraryListView.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 22 | 23 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source/Views/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 62 | 63 | 64 | 65 | 66 | 67 | 69 | 70 | 71 | 72 | 73 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /source/Views/NotificationPanel.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 43 | -------------------------------------------------------------------------------- /source/Views/Sidebar.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 23 | 24 | 25 | 29 | 31 | 32 | 34 | 35 | 36 | 37 | 38 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /source/theme.yaml: -------------------------------------------------------------------------------- 1 | ThemeApiVersion: 2.5.0 2 | Id: Harmony_d49ef7bc-49de-4fd0-9a67-bd1f26b56047 3 | Name: Harmony 4 | Author: darklinkpower 5 | Version: 2.65 6 | Links: 7 | - Name: GitHub 8 | Url: https://github.com/darklinkpower/Harmony 9 | - Name: Issues Tracker 10 | Url: https://github.com/darklinkpower/Harmony/issues 11 | - Name: Support (Discord) 12 | Url: https://discord.com/channels/365863063296933888/808419347105447957 13 | - Name: Ko-fi (Tips and Donations) 14 | Url: https://ko-fi.com/darklinkpower 15 | -------------------------------------------------------------------------------- /source/themeExtras.yaml: -------------------------------------------------------------------------------- 1 | ThemeId: Harmony_d49ef7bc-49de-4fd0-9a67-bd1f26b56047 2 | PersistentPaths: 3 | - Images/Banners 4 | BannersBySpecIdPath: Images/Banners/PlatformSpecId 5 | BannersByPlatformNamePath: Images/Banners/PlatformName 6 | BannersByPluginIdPath: Images/Banners/PluginId 7 | BannersBySourceNamePath: Images/Banners/SourceName 8 | DefaultBannerPath: Images/Banners/UnknownLibrary.png -------------------------------------------------------------------------------- /source/themeGridConverter.yaml: -------------------------------------------------------------------------------- 1 | Replacements: 2 | - OriginalBlock: "" 3 | ReplacementBlock: > 4 |