diff --git a/Core/pom.xml b/Core/pom.xml
index bbe72516..a01f6256 100755
--- a/Core/pom.xml
+++ b/Core/pom.xml
@@ -5,7 +5,7 @@
Gaps
com.jasonhhouse
- 0.9.9
+ 0.9.10
4.0.0
diff --git a/Dockerfile b/Dockerfile
index 9ae16409..b26e0395 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -32,7 +32,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data
WORKDIR /usr/app
-COPY GapsWeb/target/GapsWeb-0.9.9.jar /usr/app/gaps.jar
+COPY GapsWeb/target/GapsWeb-0.9.10.jar /usr/app/gaps.jar
COPY start.sh /usr/app/
diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7
index c4db6f22..1ef09f82 100755
--- a/Dockerfile.arm32v7
+++ b/Dockerfile.arm32v7
@@ -36,7 +36,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data
WORKDIR /usr/app
-COPY GapsWeb/target/GapsWeb-0.9.9.jar /usr/app/gaps.jar
+COPY GapsWeb/target/GapsWeb-0.9.10.jar /usr/app/gaps.jar
COPY start.sh /usr/app/
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index 61de1f9a..7bebf77b 100755
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -33,7 +33,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data
WORKDIR /usr/app
-COPY GapsWeb/target/GapsWeb-0.9.9.jar /usr/app/gaps.jar
+COPY GapsWeb/target/GapsWeb-0.9.10.jar /usr/app/gaps.jar
COPY start.sh /usr/app/
diff --git a/Dockerfile.ppc64le b/Dockerfile.ppc64le
index d3829968..9cc73e4d 100755
--- a/Dockerfile.ppc64le
+++ b/Dockerfile.ppc64le
@@ -32,7 +32,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data
WORKDIR /usr/app
-COPY GapsWeb/target/GapsWeb-0.9.9.jar /usr/app/gaps.jar
+COPY GapsWeb/target/GapsWeb-0.9.10.jar /usr/app/gaps.jar
COPY start.sh /usr/app/
diff --git a/Dockerfile.riscv64 b/Dockerfile.riscv64
index ee39a5e5..05d0926d 100755
--- a/Dockerfile.riscv64
+++ b/Dockerfile.riscv64
@@ -36,7 +36,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data
WORKDIR /usr/app
-COPY GapsWeb/target/GapsWeb-0.9.9.jar /usr/app/gaps.jar
+COPY GapsWeb/target/GapsWeb-0.9.10.jar /usr/app/gaps.jar
COPY start.sh /usr/app/
diff --git a/GapsAsJar/gaps.nsi b/GapsAsJar/gaps.nsi
index 8ef83083..1dcba733 100644
--- a/GapsAsJar/gaps.nsi
+++ b/GapsAsJar/gaps.nsi
@@ -48,4 +48,4 @@ RMDIR /r $INSTDIR
SectionEnd
# name the installer
-OutFile "gaps-0.9.9-installer.exe"
\ No newline at end of file
+OutFile "gaps-0.9.10-installer.exe"
\ No newline at end of file
diff --git a/GapsWeb/pom.xml b/GapsWeb/pom.xml
index fbc70203..b2d101c9 100755
--- a/GapsWeb/pom.xml
+++ b/GapsWeb/pom.xml
@@ -5,7 +5,7 @@
Gaps
com.jasonhhouse
- 0.9.9
+ 0.9.10
4.0.0
diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/GapsSearchService.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/GapsSearchService.java
index 35f68371..4adf7fac 100755
--- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/GapsSearchService.java
+++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/GapsSearchService.java
@@ -591,7 +591,7 @@ private void handleCollection(PlexProperties plexProperties, String machineIdent
LOGGER.info("Owned movie found: {}", basicMovieFromCollection);
searched.add(basicMovieFromCollection);
sendEmptySearchUpdate(ownedBasicMovies.size(), searchedMovieCount);
- } else if (!searched.contains(basicMovieFromCollection) && year != 0 && year < Year.now().getValue()) {
+ } else if (!searched.contains(basicMovieFromCollection) && year != 0) {
LOGGER.info("Missing movie found: {}", basicMovieFromCollection);
// Get recommended Movie details from MovieDB API
diff --git a/GapsWeb/src/main/resources/application.yaml b/GapsWeb/src/main/resources/application.yaml
index f73e604a..7a7427fa 100755
--- a/GapsWeb/src/main/resources/application.yaml
+++ b/GapsWeb/src/main/resources/application.yaml
@@ -42,7 +42,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.9.9
+ version: 0.9.10
storageFolder: /usr/data
properties:
rssFeed: rssFeed.json
diff --git a/GapsWeb/src/main/resources/templates/about.html b/GapsWeb/src/main/resources/templates/about.html
index 5e98fa98..2d677a5f 100755
--- a/GapsWeb/src/main/resources/templates/about.html
+++ b/GapsWeb/src/main/resources/templates/about.html
@@ -29,7 +29,7 @@
About
- v0.9.9
+ v0.9.10
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 61d41886..210c2459 100755
--- a/GapsWeb/src/main/resources/templates/index.html
+++ b/GapsWeb/src/main/resources/templates/index.html
@@ -27,7 +27,7 @@
-
v0.9.9
+
v0.9.10
Gaps searches through your Plex Server. It then queries
for known
diff --git a/GapsWeb/src/main/resources/templates/updates.html b/GapsWeb/src/main/resources/templates/updates.html
index b781c388..2c211048 100755
--- a/GapsWeb/src/main/resources/templates/updates.html
+++ b/GapsWeb/src/main/resources/templates/updates.html
@@ -28,6 +28,11 @@
Updates
+
v0.9.10
+
+ - Fixed current year limit on search
+
+
v0.9.9
- Removing SQLite
diff --git a/Plex/pom.xml b/Plex/pom.xml
index 25a65e71..82f00e9f 100755
--- a/Plex/pom.xml
+++ b/Plex/pom.xml
@@ -5,7 +5,7 @@
Gaps
com.jasonhhouse
- 0.9.9
+ 0.9.10
4.0.0
diff --git a/RadarrV3/pom.xml b/RadarrV3/pom.xml
index 4580e1fd..38e491b5 100755
--- a/RadarrV3/pom.xml
+++ b/RadarrV3/pom.xml
@@ -5,7 +5,7 @@
Gaps
com.jasonhhouse
- 0.9.9
+ 0.9.10
4.0.0
diff --git a/application-custom.yml b/application-custom.yml
index 23bc4a2f..fad39f6a 100644
--- a/application-custom.yml
+++ b/application-custom.yml
@@ -35,7 +35,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.9.9
+ version: 0.9.10
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 687afad8..c6c1d084 100755
--- a/build
+++ b/build
@@ -11,7 +11,7 @@
##
set -e
-VERSION=0.9.9
+VERSION=0.9.10
JAR_VERSION="GapsWeb/target/GapsWeb-$VERSION.jar"
ZIP_VERSION="GapsAsJar-$VERSION.zip"
npm ci
diff --git a/build.bat b/build.bat
index 56ebcb02..cf81e060 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.9.9.jar GapsOnWindows\gaps.jar
+copy GapsWeb\target\GapsWeb-0.9.10.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 bcbd8917..39171ff3 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.9.9');
+ .should('have.text', 'v0.9.10');
cy.get('.container > :nth-child(6)')
.should('have.text', 'Software');
diff --git a/package-lock.json b/package-lock.json
index da779c6a..d8f98029 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "gaps",
- "version": "0.9.9",
+ "version": "0.9.10",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 88a26295..5d356c24 100755
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "gaps",
- "version": "0.9.9",
+ "version": "0.9.10",
"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 58793c95..6414ee0a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,7 +17,7 @@
com.jasonhhouse
Gaps
- 0.9.9
+ 0.9.10
Gaps
Demo project for Spring Boot
@@ -26,7 +26,7 @@
3.9
1.9
2.8.0
- 0.9.9
+ 0.9.10
3.0.0
30.1-jre
6.1.5.Final