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

Added seeking buttons and fixed vercel error #113

Merged
merged 3 commits into from
Jan 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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