update
This commit is contained in:
parent
50a9cdcc04
commit
512fd61a53
4 changed files with 17 additions and 24 deletions
34
README.md
34
README.md
|
@ -7,13 +7,28 @@ ___
|
|||
|
||||
## To Do
|
||||
- [ ] i18n
|
||||
- [ ] API
|
||||
- [x] API
|
||||
- [ ] Languages
|
||||
- [x] English
|
||||
- [x] Japanese
|
||||
- [ ] French
|
||||
- [ ] Spanish
|
||||
- [x] Russian
|
||||
- [ ] Data
|
||||
- [ ] Track Events (Users should be opted-out by default, Aptabase will be used)
|
||||
- [ ] Make privacy policy adaptive
|
||||
- [ ] Twitch Support
|
||||
- [ ] API
|
||||
- [ ] Video Player HLS Support (Required to play streams)
|
||||
- [ ] Polycentric Chat
|
||||
- [ ] Categories
|
||||
- [ ] Games
|
||||
- [ ] Music
|
||||
- [ ] Just Chatting
|
||||
- [ ] IRL
|
||||
- [ ] Sports
|
||||
- [ ] Animtals
|
||||
- [ ] Creativity
|
||||
- [ ] Inline Player
|
||||
- [x] Mobile Support
|
||||
- [ ] Dedicated Redirect Page
|
||||
|
@ -25,7 +40,7 @@ ___
|
|||
- [ ] Video Player
|
||||
- [x] Dash Format (1080p/4K/8K)
|
||||
- [ ] Mobile Gestures
|
||||
- [ ] Embed Page
|
||||
- [x] Embed Page
|
||||
- [ ] Download
|
||||
- [ ] Share
|
||||
- [ ] Report
|
||||
|
@ -66,21 +81,6 @@ ___
|
|||
- [ ] Feed Page
|
||||
- [ ] Universal Feed (YouTube and Twitch)
|
||||
- [ ] Subscription Management
|
||||
- [ ] Twitch Support
|
||||
- [ ] API
|
||||
- [ ] Video Player HLS Support (Required to play streams)
|
||||
- [ ] Polycentric Chat
|
||||
- [ ] Categories
|
||||
- [ ] Games
|
||||
- [ ] Music
|
||||
- [ ] Just Chatting
|
||||
- [ ] IRL
|
||||
- [ ] Sports
|
||||
- [ ] Animtals
|
||||
- [ ] Creativity
|
||||
- [ ] Data
|
||||
- [ ] Track Events (Users should be opted-out by default, Aptabase will be used)
|
||||
- [ ] Make privacy policy adaptive
|
||||
|
||||
___
|
||||
|
||||
|
|
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
@ -2,10 +2,6 @@
|
|||
import i18next,{ t, changeLanguage } from "i18next";
|
||||
import Base from "@layouts/Default.astro";
|
||||
|
||||
import Dialog from '@components/Dialog.astro'
|
||||
|
||||
|
||||
|
||||
// Configuration
|
||||
import {
|
||||
DEFAULT_MEDIA_DATA_PROXY,
|
||||
|
|
|
@ -14,9 +14,6 @@ import Video from '@components/VideoItem.astro'
|
|||
const SWV = Astro.url.href.split("watch?v=").pop();
|
||||
const video = await fetch(DEFAULT_MEDIA_DATA_PROXY + "/api/v1/videos/" + SWV).then((response) => response.json());
|
||||
const comments = await fetch(DEFAULT_MEDIA_DATA_PROXY + "/api/v1/comments/" + SWV).then((response) => response.json());
|
||||
|
||||
|
||||
|
||||
const Description = video.description;
|
||||
const UploadDate = video.published;
|
||||
const Views = video.viewCount;
|
||||
|
|
Reference in a new issue