Gaps searches through your Plex Server. It then queries
for known
diff --git a/GapsWeb/src/main/resources/templates/index.html b/GapsWeb/src/main/resources/templates/index.html
index 6a782bdb..9907902a 100755
--- a/GapsWeb/src/main/resources/templates/index.html
+++ b/GapsWeb/src/main/resources/templates/index.html
@@ -77,7 +77,7 @@
-
v0.8.7
+
v0.8.8
Gaps searches through your Plex Server. It then queries
for known
@@ -93,7 +93,7 @@
v0.8.7
'AlienĀ³ (1992)' to be added to your collection.
Getting Started
-
To get started, head to configuration and enter your TVDB ID and
+
To get started, head to configuration and enter your TMDB ID and
Plex Server
information.
diff --git a/GapsWeb/src/main/resources/templates/updates.html b/GapsWeb/src/main/resources/templates/updates.html
index eff42b5b..0f6cd0dd 100755
--- a/GapsWeb/src/main/resources/templates/updates.html
+++ b/GapsWeb/src/main/resources/templates/updates.html
@@ -78,6 +78,11 @@
Updates
+
v0.8.8
+
+ - Fixed RSS bug with tvdb_id needing to be tmdb_id
+
+
v0.8.7
- Fixing Docker exposed ports for reverse proxies.
diff --git a/Plex/pom.xml b/Plex/pom.xml
index 4f71715d..b032e43f 100755
--- a/Plex/pom.xml
+++ b/Plex/pom.xml
@@ -5,7 +5,7 @@
Gaps
com.jasonhhouse
- 0.8.7
+ 0.8.8
4.0.0
diff --git a/RadarrV3/pom.xml b/RadarrV3/pom.xml
index 765c4fa6..f9954a78 100755
--- a/RadarrV3/pom.xml
+++ b/RadarrV3/pom.xml
@@ -5,7 +5,7 @@
Gaps
com.jasonhhouse
- 0.8.7
+ 0.8.8
4.0.0
diff --git a/application-custom.yml b/application-custom.yml
index 72729579..7c04610c 100644
--- a/application-custom.yml
+++ b/application-custom.yml
@@ -44,7 +44,7 @@ info:
app:
name: Gaps
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. If those movies don't exist in your library, Gaps will recommend getting those movies, legally of course.
- version: 0.8.7
+ version: 0.8.8
storageFolder: /{CUSTOM_FOLDER} #Change to folder that gaps has permission to read, write, and delete in.
properties:
rssFeed: rssFeed.json
diff --git a/build b/build
index 9a5b832a..c302dfc8 100755
--- a/build
+++ b/build
@@ -1,6 +1,6 @@
#!/bin/bash
set -e
-VERSION=0.8.7
+VERSION=0.8.8
JAR_VERSION="GapsWeb/target/GapsWeb-$VERSION.jar"
ZIP_VERSION="GapsAsJar-$VERSION.zip"
npm ci
diff --git a/build.bat b/build.bat
index 6d408c06..93d54c90 100644
--- a/build.bat
+++ b/build.bat
@@ -7,7 +7,7 @@ call npm run uglifyjs-pages
call mvn clean install
del GapsOnWindows\*.jar
del GapsOnWindows\README.md
-copy GapsWeb\target\GapsWeb-0.8.7.jar GapsOnWindows\gaps.jar
+copy GapsWeb\target\GapsWeb-0.8.8.jar GapsOnWindows\gaps.jar
copy README.md GapsOnWindows\
cd GapsOnWindows
makensis gaps.nsi
\ No newline at end of file
diff --git a/cypress/integration/about/about.spec.js b/cypress/integration/about/about.spec.js
index 92247731..0439b6e9 100644
--- a/cypress/integration/about/about.spec.js
+++ b/cypress/integration/about/about.spec.js
@@ -21,7 +21,7 @@ describe('Verify About Page', () => {
.should('have.text', 'About');
cy.get('.container > :nth-child(3)')
- .should('have.text', 'v0.8.7');
+ .should('have.text', 'v0.8.8');
cy.get('.container > :nth-child(6)')
.should('have.text', 'Software');
diff --git a/cypress/integration/duplication/duplication.spec.js b/cypress/integration/duplication/duplication.spec.js
index 0c7771a2..632cf03b 100644
--- a/cypress/integration/duplication/duplication.spec.js
+++ b/cypress/integration/duplication/duplication.spec.js
@@ -19,14 +19,14 @@ function checkForDuplicates(ownedMovies, recommendedMovies) {
Object.values(recommendedMovies).forEach((recommendedMovie) => {
Object.values(ownedMovies).forEach((ownedMovie) => {
- if (recommendedMovie.tvdbId === ownedMovie.tvdbId
+ if (recommendedMovie.tmdbId === ownedMovie.tmdbId
|| recommendedMovie.imdbId === ownedMovie.imdbId) {
cy.log(`Recommended Movie: ${recommendedMovie}`);
cy.log(`Owned Movie: ${ownedMovie}`);
}
- if ((recommendedMovie.tvdbId !== undefined && ownedMovie.tvdbId !== undefined)) {
- expect(recommendedMovie.tvdbId).to.not.eq(ownedMovie.tvdbId);
+ if ((recommendedMovie.tmdbId !== undefined && ownedMovie.tmdbId !== undefined)) {
+ expect(recommendedMovie.tmdbId).to.not.eq(ownedMovie.tmdbId);
}
if ((recommendedMovie.imdbId !== undefined && ownedMovie.imdbId !== undefined)) {
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 9b2c514e..2d33d286 100755
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -1,4 +1,4 @@
-gapsz:
+gaps:
image: housewrecker/gaps:latest
container_name: gaps
environment:
diff --git a/package-lock.json b/package-lock.json
index c8b22fe8..fd91f288 100755
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "gaps",
- "version": "0.8.7",
+ "version": "0.8.8",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index a90128bb..1fc80b6d 100755
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "gaps",
- "version": "0.8.7",
+ "version": "0.8.8",
"description": "Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. If those movies don't exist in your library, Gaps will recommend getting those movies, legally of course.",
"main": "/",
"dependencies": {
diff --git a/pom.xml b/pom.xml
index 824bdefd..0d80b7ff 100755
--- a/pom.xml
+++ b/pom.xml
@@ -17,7 +17,7 @@
com.jasonhhouse
Gaps
- 0.8.7
+ 0.8.8
Gaps
Demo project for Spring Boot