├── .gitattributes ├── .github └── workflows │ └── update.yml ├── .gitignore ├── .index.html ├── .nojekyll ├── .vscode └── settings.json ├── 404.md ├── CNAME ├── DoNotAdd.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yaml ├── _includes └── favicon.html ├── android-chrome-192x192.png.PNG ├── browserconfig.xml ├── custom.css ├── docs └── CNAME ├── sidecommunity.json ├── site.webmanifest ├── staticApps ├── Retroarch.json ├── play.json └── template.json └── update.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/.index.html -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/404.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | community-apps.sidestore.io -------------------------------------------------------------------------------- /DoNotAdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/DoNotAdd.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/README.md -------------------------------------------------------------------------------- /_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/_config.yaml -------------------------------------------------------------------------------- /_includes/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/_includes/favicon.html -------------------------------------------------------------------------------- /android-chrome-192x192.png.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/android-chrome-192x192.png.PNG -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/browserconfig.xml -------------------------------------------------------------------------------- /custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/custom.css -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | community-apps.sidestore.io -------------------------------------------------------------------------------- /sidecommunity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/sidecommunity.json -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/site.webmanifest -------------------------------------------------------------------------------- /staticApps/Retroarch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/staticApps/Retroarch.json -------------------------------------------------------------------------------- /staticApps/play.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/staticApps/play.json -------------------------------------------------------------------------------- /staticApps/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/staticApps/template.json -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/Community-Source/HEAD/update.py --------------------------------------------------------------------------------