├── .github ├── FUNDING.yml └── workflows │ └── build.yaml ├── .gitignore ├── App.xaml ├── Constants.cs ├── Converters.cs ├── FakeGame.cs ├── FileDeDuplicator.cs ├── HtmlExporterPlugin.cs ├── HtmlExporterPlugin.csproj ├── HtmlExporterPlugin.sln ├── HtmlExporterPlugin.yaml ├── HtmlExporterPluginSettings.cs ├── HtmlExporterPluginSettingsView.xaml ├── HtmlExporterPluginSettingsView.xaml.cs ├── ImageOptions.cs ├── ImageOptionsView.xaml ├── ImageOptionsView.xaml.cs ├── ImageProcessRunner.cs ├── LICENSE ├── Localization.cs ├── Localization ├── LocSource.xaml ├── af_ZA.xaml ├── ar_SA.xaml ├── ca_ES.xaml ├── cs_CZ.xaml ├── da_DK.xaml ├── de_DE.xaml ├── el_GR.xaml ├── en_US.xaml ├── eo_UY.xaml ├── es_ES.xaml ├── et_EE.xaml ├── fa_IR.xaml ├── fi_FI.xaml ├── fr_FR.xaml ├── he_IL.xaml ├── hr_HR.xaml ├── hu_HU.xaml ├── id_ID.xaml ├── it_IT.xaml ├── ja_JP.xaml ├── ko_KR.xaml ├── lt_LT.xaml ├── nl_NL.xaml ├── no_NO.xaml ├── pl_PL.xaml ├── pt_BR.xaml ├── pt_PT.xaml ├── ro_RO.xaml ├── ru_RU.xaml ├── sk_SK.xaml ├── sr_SP.xaml ├── sv_SE.xaml ├── tr_TR.xaml ├── uk_UA.xaml ├── vi_VN.xaml ├── zh_CN.xaml └── zh_TW.xaml ├── NameComparer.cs ├── OriginalGameImageData.cs ├── OriginalImageDataFile.cs ├── PageObject.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── UniqueList.cs ├── Utils.cs ├── _config.yml ├── extension.yaml ├── icon.png ├── packages.config ├── screenshots ├── grid.png ├── grid_thumb.png ├── imagesettings.png ├── imagesettings_thumb.png ├── list.png ├── list_thumb.png ├── settings.png ├── settings_thumb.png ├── table.png └── table_thumb.png ├── templates ├── default combobox quicklinks │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt ├── default list combobox quicklinks │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt ├── default list text combobox quicklinks │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt ├── default list text │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt ├── default list │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt ├── default table text │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt ├── default table │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt └── default │ ├── gamecard.txt │ ├── gamecardsheader.txt │ ├── gamecardsheadergrouped.txt │ ├── gamedetails.txt │ ├── gamedetailsagerating.txt │ ├── gamedetailscategory.txt │ ├── gamedetailsdeveloper.txt │ ├── gamedetailsfeature.txt │ ├── gamedetailsgenre.txt │ ├── gamedetailsplatform.txt │ ├── gamedetailspublisher.txt │ ├── gamedetailsregion.txt │ ├── gamedetailstag.txt │ ├── gamedetailsweblink.txt │ ├── menuentry.txt │ ├── menuentryheader.txt │ ├── page.txt │ ├── quicklink.txt │ └── quicklinksheader.txt └── webdata ├── manifest.webmanifest └── web-icon.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: joyrider3774 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/App.xaml -------------------------------------------------------------------------------- /Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Constants.cs -------------------------------------------------------------------------------- /Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Converters.cs -------------------------------------------------------------------------------- /FakeGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/FakeGame.cs -------------------------------------------------------------------------------- /FileDeDuplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/FileDeDuplicator.cs -------------------------------------------------------------------------------- /HtmlExporterPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/HtmlExporterPlugin.cs -------------------------------------------------------------------------------- /HtmlExporterPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/HtmlExporterPlugin.csproj -------------------------------------------------------------------------------- /HtmlExporterPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/HtmlExporterPlugin.sln -------------------------------------------------------------------------------- /HtmlExporterPlugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/HtmlExporterPlugin.yaml -------------------------------------------------------------------------------- /HtmlExporterPluginSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/HtmlExporterPluginSettings.cs -------------------------------------------------------------------------------- /HtmlExporterPluginSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/HtmlExporterPluginSettingsView.xaml -------------------------------------------------------------------------------- /HtmlExporterPluginSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/HtmlExporterPluginSettingsView.xaml.cs -------------------------------------------------------------------------------- /ImageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/ImageOptions.cs -------------------------------------------------------------------------------- /ImageOptionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/ImageOptionsView.xaml -------------------------------------------------------------------------------- /ImageOptionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/ImageOptionsView.xaml.cs -------------------------------------------------------------------------------- /ImageProcessRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/ImageProcessRunner.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/LICENSE -------------------------------------------------------------------------------- /Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization.cs -------------------------------------------------------------------------------- /Localization/LocSource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/LocSource.xaml -------------------------------------------------------------------------------- /Localization/af_ZA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/af_ZA.xaml -------------------------------------------------------------------------------- /Localization/ar_SA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/ar_SA.xaml -------------------------------------------------------------------------------- /Localization/ca_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/ca_ES.xaml -------------------------------------------------------------------------------- /Localization/cs_CZ.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/cs_CZ.xaml -------------------------------------------------------------------------------- /Localization/da_DK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/da_DK.xaml -------------------------------------------------------------------------------- /Localization/de_DE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/de_DE.xaml -------------------------------------------------------------------------------- /Localization/el_GR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/el_GR.xaml -------------------------------------------------------------------------------- /Localization/en_US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/en_US.xaml -------------------------------------------------------------------------------- /Localization/eo_UY.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/eo_UY.xaml -------------------------------------------------------------------------------- /Localization/es_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/es_ES.xaml -------------------------------------------------------------------------------- /Localization/et_EE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/et_EE.xaml -------------------------------------------------------------------------------- /Localization/fa_IR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/fa_IR.xaml -------------------------------------------------------------------------------- /Localization/fi_FI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/fi_FI.xaml -------------------------------------------------------------------------------- /Localization/fr_FR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/fr_FR.xaml -------------------------------------------------------------------------------- /Localization/he_IL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/he_IL.xaml -------------------------------------------------------------------------------- /Localization/hr_HR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/hr_HR.xaml -------------------------------------------------------------------------------- /Localization/hu_HU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/hu_HU.xaml -------------------------------------------------------------------------------- /Localization/id_ID.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/id_ID.xaml -------------------------------------------------------------------------------- /Localization/it_IT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/it_IT.xaml -------------------------------------------------------------------------------- /Localization/ja_JP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/ja_JP.xaml -------------------------------------------------------------------------------- /Localization/ko_KR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/ko_KR.xaml -------------------------------------------------------------------------------- /Localization/lt_LT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/lt_LT.xaml -------------------------------------------------------------------------------- /Localization/nl_NL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/nl_NL.xaml -------------------------------------------------------------------------------- /Localization/no_NO.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/no_NO.xaml -------------------------------------------------------------------------------- /Localization/pl_PL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/pl_PL.xaml -------------------------------------------------------------------------------- /Localization/pt_BR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/pt_BR.xaml -------------------------------------------------------------------------------- /Localization/pt_PT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/pt_PT.xaml -------------------------------------------------------------------------------- /Localization/ro_RO.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/ro_RO.xaml -------------------------------------------------------------------------------- /Localization/ru_RU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/ru_RU.xaml -------------------------------------------------------------------------------- /Localization/sk_SK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/sk_SK.xaml -------------------------------------------------------------------------------- /Localization/sr_SP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/sr_SP.xaml -------------------------------------------------------------------------------- /Localization/sv_SE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/sv_SE.xaml -------------------------------------------------------------------------------- /Localization/tr_TR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/tr_TR.xaml -------------------------------------------------------------------------------- /Localization/uk_UA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/uk_UA.xaml -------------------------------------------------------------------------------- /Localization/vi_VN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/vi_VN.xaml -------------------------------------------------------------------------------- /Localization/zh_CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/zh_CN.xaml -------------------------------------------------------------------------------- /Localization/zh_TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Localization/zh_TW.xaml -------------------------------------------------------------------------------- /NameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/NameComparer.cs -------------------------------------------------------------------------------- /OriginalGameImageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/OriginalGameImageData.cs -------------------------------------------------------------------------------- /OriginalImageDataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/OriginalImageDataFile.cs -------------------------------------------------------------------------------- /PageObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/PageObject.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/README.md -------------------------------------------------------------------------------- /UniqueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/UniqueList.cs -------------------------------------------------------------------------------- /Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/Utils.cs -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/_config.yml -------------------------------------------------------------------------------- /extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/extension.yaml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/icon.png -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/packages.config -------------------------------------------------------------------------------- /screenshots/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/grid.png -------------------------------------------------------------------------------- /screenshots/grid_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/grid_thumb.png -------------------------------------------------------------------------------- /screenshots/imagesettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/imagesettings.png -------------------------------------------------------------------------------- /screenshots/imagesettings_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/imagesettings_thumb.png -------------------------------------------------------------------------------- /screenshots/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/list.png -------------------------------------------------------------------------------- /screenshots/list_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/list_thumb.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /screenshots/settings_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/settings_thumb.png -------------------------------------------------------------------------------- /screenshots/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/table.png -------------------------------------------------------------------------------- /screenshots/table_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/screenshots/table_thumb.png -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamecard.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamecardsheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamecardsheader.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamecardsheadergrouped.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetails.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/menuentry.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/page.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/quicklink.txt -------------------------------------------------------------------------------- /templates/default combobox quicklinks/quicklinksheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default combobox quicklinks/quicklinksheader.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamecard.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamecardsheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamecardsheadergrouped.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetails.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/menuentry.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/page.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/quicklink.txt -------------------------------------------------------------------------------- /templates/default list combobox quicklinks/quicklinksheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list combobox quicklinks/quicklinksheader.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamecard.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamecardsheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamecardsheadergrouped.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetails.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/menuentry.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/page.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/quicklink.txt -------------------------------------------------------------------------------- /templates/default list text combobox quicklinks/quicklinksheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text combobox quicklinks/quicklinksheader.txt -------------------------------------------------------------------------------- /templates/default list text/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamecard.txt -------------------------------------------------------------------------------- /templates/default list text/gamecardsheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default list text/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamecardsheadergrouped.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetails.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default list text/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default list text/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/menuentry.txt -------------------------------------------------------------------------------- /templates/default list text/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default list text/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/page.txt -------------------------------------------------------------------------------- /templates/default list text/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/quicklink.txt -------------------------------------------------------------------------------- /templates/default list text/quicklinksheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list text/quicklinksheader.txt -------------------------------------------------------------------------------- /templates/default list/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamecard.txt -------------------------------------------------------------------------------- /templates/default list/gamecardsheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default list/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamecardsheadergrouped.txt -------------------------------------------------------------------------------- /templates/default list/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetails.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default list/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default list/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/menuentry.txt -------------------------------------------------------------------------------- /templates/default list/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default list/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/page.txt -------------------------------------------------------------------------------- /templates/default list/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/quicklink.txt -------------------------------------------------------------------------------- /templates/default list/quicklinksheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default list/quicklinksheader.txt -------------------------------------------------------------------------------- /templates/default table text/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamecard.txt -------------------------------------------------------------------------------- /templates/default table text/gamecardsheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default table text/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- 1 | %gamecards% -------------------------------------------------------------------------------- /templates/default table text/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetails.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default table text/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default table text/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/menuentry.txt -------------------------------------------------------------------------------- /templates/default table text/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default table text/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/page.txt -------------------------------------------------------------------------------- /templates/default table text/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table text/quicklink.txt -------------------------------------------------------------------------------- /templates/default table text/quicklinksheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default table/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamecard.txt -------------------------------------------------------------------------------- /templates/default table/gamecardsheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default table/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- 1 | %gamecards% -------------------------------------------------------------------------------- /templates/default table/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetails.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default table/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default table/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/menuentry.txt -------------------------------------------------------------------------------- /templates/default table/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default table/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/page.txt -------------------------------------------------------------------------------- /templates/default table/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default table/quicklink.txt -------------------------------------------------------------------------------- /templates/default table/quicklinksheader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/gamecard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamecard.txt -------------------------------------------------------------------------------- /templates/default/gamecardsheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamecardsheader.txt -------------------------------------------------------------------------------- /templates/default/gamecardsheadergrouped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamecardsheadergrouped.txt -------------------------------------------------------------------------------- /templates/default/gamedetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetails.txt -------------------------------------------------------------------------------- /templates/default/gamedetailsagerating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailsagerating.txt -------------------------------------------------------------------------------- /templates/default/gamedetailscategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailscategory.txt -------------------------------------------------------------------------------- /templates/default/gamedetailsdeveloper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailsdeveloper.txt -------------------------------------------------------------------------------- /templates/default/gamedetailsfeature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailsfeature.txt -------------------------------------------------------------------------------- /templates/default/gamedetailsgenre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailsgenre.txt -------------------------------------------------------------------------------- /templates/default/gamedetailsplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailsplatform.txt -------------------------------------------------------------------------------- /templates/default/gamedetailspublisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailspublisher.txt -------------------------------------------------------------------------------- /templates/default/gamedetailsregion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailsregion.txt -------------------------------------------------------------------------------- /templates/default/gamedetailstag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailstag.txt -------------------------------------------------------------------------------- /templates/default/gamedetailsweblink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/gamedetailsweblink.txt -------------------------------------------------------------------------------- /templates/default/menuentry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/menuentry.txt -------------------------------------------------------------------------------- /templates/default/menuentryheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/menuentryheader.txt -------------------------------------------------------------------------------- /templates/default/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/page.txt -------------------------------------------------------------------------------- /templates/default/quicklink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/quicklink.txt -------------------------------------------------------------------------------- /templates/default/quicklinksheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/templates/default/quicklinksheader.txt -------------------------------------------------------------------------------- /webdata/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/webdata/manifest.webmanifest -------------------------------------------------------------------------------- /webdata/web-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrider3774/Playnite_html_exporter/HEAD/webdata/web-icon.png --------------------------------------------------------------------------------