This repository has been archived by the owner on Jul 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update v4.4.0 - Finale - Merged Branch beta to main (#121)
* migrate to typescript * feat: Implement a way to review/rate anime (#108) * Make details cover lead back to anime page * Make 'markProgress' use object instead of param list * Import Link * Implement Rate modal * Pass session into useAniList Co-authored-by: Factiven <[email protected]> * Reimplement using markComplete & add toast for failure * redefined ratemodal * fix: home page client error * update version --------- Co-authored-by: Factiven <[email protected]> * Update changelogs version to v4.4.0 * feat: Add PreviousEpisode and NextEpisode to media controls (#111) * Make details cover lead back to anime page * Make 'markProgress' use object instead of param list * Import Link * Implement Rate modal * Pass session into useAniList Co-authored-by: Factiven <[email protected]> * Reimplement using markComplete & add toast for failure * redefined ratemodal * fix: home page client error * update version * Update version to v4.4.0 in changelogs.tsx * Implement next and previous buttons to video controls * fix subtitle button bugs --------- Co-authored-by: Factiven <[email protected]> * Add getRemovedMedia function and handle redirect for removed media * redesign: Redesign schedules page (#112) * Remove trailing commas * Polish schedules page & Remove unneeded styles * Add scroll animations * Add scrolling animation to time view * Refactor schedule page layout and styling --------- Co-authored-by: Factiven <[email protected]> * Added seeking buttons and fixed vercel error (#113) * readded seek buttons and vercel support * Redesign player layout on mobile and fix seek button * Update changelogs and player buttons --------- Co-authored-by: Factiven <[email protected]> * Refactor episode fetching and data formatting * v4.4.0 - Finale * update .env.example --------- Co-authored-by: Artrix <[email protected]> Co-authored-by: A i j a Z <[email protected]>
- Loading branch information
1 parent
cd08c2e
commit bdd560a
Showing
135 changed files
with
7,724 additions
and
3,243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
## AniList | ||
CLIENT_ID="get the id from here https://anilist.co/settings/developer" | ||
CLIENT_SECRET="get the secret from here https://anilist.co/settings/developer" | ||
GRAPHQL_ENDPOINT="https://graphql.anilist.co" | ||
|
||
## NextAuth | ||
NEXTAUTH_SECRET='run this cmd in your bash terminal (openssl rand -base64 32) with no bracket, and paste it here' | ||
NEXTAUTH_URL="for development use http://localhost:3000/ and for production use your domain url" | ||
|
||
## NextJS | ||
PROXY_URI="This is what I use for proxying video https://github.com/chaycee/M3U8Proxy. Don't put / at the end of the url." | ||
API_URI="host your own API from this repo https://github.com/consumet/api.consumet.org. Don't put / at the end of the url." | ||
DISQUS_SHORTNAME='put your disqus shortname here (optional)' | ||
# ADMIN_USERNAME="" | ||
# ADMIN_USERNAME="Your AniList account username" | ||
|
||
## Prisma | ||
DATABASE_URL="Your postgresql connection url" | ||
## Use any postgresql db, or supabase for free options | ||
DATABASE_URL="postgresql://user:password@host:6543/postgres?pgbouncer=true" | ||
DIRECT_URL="postgresql://user:password@host:5432/postgres" | ||
|
||
## Redis | ||
# If you don't want to use redis, just comment the REDIS_URL (press ctrl + / on windows or cmd + / on mac) | ||
REDIS_URL="redis://username:password@host:port" | ||
REDIS_URL="redis://user:password@host:port" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"bracketSpacing": true, | ||
"printWidth": 80 | ||
"printWidth": 80, | ||
"trailingComma": "none" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.