diff --git a/CHANGELOG.md b/CHANGELOG.md index b46eb175..a3daa1c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## v2.0.2 + +- ✨ Ignore files +- ⚡️ Improved 'resolve unmatched' feature + - Select individual files to match / ignore + - Suggestions are fetched faster +- 🦺 Torrent streaming: Fixed MPV cache +- 🦺 Fixed manual match overwriting locked files +- 🦺 Fixed episode summaries + ## v2.0.1 - ✨ Torrent streaming: Show previously selected torrent diff --git a/internal/constants/constants.go b/internal/constants/constants.go index 6362b218..c38d3d61 100644 --- a/internal/constants/constants.go +++ b/internal/constants/constants.go @@ -3,7 +3,7 @@ package constants import "time" const ( - Version = "2.0.1" + Version = "2.0.2" VersionName = "Akagami" GcTime = time.Minute * 30 ConfigFileName = "config.toml" diff --git a/internal/manga/providers/comick.go b/internal/manga/providers/comick.go index 48828ea8..a9fdca2a 100644 --- a/internal/manga/providers/comick.go +++ b/internal/manga/providers/comick.go @@ -133,7 +133,7 @@ func (c *ComicK) Search(opts hibikemanga.SearchOptions) ([]*hibikemanga.SearchRe Image: coverURL, Year: result.Year, SearchRating: compRes.Rating, - Provider: string(ComickProvider), + Provider: ComickProvider, }) } @@ -203,7 +203,7 @@ func (c *ComicK) FindChapters(id string) ([]*hibikemanga.ChapterDetails, error) count++ } chaptersMap[chapter.Chap] = &hibikemanga.ChapterDetails{ - Provider: string(ComickProvider), + Provider: ComickProvider, ID: chapter.HID, Title: title, Index: uint(count), @@ -273,7 +273,7 @@ func (c *ComicK) FindChapterPages(id string) ([]*hibikemanga.ChapterPage, error) for index, image := range data.Chapter.MdImages { ret = append(ret, &hibikemanga.ChapterPage{ - Provider: string(ComickProvider), + Provider: ComickProvider, URL: fmt.Sprintf("https://meo.comick.pictures/%s?width=%d", image.B2Key, image.W), Index: index, Headers: make(map[string]string), diff --git a/seanime-web/src/app/(main)/(library)/_containers/library-toolbar.tsx b/seanime-web/src/app/(main)/(library)/_containers/library-toolbar.tsx index 8de09d16..2bc00ec2 100644 --- a/seanime-web/src/app/(main)/(library)/_containers/library-toolbar.tsx +++ b/seanime-web/src/app/(main)/(library)/_containers/library-toolbar.tsx @@ -18,12 +18,12 @@ import { ThemeLibraryScreenBannerType, useThemeSettings } from "@/lib/theme/hook import { useAtom, useSetAtom } from "jotai/react" import Link from "next/link" import React from "react" -import { BiCollection, BiDotsVerticalRounded, BiFile, BiFolder } from "react-icons/bi" +import { BiCollection, BiDotsVerticalRounded, BiFolder } from "react-icons/bi" import { FiSearch } from "react-icons/fi" import { IoLibrary, IoLibrarySharp } from "react-icons/io5" import { MdOutlineVideoLibrary } from "react-icons/md" import { PiClockCounterClockwiseFill } from "react-icons/pi" -import { TbReload } from "react-icons/tb" +import { TbFileSad, TbReload } from "react-icons/tb" export type LibraryToolbarProps = { collectionList: Anime_LibraryCollectionList[] @@ -164,7 +164,7 @@ export function LibraryToolbar(props: LibraryToolbarProps) { disabled={!hasScanned} className={cn({ "!text-[--muted]": !hasScanned })} > - + Ignored files diff --git a/seanime-web/src/app/(main)/manga/_lib/handle-manga-collection.ts b/seanime-web/src/app/(main)/manga/_lib/handle-manga-collection.ts index 687a3ef0..76b2fafd 100644 --- a/seanime-web/src/app/(main)/manga/_lib/handle-manga-collection.ts +++ b/seanime-web/src/app/(main)/manga/_lib/handle-manga-collection.ts @@ -4,11 +4,11 @@ import { CollectionParams, DEFAULT_COLLECTION_PARAMS, filterCollectionEntries } import { atomWithImmer } from "jotai-immer" import { useAtom } from "jotai/react" import { useRouter } from "next/navigation" -import React, { useMemo } from "react" +import React from "react" export const MANGA_LIBRARY_DEFAULT_PARAMS: CollectionParams = { ...DEFAULT_COLLECTION_PARAMS, - sorting: "PROGRESS_DESC", + sorting: "TITLE", } export const __mangaLibrary_paramsAtom = atomWithImmer(MANGA_LIBRARY_DEFAULT_PARAMS) @@ -49,7 +49,7 @@ export function useHandleMangaCollection() { return Array.from(genresSet)?.sort((a, b) => a.localeCompare(b)) }, [data]) - const sortedCollection = useMemo(() => { + const sortedCollection = React.useMemo(() => { if (!data || !data.lists) return data return { lists: [ diff --git a/seanime-web/src/app/(main)/settings/page.tsx b/seanime-web/src/app/(main)/settings/page.tsx index ab984fc4..6fffcf25 100644 --- a/seanime-web/src/app/(main)/settings/page.tsx +++ b/seanime-web/src/app/(main)/settings/page.tsx @@ -78,7 +78,7 @@ export default function Page() { Settings - App version: {status?.version}, OS: {capitalize(status?.os)} + App version: {status?.version} - OS: {capitalize(status?.os)}
App version: {status?.version}, OS: {capitalize(status?.os)}
App version: {status?.version} - OS: {capitalize(status?.os)}