Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Jan 4, 2025
1 parent cebfe50 commit 94124d3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ All notable changes to this project will be documented in this file.

## v2.6.1

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

## v2.6.0

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.6.1-prerelease"
Version = "2.6.1"
VersionName = "Umi"
GcTime = time.Minute * 30
ConfigFileName = "config.toml"
Expand Down
1 change: 1 addition & 0 deletions internal/library/scanner/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ func (scn *Scanner) Scan() (lfs []*anime.LocalFile, err error) {
return nil, err
}
for _, path := range otherPaths {
//if _, ok := localFilePathsMap[strings.ToLower(path)]; !ok {
if _, ok := localFilePathsMap[util.NormalizePath(path)]; !ok {
paths = append(paths, path)
}
Expand Down
2 changes: 1 addition & 1 deletion seanime-desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "Seanime Desktop",
"version": "2.6.0",
"version": "2.6.1",
"identifier": "app.seanime.desktop",
"build": {
"frontendDist": "../../web-desktop",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ export function useHandleEpisodeSection(props: { entry: Anime_Entry, details: AL
}, [entry.episodes])

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

const hasInvalidEpisodes = React.useMemo(() => {
Expand Down

0 comments on commit 94124d3

Please sign in to comment.