├── .gitignore ├── LICENSE ├── README.md ├── cart └── getdismoney-community.js ├── config.xml ├── config ├── copyConfig.js └── picoDeployConfig.json ├── docs ├── EXAMPLE_PROJECTS.md ├── README.md ├── main.greenworks.js └── readmeAssets │ ├── greenworksLayout.png │ ├── picoDeployAndroidExample.gif │ ├── picoDeployAndroidExample.mov │ ├── picoDeployCartExport.gif │ ├── picoDeployCartExport.mov │ ├── picoDeployElectronBuild.gif │ └── picoDeployElectronBuild.mov ├── ionic-android-deploy.sh ├── ionic.config.json ├── main.js ├── package.json ├── picoDeployConfig.json ├── resources ├── android │ ├── icon │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ └── drawable-xxxhdpi-icon.png │ └── splash │ │ ├── drawable-land-hdpi-screen.png │ │ ├── drawable-land-ldpi-screen.png │ │ ├── drawable-land-mdpi-screen.png │ │ ├── drawable-land-xhdpi-screen.png │ │ ├── drawable-land-xxhdpi-screen.png │ │ ├── drawable-land-xxxhdpi-screen.png │ │ ├── drawable-port-hdpi-screen.png │ │ ├── drawable-port-ldpi-screen.png │ │ ├── drawable-port-mdpi-screen.png │ │ ├── drawable-port-xhdpi-screen.png │ │ ├── drawable-port-xxhdpi-screen.png │ │ └── drawable-port-xxxhdpi-screen.png ├── icon.icns ├── icon.ico ├── icon.png ├── icon.png.md5 ├── icons │ └── 512x512.png ├── ionic_icon.png ├── ionic_splash.png ├── ios │ ├── icon │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ └── splash │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape@~ipadpro.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait@~ipadpro.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~iphone.png │ │ └── Default~iphone.png ├── splash.png └── splash.png.md5 ├── src ├── app │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ └── main.ts ├── assets │ ├── 3pLibs │ │ └── pico8gamepad │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pico8gamepad.js │ ├── fonts │ │ └── PICO-8MonoUpper.ttf │ ├── gamepad │ │ ├── materialButton.svg │ │ ├── materialDpad.svg │ │ ├── materialGear.svg │ │ └── materialPause.svg │ ├── icon │ │ └── favicon.ico │ └── picomedia │ │ ├── splash.gif │ │ └── splash.mp4 ├── components │ ├── cart │ │ ├── cart.html │ │ ├── cart.scss │ │ └── cart.ts │ ├── components.module.ts │ ├── gamepad │ │ ├── gamepad.html │ │ ├── gamepad.scss │ │ └── gamepad.ts │ ├── picomedia │ │ ├── picomedia.html │ │ ├── picomedia.scss │ │ └── picomedia.ts │ └── picosplash │ │ ├── picosplash.html │ │ ├── picosplash.scss │ │ └── picosplash.ts ├── index.html ├── manifest.json ├── pages │ └── home │ │ ├── home.html │ │ ├── home.module.ts │ │ ├── home.scss │ │ ├── home.ts │ │ └── settings │ │ ├── settings.html │ │ ├── settings.module.ts │ │ ├── settings.scss │ │ └── settings.ts ├── providers │ ├── pico-db │ │ └── pico-db.ts │ ├── platform-sdk-wrapper │ │ └── platform-sdk-wrapper.ts │ └── settings │ │ └── settings.ts ├── service-worker.js └── theme │ └── variables.scss ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/README.md -------------------------------------------------------------------------------- /cart/getdismoney-community.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/cart/getdismoney-community.js -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/config.xml -------------------------------------------------------------------------------- /config/copyConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/config/copyConfig.js -------------------------------------------------------------------------------- /config/picoDeployConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/config/picoDeployConfig.json -------------------------------------------------------------------------------- /docs/EXAMPLE_PROJECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/EXAMPLE_PROJECTS.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/main.greenworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/main.greenworks.js -------------------------------------------------------------------------------- /docs/readmeAssets/greenworksLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/readmeAssets/greenworksLayout.png -------------------------------------------------------------------------------- /docs/readmeAssets/picoDeployAndroidExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/readmeAssets/picoDeployAndroidExample.gif -------------------------------------------------------------------------------- /docs/readmeAssets/picoDeployAndroidExample.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/readmeAssets/picoDeployAndroidExample.mov -------------------------------------------------------------------------------- /docs/readmeAssets/picoDeployCartExport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/readmeAssets/picoDeployCartExport.gif -------------------------------------------------------------------------------- /docs/readmeAssets/picoDeployCartExport.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/readmeAssets/picoDeployCartExport.mov -------------------------------------------------------------------------------- /docs/readmeAssets/picoDeployElectronBuild.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/readmeAssets/picoDeployElectronBuild.gif -------------------------------------------------------------------------------- /docs/readmeAssets/picoDeployElectronBuild.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/docs/readmeAssets/picoDeployElectronBuild.mov -------------------------------------------------------------------------------- /ionic-android-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/ionic-android-deploy.sh -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/ionic.config.json -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/package.json -------------------------------------------------------------------------------- /picoDeployConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/picoDeployConfig.json -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icon.png.md5: -------------------------------------------------------------------------------- 1 | 1a762d7146108cbbc470135a9f14bc3e -------------------------------------------------------------------------------- /resources/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/icons/512x512.png -------------------------------------------------------------------------------- /resources/ionic_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ionic_icon.png -------------------------------------------------------------------------------- /resources/ionic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ionic_splash.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-40@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-Landscape@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-Portrait@~ipadpro.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/resources/splash.png -------------------------------------------------------------------------------- /resources/splash.png.md5: -------------------------------------------------------------------------------- 1 | 1f925ce12acdf00a850c0890e432d898 -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/app/app.html -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/assets/3pLibs/pico8gamepad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/3pLibs/pico8gamepad/LICENSE -------------------------------------------------------------------------------- /src/assets/3pLibs/pico8gamepad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/3pLibs/pico8gamepad/README.md -------------------------------------------------------------------------------- /src/assets/3pLibs/pico8gamepad/pico8gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/3pLibs/pico8gamepad/pico8gamepad.js -------------------------------------------------------------------------------- /src/assets/fonts/PICO-8MonoUpper.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/fonts/PICO-8MonoUpper.ttf -------------------------------------------------------------------------------- /src/assets/gamepad/materialButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/gamepad/materialButton.svg -------------------------------------------------------------------------------- /src/assets/gamepad/materialDpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/gamepad/materialDpad.svg -------------------------------------------------------------------------------- /src/assets/gamepad/materialGear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/gamepad/materialGear.svg -------------------------------------------------------------------------------- /src/assets/gamepad/materialPause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/gamepad/materialPause.svg -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/picomedia/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/picomedia/splash.gif -------------------------------------------------------------------------------- /src/assets/picomedia/splash.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/assets/picomedia/splash.mp4 -------------------------------------------------------------------------------- /src/components/cart/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/cart/cart.html -------------------------------------------------------------------------------- /src/components/cart/cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/cart/cart.scss -------------------------------------------------------------------------------- /src/components/cart/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/cart/cart.ts -------------------------------------------------------------------------------- /src/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/components.module.ts -------------------------------------------------------------------------------- /src/components/gamepad/gamepad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/gamepad/gamepad.html -------------------------------------------------------------------------------- /src/components/gamepad/gamepad.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/gamepad/gamepad.scss -------------------------------------------------------------------------------- /src/components/gamepad/gamepad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/gamepad/gamepad.ts -------------------------------------------------------------------------------- /src/components/picomedia/picomedia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/picomedia/picomedia.html -------------------------------------------------------------------------------- /src/components/picomedia/picomedia.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/picomedia/picomedia.scss -------------------------------------------------------------------------------- /src/components/picomedia/picomedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/picomedia/picomedia.ts -------------------------------------------------------------------------------- /src/components/picosplash/picosplash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/picosplash/picosplash.html -------------------------------------------------------------------------------- /src/components/picosplash/picosplash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/picosplash/picosplash.scss -------------------------------------------------------------------------------- /src/components/picosplash/picosplash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/components/picosplash/picosplash.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/home.html -------------------------------------------------------------------------------- /src/pages/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/home.module.ts -------------------------------------------------------------------------------- /src/pages/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/home.scss -------------------------------------------------------------------------------- /src/pages/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/home.ts -------------------------------------------------------------------------------- /src/pages/home/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/settings/settings.html -------------------------------------------------------------------------------- /src/pages/home/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/settings/settings.module.ts -------------------------------------------------------------------------------- /src/pages/home/settings/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/settings/settings.scss -------------------------------------------------------------------------------- /src/pages/home/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/pages/home/settings/settings.ts -------------------------------------------------------------------------------- /src/providers/pico-db/pico-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/providers/pico-db/pico-db.ts -------------------------------------------------------------------------------- /src/providers/platform-sdk-wrapper/platform-sdk-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/providers/platform-sdk-wrapper/platform-sdk-wrapper.ts -------------------------------------------------------------------------------- /src/providers/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/providers/settings/settings.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/picoDeploy/HEAD/tslint.json --------------------------------------------------------------------------------