├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── question.md │ ├── feature_request.md │ └── bug_report.md └── release.yml ├── source ├── Fonts │ ├── font.ttf │ └── icofont.ttf ├── Images │ ├── kofi.png │ ├── applogo.ico │ ├── applogo.png │ ├── csharp.ico │ ├── discord.png │ ├── patreon.png │ ├── python.ico │ ├── reddit.png │ ├── twitter.png │ ├── Icons │ │ ├── Riot.png │ │ ├── Devil.png │ │ ├── EAapp.png │ │ ├── Oculus.png │ │ ├── Switch.png │ │ ├── Android.png │ │ ├── Indiegala.png │ │ ├── JastUSA.png │ │ ├── AmazonLuna.png │ │ ├── LegacyGames.png │ │ └── MicrosoftStore.png │ ├── powershell.ico │ ├── applogo_dark.png │ ├── applogo_black.ico │ ├── applogo_white.ico │ ├── AgeRatings │ │ ├── ACB E.png │ │ ├── ACB G.png │ │ ├── ACB M.png │ │ ├── ACB MA.png │ │ ├── ACB PG.png │ │ ├── ACB RC.png │ │ ├── CERO A.png │ │ ├── CERO B.png │ │ ├── CERO C.png │ │ ├── CERO D.png │ │ ├── CERO Z.png │ │ ├── ESRB E.png │ │ ├── ESRB M.png │ │ ├── ESRB T.png │ │ ├── PEGI 3.png │ │ ├── PEGI 7.png │ │ ├── USK 0.png │ │ ├── USK 12.png │ │ ├── USK 16.png │ │ ├── USK 18.png │ │ ├── USK 6.png │ │ ├── ACB CTC.png │ │ ├── ACB R18.png │ │ ├── ACB X18.png │ │ ├── CERO ED.png │ │ ├── CERO RC.png │ │ ├── CERO RS.png │ │ ├── ESRB AO.png │ │ ├── ESRB E10.png │ │ ├── ESRB EC.png │ │ ├── ESRB RP.png │ │ ├── GRAC 12.png │ │ ├── GRAC 15.png │ │ ├── GRAC 18.png │ │ ├── GRAC ALL.png │ │ ├── PEGI 12.png │ │ ├── PEGI 16.png │ │ ├── PEGI 18.png │ │ ├── ClassInd 10.png │ │ ├── ClassInd 12.png │ │ ├── ClassInd 14.png │ │ ├── ClassInd 16.png │ │ ├── ClassInd 18.png │ │ ├── ClassInd G.png │ │ ├── ESRB RP LM17.png │ │ ├── GRAC NONPROFIT.png │ │ └── GRAC TESTING.png │ └── custom_cover_background.png ├── CustomControls │ ├── HtmlTextView.xaml │ ├── ExpanderEx.xaml │ ├── HotKeyBox.xaml │ ├── ExtendedDataGrid.xaml │ ├── ExtendedListBox.xaml │ ├── ExtendedListView.xaml │ ├── WindowBase.xaml │ ├── GameGroupMenu.xaml │ ├── TrayContextMenu.xaml │ ├── GameMenu.xaml │ ├── SearchBox.xaml │ ├── TopPanelItem.xaml │ ├── PathSelectionBox.xaml │ ├── NumericBoxes.xaml │ ├── SidebarItem.xaml │ ├── FilterSelectionBox.xaml │ └── SliderEx.xaml ├── theme.yaml ├── DerivedStyles │ ├── BottomButton.xaml │ ├── DetailsHyperlink.xaml │ ├── TextBlockGameScore.xaml │ ├── HighlightBorder.xaml │ ├── ImageHighlightButton.xaml │ ├── SimpleButton.xaml │ ├── PropertyItemButton.xaml │ ├── WindowBarButton.xaml │ ├── NotificationMessage.xaml │ ├── GridViewItemStyle.xaml │ ├── PlayButton.xaml │ ├── DetailsScrollViewer.xaml │ ├── DetailsViewItemStyle.xaml │ ├── ListViewGroupStyle.xaml │ ├── DetailsViewGroupStyle.xaml │ ├── GridViewGroupStyle.xaml │ ├── MainWindowStyle.xaml │ └── StandardWindowStyle.xaml ├── DescriptionView.html ├── DefaultControls │ ├── Border.xaml │ ├── GridSplitter.xaml │ ├── Popup.xaml │ ├── TextBlock.xaml │ ├── ToolTip.xaml │ ├── Label.xaml │ ├── Hyperlink.xaml │ ├── ContextMenu.xaml │ ├── Thumb.xaml │ ├── RepeatButton.xaml │ ├── GroupBox.xaml │ ├── PasswordBox.xaml │ ├── RichTextBox.xaml │ ├── TextBox.xaml │ ├── ToggleButton.xaml │ ├── Button.xaml │ ├── RadioButton.xaml │ ├── ProgressBar.xaml │ ├── CheckBox.xaml │ ├── ListBox.xaml │ ├── Expander.xaml │ └── Slider.xaml ├── Views │ ├── LibraryListView.xaml │ ├── ExplorerPanel.xaml │ ├── NotificationPanel.xaml │ ├── Library.xaml │ ├── MainWindow.xaml │ ├── Sidebar.xaml │ ├── LibraryGridView.xaml │ ├── LibraryDetailsView.xaml │ └── FilterPanelView.xaml ├── Theme.sln ├── thememodifier.yaml ├── Common.xaml ├── PluginLocalizations │ ├── CheckLocalizations.xaml │ ├── GameActivity.xaml │ └── PlayerActivities.xaml └── GlobalResources.xaml ├── screenshots ├── theme_gridview.jpg ├── theme_detailsview.jpg └── thumbs │ ├── theme_gridview.jpg │ └── theme_detailsview.jpg ├── LICENSE ├── README.md ├── manifest └── Lacro59_DefaultExtend.yaml └── .gitignore /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: lacro59 2 | -------------------------------------------------------------------------------- /source/Fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Fonts/font.ttf -------------------------------------------------------------------------------- /source/Images/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/kofi.png -------------------------------------------------------------------------------- /source/Fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Fonts/icofont.ttf -------------------------------------------------------------------------------- /source/Images/applogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/applogo.ico -------------------------------------------------------------------------------- /source/Images/applogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/applogo.png -------------------------------------------------------------------------------- /source/Images/csharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/csharp.ico -------------------------------------------------------------------------------- /source/Images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/discord.png -------------------------------------------------------------------------------- /source/Images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/patreon.png -------------------------------------------------------------------------------- /source/Images/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/python.ico -------------------------------------------------------------------------------- /source/Images/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/reddit.png -------------------------------------------------------------------------------- /source/Images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/twitter.png -------------------------------------------------------------------------------- /source/Images/Icons/Riot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/Riot.png -------------------------------------------------------------------------------- /source/Images/powershell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/powershell.ico -------------------------------------------------------------------------------- /screenshots/theme_gridview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/screenshots/theme_gridview.jpg -------------------------------------------------------------------------------- /source/Images/Icons/Devil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/Devil.png -------------------------------------------------------------------------------- /source/Images/Icons/EAapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/EAapp.png -------------------------------------------------------------------------------- /source/Images/Icons/Oculus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/Oculus.png -------------------------------------------------------------------------------- /source/Images/Icons/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/Switch.png -------------------------------------------------------------------------------- /source/Images/applogo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/applogo_dark.png -------------------------------------------------------------------------------- /screenshots/theme_detailsview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/screenshots/theme_detailsview.jpg -------------------------------------------------------------------------------- /source/Images/Icons/Android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/Android.png -------------------------------------------------------------------------------- /source/Images/Icons/Indiegala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/Indiegala.png -------------------------------------------------------------------------------- /source/Images/Icons/JastUSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/JastUSA.png -------------------------------------------------------------------------------- /source/Images/applogo_black.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/applogo_black.ico -------------------------------------------------------------------------------- /source/Images/applogo_white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/applogo_white.ico -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB E.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB G.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB M.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB MA.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB PG.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB RC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB RC.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO A.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO B.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO C.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO D.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO Z.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB E.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB M.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB T.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/PEGI 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/PEGI 3.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/PEGI 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/PEGI 7.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/USK 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/USK 0.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/USK 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/USK 12.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/USK 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/USK 16.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/USK 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/USK 18.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/USK 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/USK 6.png -------------------------------------------------------------------------------- /source/Images/Icons/AmazonLuna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/AmazonLuna.png -------------------------------------------------------------------------------- /source/Images/Icons/LegacyGames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/LegacyGames.png -------------------------------------------------------------------------------- /screenshots/thumbs/theme_gridview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/screenshots/thumbs/theme_gridview.jpg -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB CTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB CTC.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB R18.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ACB X18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ACB X18.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO ED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO ED.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO RC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO RC.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/CERO RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/CERO RS.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB AO.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB E10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB E10.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB EC.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB RP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB RP.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/GRAC 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/GRAC 12.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/GRAC 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/GRAC 15.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/GRAC 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/GRAC 18.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/GRAC ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/GRAC ALL.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/PEGI 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/PEGI 12.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/PEGI 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/PEGI 16.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/PEGI 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/PEGI 18.png -------------------------------------------------------------------------------- /source/Images/Icons/MicrosoftStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/Icons/MicrosoftStore.png -------------------------------------------------------------------------------- /screenshots/thumbs/theme_detailsview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/screenshots/thumbs/theme_detailsview.jpg -------------------------------------------------------------------------------- /source/Images/AgeRatings/ClassInd 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ClassInd 10.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ClassInd 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ClassInd 12.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ClassInd 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ClassInd 14.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ClassInd 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ClassInd 16.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ClassInd 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ClassInd 18.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ClassInd G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ClassInd G.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/ESRB RP LM17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/ESRB RP LM17.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/GRAC NONPROFIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/GRAC NONPROFIT.png -------------------------------------------------------------------------------- /source/Images/AgeRatings/GRAC TESTING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/AgeRatings/GRAC TESTING.png -------------------------------------------------------------------------------- /source/Images/custom_cover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-defaultextend-theme/HEAD/source/Images/custom_cover_background.png -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question 3 | about: Ask a question on project 4 | title: '' 5 | labels: question 6 | assignees: '' 7 | --- 8 | -------------------------------------------------------------------------------- /source/CustomControls/HtmlTextView.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /source/CustomControls/HotKeyBox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /source/CustomControls/ExtendedDataGrid.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen or implemented. 12 | 13 | **Screenshots** 14 | If applicable, add screenshots to help explain your problem. 15 | -------------------------------------------------------------------------------- /source/theme.yaml: -------------------------------------------------------------------------------- 1 | ThemeApiVersion: 2.6.0 2 | Id: playnite-defaultextend-theme 3 | Name: DefaultExtend 4 | Author: Lacro59 5 | Version: 1.4 6 | Links: 7 | - Name: Github 8 | Url: https://github.com/Lacro59/playnite-defaultextend-theme 9 | - Name: Issues Tracker 10 | Url: https://github.com/Lacro59/playnite-defaultextend-theme/issues 11 | - Name: Ko-fi (Tips and Donations) 12 | Url: https://ko-fi.com/lacro59 -------------------------------------------------------------------------------- /source/CustomControls/ExtendedListBox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /source/CustomControls/ExtendedListView.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /source/DerivedStyles/BottomButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /source/DescriptionView.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 24 | Game Description 25 | 26 | 27 |
28 | {text} 29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 16 | **Expected behavior** 17 | A clear and concise description of what you expected to happen. 18 | 19 | **Screenshots** 20 | If applicable, add screenshots to help explain your problem. 21 | 22 | **Extensions log** 23 | Attach Playnite's `Extensions.log` file. It is located in Playnite's installation directory in the portable version or in `%AppData%\Playnite` (Can be pasted in Explorer) in the installed version 24 | -------------------------------------------------------------------------------- /source/DefaultControls/Border.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsHyperlink.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 14 | -------------------------------------------------------------------------------- /source/DefaultControls/GridSplitter.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /source/DefaultControls/Popup.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /source/CustomControls/WindowBase.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /source/Views/LibraryListView.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 18 | -------------------------------------------------------------------------------- /source/DerivedStyles/TextBlockGameScore.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /source/DerivedStyles/HighlightBorder.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /source/DerivedStyles/ImageHighlightButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Lacro59 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 | -------------------------------------------------------------------------------- /source/DefaultControls/TextBlock.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 19 | -------------------------------------------------------------------------------- /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/CustomControls/GameGroupMenu.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /source/CustomControls/TrayContextMenu.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /source/DefaultControls/ToolTip.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 18 | -------------------------------------------------------------------------------- /source/CustomControls/GameMenu.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 24 | -------------------------------------------------------------------------------- /source/DefaultControls/Label.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 23 | -------------------------------------------------------------------------------- /source/DerivedStyles/SimpleButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 27 | -------------------------------------------------------------------------------- /source/DerivedStyles/PropertyItemButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 28 | -------------------------------------------------------------------------------- /source/thememodifier.yaml: -------------------------------------------------------------------------------- 1 | Constants: 2 | - Miscellaneous 3 | - DE_DetailsIconsVisibility: Visibility of icons in details 4 | - DE_ShowAgeRating: Display age rating icons 5 | - DE_LimitFeaturesHeight: Limit features height 6 | - DE_FeaturesHeight(100,1000): Features height 7 | - DE_LimitTagsHeight: Limit tags height 8 | - DE_TagsHeight(100,1000): Tags height 9 | - Completation status 10 | - DE_ShowCompletationStatus: Display the game completation status 11 | - DE_NotPlayedStatus: Status Not Played 12 | - DE_PlayingStatus: Status Playing 13 | - DE_PlayedStatus: Status Played 14 | - DE_CompletedStatus: Status Played 15 | - DE_BeatenStatus: Status Beaten 16 | - DE_AbandonedStatus: Status Abandoned 17 | - DE_OnHoldStatus: Status OnHold 18 | - DE_PlanToPlayStatus: Status PlanToPlay 19 | - Details View 20 | - DE_OneLine: Display list game with one line 21 | - DE_ShowLastPlayed: Display the date to last played 22 | - DE_ShowPlayTime: Display the playtime 23 | - DE_LimitBackgroundHeight: Limit background height 24 | - DE_BackgroundHeight(100,1000): Background height 25 | - GameActivity 26 | - GA_ShowAvgFps: Display the average FPS in game details view 27 | - SuccessStory 28 | - SS_ShowProgressBar: Display a progress bar in the tab 29 | - LibraryManagement 30 | - LM_ShowFeaturesLabel: Display the features label in FeaturesIconsList 31 | - CheckLocalizations 32 | - CL_ShowLocalizationsLabel: Display the localizations label in FeaturesIconsList 33 | - ScreenshotsVisualizer 34 | - SSV_ShowCountImage: Show number of screenshots with large list -------------------------------------------------------------------------------- /source/DefaultControls/Hyperlink.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 26 | -------------------------------------------------------------------------------- /source/DefaultControls/ContextMenu.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 27 | -------------------------------------------------------------------------------- /source/CustomControls/SearchBox.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 28 | -------------------------------------------------------------------------------- /source/DerivedStyles/WindowBarButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 33 | -------------------------------------------------------------------------------- /source/DerivedStyles/NotificationMessage.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 30 | -------------------------------------------------------------------------------- /source/Common.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 18 | 19 | 29 | 30 | 35 | -------------------------------------------------------------------------------- /source/DerivedStyles/GridViewItemStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 35 | -------------------------------------------------------------------------------- /source/DefaultControls/Thumb.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 35 | -------------------------------------------------------------------------------- /source/DefaultControls/RepeatButton.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 34 | -------------------------------------------------------------------------------- /source/DerivedStyles/PlayButton.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 35 | -------------------------------------------------------------------------------- /source/DefaultControls/GroupBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 36 | -------------------------------------------------------------------------------- /source/Views/ExplorerPanel.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 26 | 27 | 28 | 30 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source/DefaultControls/PasswordBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 38 | -------------------------------------------------------------------------------- /source/CustomControls/TopPanelItem.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 44 | -------------------------------------------------------------------------------- /source/DefaultControls/RichTextBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 38 | -------------------------------------------------------------------------------- /source/Views/NotificationPanel.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 43 | -------------------------------------------------------------------------------- /source/PluginLocalizations/CheckLocalizations.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | CheckLocalizations 7 | Localizations 8 | 9 | Check localizations 10 | Edit manually a supported language 11 | 12 | 13 | 14 | Add a new supported language 15 | 16 | 17 | 18 | Interface style 19 | 20 | Display the list with the available languages 21 | Display the "Notes" column 22 | Display the list of available language flags 23 | Show only flags whose language is tagged 24 | 25 | Game languages: found {0} - not found {1} 26 | Processing, please wait... 27 | 28 | Tag with selected language(s) 29 | Tag with selected language(s) (audio only) 30 | Is a native language 31 | 32 | 33 | 34 | Native language 35 | Supported language 36 | 37 | Language 38 | UI 39 | Audio 40 | Subtitles 41 | Notes 42 | 43 | 44 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsScrollViewer.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 44 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsViewItemStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 41 | -------------------------------------------------------------------------------- /source/Views/Library.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 49 | -------------------------------------------------------------------------------- /source/CustomControls/PathSelectionBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 40 | -------------------------------------------------------------------------------- /source/DefaultControls/TextBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 43 | -------------------------------------------------------------------------------- /source/DefaultControls/ToggleButton.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 43 | -------------------------------------------------------------------------------- /source/CustomControls/NumericBoxes.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 26 | 27 | 34 | 35 | 42 | 43 | 50 | -------------------------------------------------------------------------------- /source/DefaultControls/Button.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Crowdin](https://badges.crowdin.net/playnite-extensions/localized.svg)](https://crowdin.com/project/playnite-extensions) 2 | [![GitHub release (latest by date)](https://img.shields.io/github/v/release/Lacro59/playnite-defaultextend-theme?cacheSeconds=5000&logo=github)](https://github.com/Lacro59/playnite-defaultextend-theme/releases/latest) 3 | [![GitHub Release Date](https://img.shields.io/github/release-date/Lacro59/playnite-defaultextend-theme?cacheSeconds=5000)](https://github.com/Lacro59/playnite-defaultextend-theme/releases/latest) 4 | [![Github Lastest Releases](https://img.shields.io/github/downloads/Lacro59/playnite-defaultextend-theme/latest/total.svg)]() 5 | [![GitHub commit activity](https://img.shields.io/github/commit-activity/m/Lacro59/playnite-defaultextend-theme)](https://github.com/Lacro59/playnite-defaultextend-theme/graphs/commit-activity) 6 | [![GitHub contributors](https://img.shields.io/github/contributors/Lacro59/playnite-defaultextend-theme?cacheSeconds=5000)](https://github.com/Lacro59/playnite-defaultextend-theme/graphs/contributors) 7 | [![GitHub](https://img.shields.io/github/license/Lacro59/playnite-defaultextend-theme?cacheSeconds=50000)](https://github.com/Lacro59/playnite-defaultextend-theme/blob/master/LICENSE) 8 | 9 | # playnite-defaultextend-theme 10 | Theme for [Playnite](https://playnite.link). 11 | 12 | ## Informations 13 | This theme includes many extensions in the default theme. 14 | 15 | 16 | 17 | theme_detailsview.gif 18 | 19 | 20 | 21 | 22 | theme_gridview.gif 23 | 24 | 25 | 26 | ## Supported plugins 27 | * [BackgroundChangers](https://github.com/Lacro59/playnite-backgroundchanger-plugin) 28 | * [CheckLocalizations](https://github.com/Lacro59/playnite-checklocalizations-plugin) 29 | * [DuplicateHider](https://github.com/felixkmh/DuplicateHider) 30 | * [ExtraMetadataLoader](https://github.com/darklinkpower/PlayniteExtensionsCollection) 31 | * [GameActivity](https://github.com/Lacro59/playnite-gameactivity-plugin) 32 | * [HowLongToBeat](https://github.com/Lacro59/playnite-howlongtobeat-plugin) 33 | * [LibraryManagement](https://github.com/Lacro59/playnite-librarymanagement-plugin) 34 | * [ScreenshotsVisualizer](https://github.com/Lacro59/playnite-screenshotsvisualizer-plugin) 35 | * [SuccessStory](https://github.com/Lacro59/playnite-successstory-plugin) 36 | * [SystemChecker](https://github.com/Lacro59/playnite-systemchecker-plugin) 37 | * [ThemeModifier](https://github.com/Lacro59/playnite-thememodifier-plugin) 38 | 39 | ## More 40 | Remember to support [Playnite](https://www.patreon.com/playnite). 41 | Buy Me a Coffee at ko-fi.com 42 | -------------------------------------------------------------------------------- /source/DerivedStyles/ListViewGroupStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 33 | 34 | 35 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /source/DerivedStyles/DetailsViewGroupStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 33 | 34 | 35 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /source/DerivedStyles/GridViewGroupStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 33 | 34 | 35 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /source/DefaultControls/RadioButton.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 51 | -------------------------------------------------------------------------------- /source/PluginLocalizations/GameActivity.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | PlayerActivities 7 | 8 | Refresh friends data 9 | View player activities 10 | 11 | Player activities 12 | 13 | 14 | 15 | 16 | Display SuccessStory data (required SuccessStory plugin) 17 | Display ScreenshotsVisualizer data (required ScreenshotsVisualizer plugin) 18 | Display HowLongToBeat data (required HowLongToBeat plugin) 19 | 20 | Enable Steam friends 21 | Enable GOG friends 22 | Enable Origin friends 23 | 24 | Display game activities 25 | 26 | 27 | 28 | 29 | You played for the first time. 30 | You have reached {0} hours of play. 31 | 32 | You have unlocked {0} achievements. 33 | You have reached {0}% achievements. 34 | 35 | You have taked {0} screenshots. 36 | 37 | You have completed the game. 38 | 39 | {0} day ago 40 | {0} days ago 41 | {0} month ago 42 | {0} months ago 43 | {0} year ago 44 | {0} years ago 45 | 46 | Game owned 47 | Completed games 48 | Friends 🏆 49 | Your 🏆 50 | Friends 🕑 51 | Your 🕑 52 | Achievements 53 | 54 | Commun 55 | 56 | 57 | 58 | 59 | Show game in library 60 | Refresh game data 61 | 62 | View HowLongToBeat datas 63 | View SuccessStory datas 64 | View ScreenshotsVisualizer datas 65 | 66 | 67 | -------------------------------------------------------------------------------- /source/PluginLocalizations/PlayerActivities.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | PlayerActivities 7 | 8 | Refresh friends data 9 | View player activities 10 | 11 | Player activities 12 | 13 | 14 | 15 | 16 | Display SuccessStory data (required SuccessStory plugin) 17 | Display ScreenshotsVisualizer data (required ScreenshotsVisualizer plugin) 18 | Display HowLongToBeat data (required HowLongToBeat plugin) 19 | 20 | Enable Steam friends 21 | Enable GOG friends 22 | Enable Origin friends 23 | 24 | Display game activities 25 | 26 | 27 | 28 | 29 | You played for the first time. 30 | You have reached {0} hours of play. 31 | 32 | You have unlocked {0} achievements. 33 | You have reached {0}% achievements. 34 | 35 | You have taked {0} screenshots. 36 | 37 | You have completed the game. 38 | 39 | {0} day ago 40 | {0} days ago 41 | {0} month ago 42 | {0} months ago 43 | {0} year ago 44 | {0} years ago 45 | 46 | Game owned 47 | Completed games 48 | Friends 🏆 49 | Your 🏆 50 | Friends 🕑 51 | Your 🕑 52 | Achievements 53 | 54 | Commun 55 | 56 | 57 | 58 | 59 | Show game in library 60 | Refresh game data 61 | 62 | View HowLongToBeat datas 63 | View SuccessStory datas 64 | View ScreenshotsVisualizer datas 65 | 66 | 67 | -------------------------------------------------------------------------------- /source/CustomControls/SidebarItem.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 62 | -------------------------------------------------------------------------------- /source/DerivedStyles/MainWindowStyle.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 56 | -------------------------------------------------------------------------------- /source/Views/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 59 | -------------------------------------------------------------------------------- /source/Views/Sidebar.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 55 | -------------------------------------------------------------------------------- /source/DerivedStyles/StandardWindowStyle.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 9 | 10 | 61 | -------------------------------------------------------------------------------- /source/Views/LibraryGridView.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 49 | 50 | 51 | 52 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /source/DefaultControls/ProgressBar.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 60 | -------------------------------------------------------------------------------- /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/DefaultControls/CheckBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 61 | -------------------------------------------------------------------------------- /source/Views/LibraryDetailsView.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 45 | 46 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /manifest/Lacro59_DefaultExtend.yaml: -------------------------------------------------------------------------------- 1 | AddonId: playnite-defaultextend-theme 2 | Packages: 3 | - Version: 0.1 4 | RequiredApiVersion: 2.0.0 5 | ReleaseDate: 2021-09-04 6 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.1/playnite-defaultextend-theme_0_1.pthm 7 | Changelog: 8 | - Playnite 9 beta version (not compatible with Playnite 8) 9 | - Supported BackgroundChanger, CheckLocalizations, GameActivity, HowLongToBeat, LibraryManagement, ScreenshotsVisualizer, SuccessStory, SystemChecker, ThemeModifier 10 | - Version: 0.2 11 | RequiredApiVersion: 2.0.0 12 | ReleaseDate: 2021-11-02 13 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.2/playnite-defaultextend-theme_0_2.pthm 14 | Changelog: 15 | - Supported DuplicateHider 16 | - Version: 0.2.1 17 | RequiredApiVersion: 2.0.0 18 | ReleaseDate: 2021-11-27 19 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.2.1/playnite-defaultextend-theme_0_2_1.pthm 20 | Changelog: 21 | - Fixed minor issue with icon frame from ThemeModifier 22 | - Added icon for Indiegala in DuplicateHider 23 | - Version: 0.2.2 24 | RequiredApiVersion: 2.1.0 25 | ReleaseDate: 2021-11-27 26 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.2.2/playnite-defaultextend-theme_0_2_2.pthm 27 | Changelog: 28 | - Added new Playnite ComboBox filter 29 | - Fixed an issue with BackgroundChanger plugin 30 | - Version: 0.2.3 31 | RequiredApiVersion: 2.1.0 32 | ReleaseDate: 2021-11-27 33 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.2.3/playnite-defaultextend-theme_0_2_3.pthm 34 | Changelog: 35 | - Fixed an issue with BackgroundChanger plugin when is missing 36 | - Version: 0.3 37 | RequiredApiVersion: 2.1.0 38 | ReleaseDate: 2021-11-29 39 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.3/playnite-defaultextend-theme_0_3.pthm 40 | Changelog: 41 | - Added new options (with ThemeModifier) 42 | - Added new UI elements (based on eMixedNite) 43 | - WARNING! Completion status in ThemeModifier must be restart application to be applied 44 | - Version: 0.4 45 | RequiredApiVersion: 2.1.0 46 | ReleaseDate: 2021-12-22 47 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.4/playnite-defaultextend-theme_0_4.pthm 48 | Changelog: 49 | - Supported CheckDlc 50 | - Version: 0.5 51 | RequiredApiVersion: 2.1.0 52 | ReleaseDate: 2022-08-06 53 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v0.5/playnite-defaultextend-theme_0_5.pthm 54 | Changelog: 55 | - Fixed minor issues 56 | - UI tweaks 57 | - Added NewsViewer support 58 | - Added ExtraMetadataLoader support 59 | - Added Icons for DuplicateHider (Legacy Games, Riot) 60 | - Version: 1.0 61 | RequiredApiVersion: 2.3.0 62 | ReleaseDate: 2022-10-05 63 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v1.0/playnite-defaultextend-theme_1_0.pthm 64 | Changelog: 65 | - Updated for Playnite 10 66 | - Fixed minor issues 67 | - Version: 1.1 68 | RequiredApiVersion: 2.4.0 69 | ReleaseDate: 2022-12-14 70 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v1.1/playnite-defaultextend-theme_1_1.pthm 71 | Changelog: 72 | - Fixed UI issues 73 | - Added age rating icon (based from Reskin XBOXSX Ext by Dukobpa3) 74 | - Added option to display note in tab 75 | - Added PluginAgeRating 76 | - Version: 1.2 77 | RequiredApiVersion: 2.5.0 78 | ReleaseDate: 2023-05-03 79 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v1.2/playnite-defaultextend-theme_1_2.pthm 80 | Changelog: 81 | - Fixed minor issues 82 | - Added new options (with ThemeModifier) 83 | - Added Icons for DuplicateHider 84 | - Version: 1.3 85 | RequiredApiVersion: 2.6.0 86 | ReleaseDate: 2024-02-09 87 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v1.3/playnite-defaultextend-theme_1_3.pthm 88 | Changelog: 89 | - Fixed minor issues 90 | - Added new options (with ThemeModifier) 91 | - Added Icons for DuplicateHider 92 | - Added SteamReviewsViewer 93 | - Added icons in details (from darklinkpower) 94 | - Added GameRelations support 95 | - Version: 1.4 96 | RequiredApiVersion: 2.6.0 97 | ReleaseDate: 2024-05-15 98 | PackageUrl: https://github.com/Lacro59/playnite-defaultextend-theme/releases/download/v1.4/playnite-defaultextend-theme_1_4.pthm 99 | Changelog: 100 | - Fixed minor issues 101 | - Added new options (with ThemeModifier) 102 | - Added PlayerActivities element 103 | - UI optimizations 104 | - Added new ScreenshotsVisualizer element -------------------------------------------------------------------------------- /source/CustomControls/FilterSelectionBox.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 11 | 12 | 13 | 14 | 17 | 18 | 23 | 24 | 28 | 29 | 40 | 41 | 42 | 44 | 60 | 63 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 76 | 77 | 82 | 83 | 88 | 89 | 94 | -------------------------------------------------------------------------------- /source/DefaultControls/ListBox.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 35 | 36 | 83 | -------------------------------------------------------------------------------- /source/CustomControls/SliderEx.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 17 | 18 | 84 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | [Originals]/ 5 | 6 | # User-specific files 7 | *.suo 8 | *.user 9 | *.userosscache 10 | *.sln.docstates 11 | 12 | # User-specific files (MonoDevelop/Xamarin Studio) 13 | *.userprefs 14 | 15 | # Build results 16 | [Dd]ebug/ 17 | [Dd]ebugPublic/ 18 | [Rr]elease/ 19 | [Rr]eleases/ 20 | x64/ 21 | x86/ 22 | bld/ 23 | [Bb]in/ 24 | [Oo]bj/ 25 | [Ll]og/ 26 | 27 | # Visual Studio 2015 cache/options directory 28 | .vs/ 29 | # Uncomment if you have tasks that create the project's static files in wwwroot 30 | #wwwroot/ 31 | 32 | # MSTest test Results 33 | [Tt]est[Rr]esult*/ 34 | [Bb]uild[Ll]og.* 35 | 36 | # NUNIT 37 | *.VisualState.xml 38 | TestResult.xml 39 | 40 | # Build Results of an ATL Project 41 | [Dd]ebugPS/ 42 | [Rr]eleasePS/ 43 | dlldata.c 44 | 45 | # DNX 46 | project.lock.json 47 | project.fragment.lock.json 48 | artifacts/ 49 | 50 | *_i.c 51 | *_p.c 52 | *_i.h 53 | *.ilk 54 | *.meta 55 | *.obj 56 | *.pch 57 | *.pdb 58 | *.pgc 59 | *.pgd 60 | *.rsp 61 | *.sbr 62 | *.tlb 63 | *.tli 64 | *.tlh 65 | *.tmp 66 | *.tmp_proj 67 | *.log 68 | *.vspscc 69 | *.vssscc 70 | .builds 71 | *.pidb 72 | *.svclog 73 | *.scc 74 | 75 | # Chutzpah Test files 76 | _Chutzpah* 77 | 78 | # Visual C++ cache files 79 | ipch/ 80 | *.aps 81 | *.ncb 82 | *.opendb 83 | *.opensdf 84 | *.sdf 85 | *.cachefile 86 | *.VC.db 87 | *.VC.VC.opendb 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | *.sap 94 | 95 | # TFS 2012 Local Workspace 96 | $tf/ 97 | 98 | # Guidance Automation Toolkit 99 | *.gpState 100 | 101 | # ReSharper is a .NET coding add-in 102 | _ReSharper*/ 103 | *.[Rr]e[Ss]harper 104 | *.DotSettings.user 105 | 106 | # JustCode is a .NET coding add-in 107 | .JustCode 108 | 109 | # TeamCity is a build add-in 110 | _TeamCity* 111 | 112 | # DotCover is a Code Coverage Tool 113 | *.dotCover 114 | 115 | # NCrunch 116 | _NCrunch_* 117 | .*crunch*.local.xml 118 | nCrunchTemp_* 119 | 120 | # MightyMoose 121 | *.mm.* 122 | AutoTest.Net/ 123 | 124 | # Web workbench (sass) 125 | .sass-cache/ 126 | 127 | # Installshield output folder 128 | [Ee]xpress/ 129 | 130 | # DocProject is a documentation generator add-in 131 | DocProject/buildhelp/ 132 | DocProject/Help/*.HxT 133 | DocProject/Help/*.HxC 134 | DocProject/Help/*.hhc 135 | DocProject/Help/*.hhk 136 | DocProject/Help/*.hhp 137 | DocProject/Help/Html2 138 | DocProject/Help/html 139 | 140 | # Click-Once directory 141 | publish/ 142 | 143 | # Publish Web Output 144 | *.[Pp]ublish.xml 145 | *.azurePubxml 146 | # TODO: Comment the next line if you want to checkin your web deploy settings 147 | # but database connection strings (with potential passwords) will be unencrypted 148 | *.pubxml 149 | *.publishproj 150 | 151 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 152 | # checkin your Azure Web App publish settings, but sensitive information contained 153 | # in these scripts will be unencrypted 154 | PublishScripts/ 155 | 156 | # NuGet Packages 157 | *.nupkg 158 | # The packages folder can be ignored because of Package Restore 159 | **/packages/* 160 | # except build/, which is used as an MSBuild target. 161 | !**/packages/build/ 162 | # Uncomment if necessary however generally it will be regenerated when needed 163 | #!**/packages/repositories.config 164 | # NuGet v3's project.json files produces more ignoreable files 165 | *.nuget.props 166 | *.nuget.targets 167 | 168 | # Microsoft Azure Build Output 169 | csx/ 170 | *.build.csdef 171 | 172 | # Microsoft Azure Emulator 173 | ecf/ 174 | rcf/ 175 | 176 | # Windows Store app package directories and files 177 | AppPackages/ 178 | BundleArtifacts/ 179 | Package.StoreAssociation.xml 180 | _pkginfo.txt 181 | 182 | # Visual Studio cache files 183 | # files ending in .cache can be ignored 184 | *.[Cc]ache 185 | # but keep track of directories ending in .cache 186 | !*.[Cc]ache/ 187 | 188 | # Others 189 | ClientBin/ 190 | ~$* 191 | *~ 192 | *.dbmdl 193 | *.dbproj.schemaview 194 | *.pfx 195 | *.publishsettings 196 | node_modules/ 197 | orleans.codegen.cs 198 | 199 | # Since there are multiple workflows, uncomment next line to ignore bower_components 200 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 201 | #bower_components/ 202 | 203 | # RIA/Silverlight projects 204 | Generated_Code/ 205 | 206 | # Backup & report files from converting an old project file 207 | # to a newer Visual Studio version. Backup files are not needed, 208 | # because we have git ;-) 209 | _UpgradeReport_Files/ 210 | Backup*/ 211 | UpgradeLog*.XML 212 | UpgradeLog*.htm 213 | 214 | # SQL Server files 215 | *.mdf 216 | *.ldf 217 | 218 | # Business Intelligence projects 219 | *.rdl.data 220 | *.bim.layout 221 | *.bim_*.settings 222 | 223 | # Microsoft Fakes 224 | FakesAssemblies/ 225 | 226 | # GhostDoc plugin setting file 227 | *.GhostDoc.xml 228 | 229 | # Node.js Tools for Visual Studio 230 | .ntvs_analysis.dat 231 | 232 | # Visual Studio 6 build log 233 | *.plg 234 | 235 | # Visual Studio 6 workspace options file 236 | *.opt 237 | 238 | # Visual Studio LightSwitch build output 239 | **/*.HTMLClient/GeneratedArtifacts 240 | **/*.DesktopClient/GeneratedArtifacts 241 | **/*.DesktopClient/ModelManifest.xml 242 | **/*.Server/GeneratedArtifacts 243 | **/*.Server/ModelManifest.xml 244 | _Pvt_Extensions 245 | 246 | # Paket dependency manager 247 | .paket/paket.exe 248 | paket-files/ 249 | 250 | # FAKE - F# Make 251 | .fake/ 252 | 253 | # JetBrains Rider 254 | .idea/ 255 | *.sln.iml 256 | 257 | # CodeRush 258 | .cr/ 259 | 260 | # Visual Studio Code stuff 261 | .vscode/ 262 | -------------------------------------------------------------------------------- /source/DefaultControls/Expander.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 50 | 51 | 84 | -------------------------------------------------------------------------------- /source/DefaultControls/Slider.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 22 | 23 | 89 | -------------------------------------------------------------------------------- /source/Views/FilterPanelView.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 15 | 16 | 24 | 25 | 29 | 30 | 33 | 34 | 37 | 38 | 41 | 42 | 49 | 50 | 68 | 69 | 70 | 71 |