├── .gitignore ├── .vscode └── extensions.json ├── App_Resources ├── Android │ ├── app.gradle │ ├── before-plugins.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── res │ │ ├── drawable-hdpi │ │ ├── background.png │ │ ├── ic_launcher_foreground.png │ │ └── logo.png │ │ ├── drawable-ldpi │ │ ├── background.png │ │ ├── ic_launcher_foreground.png │ │ └── logo.png │ │ ├── drawable-mdpi │ │ ├── background.png │ │ ├── ic_launcher_foreground.png │ │ └── logo.png │ │ ├── drawable-nodpi │ │ └── splash_screen.xml │ │ ├── drawable-xhdpi │ │ ├── background.png │ │ ├── ic_launcher_foreground.png │ │ └── logo.png │ │ ├── drawable-xxhdpi │ │ ├── background.png │ │ ├── ic_launcher_foreground.png │ │ └── logo.png │ │ ├── drawable-xxxhdpi │ │ ├── background.png │ │ ├── ic_launcher_foreground.png │ │ └── logo.png │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── values-v29 │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ └── styles.xml └── iOS │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1024.png │ │ ├── icon-20.png │ │ ├── icon-20@2x.png │ │ ├── icon-20@3x.png │ │ ├── icon-29.png │ │ ├── icon-29@2x.png │ │ ├── icon-29@3x.png │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ └── icon-83.5@2x.png │ ├── Contents.json │ ├── LaunchScreen.AspectFill.imageset │ │ ├── Contents.json │ │ ├── LaunchScreen-AspectFill.png │ │ ├── LaunchScreen-AspectFill@2x.png │ │ └── LaunchScreen-AspectFill@3x.png │ └── LaunchScreen.Center.imageset │ │ ├── Contents.json │ │ ├── LaunchScreen-Center.png │ │ ├── LaunchScreen-Center@2x.png │ │ └── LaunchScreen-Center@3x.png │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── build.xcconfig ├── README.md ├── design ├── bg.afphoto ├── dots.afphoto ├── lines.afphoto ├── logo.afphoto ├── logo_exported.png └── top.afphoto ├── nativescript.config.ts ├── package.json ├── src ├── app.css ├── app.ts ├── assets │ ├── appicon.png │ ├── bg.jpg │ ├── dots.png │ ├── fa.css │ ├── lines.png │ └── top.png ├── components │ ├── Home.vue │ └── ProgressBar.vue ├── fonts │ ├── ChiKareGo2.ttf │ ├── PixelArial.ttf │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 └── utils │ └── AudioPlayer.ts ├── tailwind.config.js ├── tsconfig.json ├── types ├── poolparty.d.ts ├── references.d.ts └── shims.vue.d.ts └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /App_Resources/Android/before-plugins.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/before-plugins.gradle -------------------------------------------------------------------------------- /App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-ldpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-ldpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/README.md -------------------------------------------------------------------------------- /design/bg.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/design/bg.afphoto -------------------------------------------------------------------------------- /design/dots.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/design/dots.afphoto -------------------------------------------------------------------------------- /design/lines.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/design/lines.afphoto -------------------------------------------------------------------------------- /design/logo.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/design/logo.afphoto -------------------------------------------------------------------------------- /design/logo_exported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/design/logo_exported.png -------------------------------------------------------------------------------- /design/top.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/design/top.afphoto -------------------------------------------------------------------------------- /nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/nativescript.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/package.json -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/assets/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/assets/appicon.png -------------------------------------------------------------------------------- /src/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/assets/bg.jpg -------------------------------------------------------------------------------- /src/assets/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/assets/dots.png -------------------------------------------------------------------------------- /src/assets/fa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/assets/fa.css -------------------------------------------------------------------------------- /src/assets/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/assets/lines.png -------------------------------------------------------------------------------- /src/assets/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/assets/top.png -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/components/Home.vue -------------------------------------------------------------------------------- /src/components/ProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/components/ProgressBar.vue -------------------------------------------------------------------------------- /src/fonts/ChiKareGo2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/ChiKareGo2.ttf -------------------------------------------------------------------------------- /src/fonts/PixelArial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/PixelArial.ttf -------------------------------------------------------------------------------- /src/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/fonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /src/fonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/fonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /src/utils/AudioPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/src/utils/AudioPlayer.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/poolparty.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/types/poolparty.d.ts -------------------------------------------------------------------------------- /types/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /types/shims.vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/types/shims.vue.d.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewbieScripterRepo/PoolPartyFM/HEAD/webpack.config.js --------------------------------------------------------------------------------