From c2ebcbb852cfc49ea85ac1ed89818fabd02dd66c Mon Sep 17 00:00:00 2001 From: MK2k Date: Sat, 26 Sep 2020 18:27:58 +0200 Subject: [PATCH] include IMDB ID in search space (i.e. you can type/copy an IMDB ID in the search field and get results) --- DONE.md | 1 + docs/00-Release-Preparation.md | 11 ++++++++++- src/store.js | 7 ++++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/DONE.md b/DONE.md index 631002b7..4578d183 100644 --- a/DONE.md +++ b/DONE.md @@ -405,6 +405,7 @@ Series ### Other +- [x] include IMDB ID in search space (i.e. you can type/copy an IMDB ID in the search field and get results) - [x] enhance scrapeIMDBParentalGuideData with PG-Codes (use tbl_AgeRatings) - [x] FullScreen toggle - [x] via button + tooltip diff --git a/docs/00-Release-Preparation.md b/docs/00-Release-Preparation.md index d00a257e..5f3d07b6 100644 --- a/docs/00-Release-Preparation.md +++ b/docs/00-Release-Preparation.md @@ -38,7 +38,7 @@ npm run electron:build-linux-portable ### Mac Build -- [ ] in MacOS run: +- [x] in MacOS run: ```bash export APPLE_ID=%APPLE_ID% @@ -54,10 +54,19 @@ npm run electron:build-mac - [ ] on RPi run `npm run electron:build-rpi` +## Create md5 checksum files + +- [x] create md5 checksum files + ## Create Release on github - upload all files from Build Packs +## Update Website + +- [ ] create new set of download locations +- [ ] build and deploy website + ## FINALLY: update history.json and push - [x] Update history.json (create new entry on top of the others in the array) diff --git a/src/store.js b/src/store.js index 9a48b418..81566042 100644 --- a/src/store.js +++ b/src/store.js @@ -3317,6 +3317,7 @@ async function fetchMedia($MediaType, arr_id_Movies, minimumResultSet, $t) { , MOV.IMDB_MaxAge , MOV.isDirectoryBased , SP.Path AS SourcePath + , MOV.IMDB_tconst ${minimumResultSet ? ` @@ -3329,7 +3330,6 @@ async function fetchMedia($MediaType, arr_id_Movies, minimumResultSet, $t) { , NULL AS MI_Quality , NULL AS MI_Audio_Languages , NULL AS MI_Subtitle_Languages - , NULL AS IMDB_tconst , NULL AS IMDB_posterSmall_URL , NULL AS IMDB_posterLarge_URL , NULL AS IMDB_plotSummaryFull @@ -3359,7 +3359,6 @@ async function fetchMedia($MediaType, arr_id_Movies, minimumResultSet, $t) { , MOV.MI_Quality , MOV.MI_Audio_Languages , MOV.MI_Subtitle_Languages - , MOV.IMDB_tconst , MOV.IMDB_posterSmall_URL , MOV.IMDB_posterLarge_URL , MOV.IMDB_plotSummaryFull @@ -3470,7 +3469,9 @@ async function fetchMedia($MediaType, arr_id_Movies, minimumResultSet, $t) { " " + (item.IMDB_plotSummary || "").toLowerCase() + " " + - (item.Path || "").toLowerCase(); + (item.Path || "").toLowerCase() + + " " + + (item.IMDB_tconst || "").toLowerCase(); item.IMDB_Top_Directors = item.IMDB_Top_Directors ? JSON.parse(item.IMDB_Top_Directors)