You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DONE.md
+19-3
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,33 @@
2
2
3
3
## next (v1.4.0-b6)
4
4
5
-
## v1.4.0-b5
5
+
## v1.4.0-b6
6
6
7
-
## Features
7
+
## IMDB Scraper
8
+
9
+
-[x] SCRAPER: When scanning series, re-rank IMDB search results so that tv-series are higher than movies when detecting the IMDB entry
10
+
- closes #61
11
+
12
+
# Older Releases (click to expand)
13
+
14
+
<details>
15
+
<summary>v1.4.0-b5</summary>
16
+
17
+
## Features (v1.4.0-b5)
8
18
9
19
-[x] FEAT: do an update check on the beta channel if the build is a beta build
10
20
11
21
A beta build (like this one) will now do version checks against other beta builds and tell you if a newer beta build is available. The link for downloading is also pointing to the beta releases (and not the Media Hoarder website's download section).
Copy file name to clipboardExpand all lines: TODO.md
+4-8
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,6 @@
6
6
7
7
-[ ] cancel loading filters on series -> episodes change
8
8
9
-
-[ ] DB Migrations
10
-
11
-
-[x] new table: tbl_DB_Migrations
12
-
-[ ] implement migration runner
13
-
14
9
-[WIP] introduce HDR (detect with color spaces, e.g. <https://www.reddit.com/r/PleX/comments/7kwoy8/is_there_a_way_to_tell_if_a_file_is_hdr_from_the/>)
15
10
16
11
- "HDR10", "HDR10+", "DV", "HLG"
@@ -63,9 +58,9 @@
63
58
-[ ] rescanHandleDuplicates (also provide snackbar progress for this)
64
59
-[ ] investigate with series-generator: find possible multitudes of episode numbers (also: episode == null)
65
60
-[ ] if this is the case: we need a better getSeriesEpisodeTconstFromCache, possibly by utilizing levenshtein between filename and imdb's episode title
66
-
-#51 Found work around for custom shows and episodes
67
-
-#39 Multipart Episodes
68
-
-#36 Mediainfo always opening
61
+
-[ ]#51 Found work around for custom shows and episodes
62
+
-[ ]#39 Multipart Episodes
63
+
-[ ]#36 Mediainfo always opening
69
64
70
65
### Series: Link IMDB Dialog
71
66
@@ -93,6 +88,7 @@
93
88
-[ ] we apparently do not use the timezone (we store in UTC)
94
89
-[ ] scanErrors:
95
90
-[ ] review how rescan and applyIMDB handle scanErrors (string to object, handle null)
Copy file name to clipboardExpand all lines: src/find-imdb-tconst.js
+33-13
Original file line number
Diff line number
Diff line change
@@ -79,12 +79,19 @@ export async function findIMDBtconstInNFO(movie) {
79
79
80
80
/**
81
81
* Find an IMDB tconst based on the movie's name (also checks possible release years contained in the name)
82
-
* @param {Object} movie
82
+
* @param {Object} mediaItem
83
83
* @param {Object} options
84
84
* @returns {String|Object} with options.returnAnalysisData = true, returns an object with analysis data, else the tconst (or empty string if tconst could't be found)
0 commit comments