Skip to content
This repository has been archived by the owner on Jul 14, 2024. It is now read-only.

Commit

Permalink
Added seeking buttons and fixed vercel error (#113)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
Aijazmakerb and DevanAbinaya authored Jan 14, 2024
1 parent b44b8dc commit 41f82c9
Show file tree
Hide file tree
Showing 12 changed files with 369 additions and 202 deletions.
2 changes: 1 addition & 1 deletion components/home/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export default function Content({
? `/en/anime/watch/${
anime.id
}/gogoanime?id=${encodeURIComponent(
anime?.slug
anime?.slug?.replace('/', '')
)}&num=${anime.currentEpisode}`
: `/en/${type}/${anime.id}`
: `/en/${type}/${anime.id}`
Expand Down
27 changes: 21 additions & 6 deletions components/shared/changelogs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,37 @@ import Link from "next/link";
import { Fragment, useEffect, useRef, useState } from "react";

const web = {
version: "v4.4.0",
version: "v4.4.1"
};

const logs = [
{
version: "v4.4.0",
version: "v4.4.1",
pre: false,
notes: null,
highlights: true,
changes: [
"New player layout for mobile devices",
"Added seek buttons in the player",
"Added previous and next episode buttons in the player",
"Added rate modal when user finished watching the whole series",
"Fix: only half of the episodes has episodes thumbnail",
"Fix: pressing back button in anime info page redirects user to the wrong page",
"Progressively migrate codebase to typescript",
],
},
"Progressively migrate codebase to typescript"
]
}
// {
// version: "v4.4.0",
// pre: false,
// notes: null,
// highlights: false,
// changes: [
// "Added rate modal when user finished watching the whole series",
// "Fix: only half of the episodes has episodes thumbnail",
// "Fix: pressing back button in anime info page redirects user to the wrong page",
// "Progressively migrate codebase to typescript"
// ]
// }
// {
// version: "v4.3.1",
// pre: true,
Expand Down Expand Up @@ -221,7 +236,7 @@ export function ChangelogsVersions({
pre,
notes,
highlights,
children,
children
}: ChangelogsVersionsProps) {
return (
<>
Expand Down
Loading

0 comments on commit 41f82c9

Please sign in to comment.