├── .DS_Store ├── .gitignore ├── .idea ├── .gitignore ├── InuStreamWebsite.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE.txt ├── README.md ├── assets ├── .DS_Store ├── css │ └── main.css └── fonts │ ├── Inter-Black.ttf │ ├── Inter-Bold.ttf │ ├── Inter-ExtraBold.ttf │ ├── Inter-ExtraLight.ttf │ ├── Inter-Light.ttf │ ├── Inter-Medium.ttf │ ├── Inter-Regular.ttf │ ├── Inter-SemiBold.ttf │ ├── Inter-Thin.ttf │ ├── ZenMaruGothic-Black.ttf │ ├── ZenMaruGothic-Bold.ttf │ ├── ZenMaruGothic-Light.ttf │ ├── ZenMaruGothic-Medium.ttf │ ├── ZenMaruGothic-Regular.ttf │ └── stylesheet.css ├── components ├── Artplayer.vue └── episodeComponent.vue ├── images ├── .DS_Store ├── github-icon.png ├── homepage_temp.jpeg ├── info_page.png └── logo.png ├── nuxt.config.ts ├── package.json ├── pages ├── [...slug].vue ├── error.vue ├── index.vue ├── info │ ├── [id].vue │ └── oldInfoPage.vue ├── oldHomePage.vue ├── search │ └── [title].vue ├── stream │ └── [id] │ │ └── [name].vue ├── testing.vue └── watch │ └── [id] │ └── [name].vue ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ └── main.rs └── tauri.conf.json ├── static ├── .DS_Store └── favicon.ico ├── tailwind.config.js └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/InuStreamWebsite.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/.idea/InuStreamWebsite.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/fonts/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/Inter-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/ZenMaruGothic-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/ZenMaruGothic-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/ZenMaruGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/ZenMaruGothic-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/ZenMaruGothic-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/ZenMaruGothic-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/ZenMaruGothic-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/ZenMaruGothic-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/ZenMaruGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/ZenMaruGothic-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/assets/fonts/stylesheet.css -------------------------------------------------------------------------------- /components/Artplayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/components/Artplayer.vue -------------------------------------------------------------------------------- /components/episodeComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/components/episodeComponent.vue -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/github-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/images/github-icon.png -------------------------------------------------------------------------------- /images/homepage_temp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/images/homepage_temp.jpeg -------------------------------------------------------------------------------- /images/info_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/images/info_page.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/images/logo.png -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/package.json -------------------------------------------------------------------------------- /pages/[...slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/[...slug].vue -------------------------------------------------------------------------------- /pages/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/error.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/info/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/info/[id].vue -------------------------------------------------------------------------------- /pages/info/oldInfoPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/info/oldInfoPage.vue -------------------------------------------------------------------------------- /pages/oldHomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/oldHomePage.vue -------------------------------------------------------------------------------- /pages/search/[title].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/search/[title].vue -------------------------------------------------------------------------------- /pages/stream/[id]/[name].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/stream/[id]/[name].vue -------------------------------------------------------------------------------- /pages/testing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/testing.vue -------------------------------------------------------------------------------- /pages/watch/[id]/[name].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/pages/watch/[id]/[name].vue -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inumakieu/InuStreamWebsite/HEAD/tsconfig.json --------------------------------------------------------------------------------