This commit is contained in:
Korbs 2024-09-03 03:12:05 -04:00
parent f608a91730
commit 7b57b1b12c
21 changed files with 39 additions and 49 deletions

View file

@ -1,41 +1,41 @@
## To Do
- [ ] i18n
- [x] API
- [ ] API
- [ ] Languages
- [x] English
- [ ] English
- [ ] Japanese
- [ ] French
- [ ] Spanish
- [ ] Russian
- [x] Data
- [x] Track Events (Users should be opted-out by default, OpenPanel will be used)
- [x] Make privacy policy adaptive
- [x] Mobile Support
- [ ] Server Configuration (.env)
- [ ] Data
- [ ] Track Events
- [ ] Make privacy policy adaptive
- [ ] Mobile Support
- [ ] Server Configuration
- [ ] Quality
- [ ] Allow 1080p
- [ ] Allow 4K
- [ ] Allow 8K
- [ ] Account System (Based on [Account System Demo](https://ark.sudovanilla.org/MinPluto/Account-System-Demo))
- [x] Use Supabase Library
- [ ] Account System
- [ ] Use Supabase Library
- [ ] Create Pages:
- [ ] Subscription Feed
- [ ] History (Maybe, maybe not)
- [x] Login
- [x] Register
- [x] Account
- [ ] Login
- [ ] Register
- [ ] Account
- [ ] Preferences
- [ ] Delete
- [ ] Anomymous Account Creation
- [x] Email Confirmation Code
- [ ] Email Confirmation Code
- [ ] Ability to:
- [ ] Update Data
- [x] Username
- [ ] Username
- [ ] Email
- [ ] Pasword
- [ ] Delete Account
- [ ] API
- [x] `/api/update/name`
- [ ] `/api/update/name`
- [ ] `/api/update/email`
- [ ] `/api/update/password`
- [ ] `/api/update/preference/ui/theme`
@ -48,17 +48,17 @@
- [ ] `/api/update/preference/instance/invidious/data`
- [ ] `/api/update/preference/instance/safetwitch/media`
- [ ] `/api/update/preference/instance/safetwitch/data`
- [x] `/api/auth/login`
- [x] `/api/auth/register`
- [ ] `/api/auth/login`
- [ ] `/api/auth/register`
- [ ] `/api/auth/delete`
- [x] `/api/auth/confirm`
- [x] `/api/auth/logout`
- [ ] `/api/auth/confirm`
- [ ] `/api/auth/logout`
- [ ] `/api/anon/create`
- [ ] `/api/anon/delete`
- [ ] `/api/anon/signout`
- [ ] `/api/subscription/add`
- [ ] `/api/subscription/remove`
- [ ] Revamp Design and Layout ([UI Library Repo](https://ark.sudovanilla.org/MinPluto/UI-Library/))
- [ ] Revamp Design and Layout
- [ ] Use Header over Sidebar
- [ ] Generic
- [ ] Dropdown
@ -91,24 +91,24 @@
- [ ] Discovery Pages
- [ ] Animation
- [ ] Automotive
- [x] Comedy
- [ ] Comedy
- [ ] Courses
- [ ] Educational
- [ ] Family Friendly
- [ ] Fashion
- [ ] Fitness
- [ ] Food
- [x] Games
- [ ] Games
- [ ] Music
- [ ] News
- [ ] Podcasts
- [ ] Science
- [ ] Sports
- [x] Tech
- [ ] Tech
- [ ] Web Series
- [ ] Twitch Support
- [x] API
- [x] Video Player HLS Support (Required to play streams)
- [ ] API
- [ ] Video Player HLS Support
- [ ] Polycentric Chat
- [ ] Categories
- [ ] Games
@ -128,12 +128,12 @@
- [ ] Search
- [ ] Revamp Experience
- [ ] Filters
- [x] Auto Complete
- [ ] Auto Complete
- [ ] Video Player
- [x] Dash Format (1080p/4K/8K)
- [ ] Dash Format
- [ ] 360° Support
- [ ] Mobile Gestures
- [x] Embed Page
- [ ] Embed Page
- [ ] Download
- [ ] Share
- [ ] Report
@ -146,8 +146,6 @@
- [ ] Theater Mode
- [ ] Cast
- [ ] Video Page
- [ ] ~~Important Infomation Card ([Example](https://img.sudovanilla.org/pXqzT10.png))~~ Controversial, do not proceed
- [ ] Viewers Note (Like Community Notes, in [experimental phase at YouTube](https://blog.youtube/news-and-events/new-ways-to-offer-viewers-more-context/))
- [ ] Toggle:
- [ ] Audio Only
- [ ] Autoplay

View file

@ -4,13 +4,13 @@
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
"@components/*": ["./web/src/components/*"],
"@data/*": ["./web/src/tools/data/*"],
"@layouts/*": ["./web/src/layouts/*"],
"@library/*": ["./web/src/tools/library/*"],
"@player/*": ["./web/src/components/video-player/*"],
"@styles/*": ["./web/src/styles/*"],
"@utils/*": ["./web/src/tools/utilities/*"]
"@components/*": ["./web/components/*"],
"@data/*": ["./web/tools/data/*"],
"@layouts/*": ["./web/layouts/*"],
"@library/*": ["./web/tools/library/*"],
"@player/*": ["./web/components/video-player/*"],
"@styles/*": ["./web/styles/*"],
"@utils/*": ["./web/tools/utilities/*"]
}
}
}

View file

@ -19,8 +19,8 @@ export default defineConfig({
host: true
},
// Use Server-Side Rendering
output: 'server',
adapter: bun(),
output: 'server',
// Experimental
experimental: {
clientPrerender: true,
@ -32,15 +32,7 @@ export default defineConfig({
defaultStrategy: "viewport"
},
// Security and Other Options
devToolbar: {
enabled: false
},
security: {
checkOrigin: true
},
vite: {
server: {
hmr: false // Auto Reload
}
}
devToolbar: {enabled: false},
security: {checkOrigin: true},
vite: {server: {hmr: false}}
})

View file

View file

View file

View file

View file

View file

View file

View file

View file

View file

View file

View file

View file

View file

0
web/pages/index.astro Normal file
View file