Skip to content

Commit

Permalink
include IMDB ID in search space (i.e. you can type/copy an IMDB ID in…
Browse files Browse the repository at this point in the history
… the search field and get results)
  • Loading branch information
theMK2k committed Sep 26, 2020
1 parent 0fd2dc3 commit c2ebcbb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions DONE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 10 additions & 1 deletion docs/00-Release-Preparation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%
Expand All @@ -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)
Expand Down
7 changes: 4 additions & 3 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
? `
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit c2ebcbb

Please sign in to comment.