Skip to content

Commit 94124d3

Browse files
committed
bump version
1 parent cebfe50 commit 94124d3

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## v2.6.1
66

7-
- 🦺 Scanner: Fixed duplicated files
7+
- 🦺 Scanner: Fixed duplicated files due to incorrect path comparison
8+
- 🏗️ Issue recorder: Increase data cap limit
89

910
## v2.6.0
1011

internal/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package constants
33
import "time"
44

55
const (
6-
Version = "2.6.1-prerelease"
6+
Version = "2.6.1"
77
VersionName = "Umi"
88
GcTime = time.Minute * 30
99
ConfigFileName = "config.toml"

internal/library/scanner/scan.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ func (scn *Scanner) Scan() (lfs []*anime.LocalFile, err error) {
9393
return nil, err
9494
}
9595
for _, path := range otherPaths {
96+
//if _, ok := localFilePathsMap[strings.ToLower(path)]; !ok {
9697
if _, ok := localFilePathsMap[util.NormalizePath(path)]; !ok {
9798
paths = append(paths, path)
9899
}

seanime-desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "Seanime Desktop",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"identifier": "app.seanime.desktop",
55
"build": {
66
"frontendDist": "../../web-desktop",

seanime-web/src/app/(main)/entry/_lib/handle-episode-section.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ export function useHandleEpisodeSection(props: { entry: Anime_Entry, details: AL
2626
}, [entry.episodes])
2727

2828
const ncEpisodes = React.useMemo(() => {
29-
return (entry.episodes?.filter(ep => ep.type === "nc") ?? []).sort((a, b) => a.displayTitle.localeCompare(b.displayTitle))
29+
return (entry.episodes?.filter(ep => ep.type === "nc" && !!ep.localFile?.path) ?? []).sort((a,
30+
b,
31+
) => a.localFile!.path!.localeCompare(b.localFile!.path!))
3032
}, [entry.episodes])
3133

3234
const hasInvalidEpisodes = React.useMemo(() => {

0 commit comments

Comments
 (0)