Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Aug 16, 2024
1 parent afcef51 commit 73e6745
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions internal/manga/providers/comick.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
})
}

Expand Down Expand Up @@ -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),
Expand Down Expand Up @@ -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),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand Down Expand Up @@ -164,7 +164,7 @@ export function LibraryToolbar(props: LibraryToolbarProps) {
disabled={!hasScanned}
className={cn({ "!text-[--muted]": !hasScanned })}
>
<BiFile />
<TbFileSad />
<span>Ignored files</span>
</DropdownMenuItem>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<CollectionParams>(MANGA_LIBRARY_DEFAULT_PARAMS)
Expand Down Expand Up @@ -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: [
Expand Down
2 changes: 1 addition & 1 deletion seanime-web/src/app/(main)/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function Page() {
<div className="flex flex-col gap-4 md:flex-row justify-between items-center">
<div className="space-y-1">
<h2 className="text-center lg:text-left">Settings</h2>
<p className="text-[--muted]">App version: {status?.version}, OS: {capitalize(status?.os)}</p>
<p className="text-[--muted]">App version: {status?.version} - OS: {capitalize(status?.os)}</p>
</div>
<div>

Expand Down

0 comments on commit 73e6745

Please sign in to comment.