diff --git a/Core/pom.xml b/Core/pom.xml index c14611b..1df643e 100755 --- a/Core/pom.xml +++ b/Core/pom.xml @@ -5,7 +5,7 @@ Gaps com.jasonhhouse - 0.5.3 + 0.5.4 4.0.0 @@ -15,7 +15,7 @@ com.jasonhhouse Plex - 0.5.3 + 0.5.4 diff --git a/Dockerfile b/Dockerfile index b8ac6bf..82103a3 100755 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data WORKDIR /usr/app -COPY GapsWeb/target/GapsWeb-0.5.3.jar /usr/app/gaps.jar +COPY GapsWeb/target/GapsWeb-0.5.4.jar /usr/app/gaps.jar COPY start.sh /usr/app/ diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index 3060dd2..f8da337 100755 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -22,7 +22,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data WORKDIR /usr/app -COPY GapsWeb/target/GapsWeb-0.5.3.jar /usr/app/gaps.jar +COPY GapsWeb/target/GapsWeb-0.5.4.jar /usr/app/gaps.jar COPY start.sh /usr/app/ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 9ad8ed5..cdd0b34 100755 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -22,7 +22,7 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data WORKDIR /usr/app -COPY GapsWeb/target/GapsWeb-0.5.3.jar /usr/app/gaps.jar +COPY GapsWeb/target/GapsWeb-0.5.4.jar /usr/app/gaps.jar COPY start.sh /usr/app/ diff --git a/GapsOnWindows/GapsOnWindows.xml b/GapsOnWindows/GapsOnWindows.xml index 7ec7c37..379dce7 100755 --- a/GapsOnWindows/GapsOnWindows.xml +++ b/GapsOnWindows/GapsOnWindows.xml @@ -2,8 +2,8 @@ false console - /Users/jhouse/Code/Gaps/GapsWeb/target/GapsWeb-0.5.3.jar - /Users/jhouse/Desktop/Gaps-v0.5.3.exe + /Users/jhouse/Code/Gaps/GapsWeb/target/GapsWeb-0.5.4.jar + /Users/jhouse/Desktop/Gaps-v0.5.4.exe . @@ -28,16 +28,16 @@ 64/32 - 0.5.3.0 + 0.5.4.0 Free Form Gaps 2019 - 0.5.3.0 + 0.5.4.0 Free Form Gaps Gaps - Gaps-0.5.3.exe + Gaps-0.5.4.exe ENGLISH_US diff --git a/GapsWeb/pom.xml b/GapsWeb/pom.xml index f8d7c97..fc46da0 100755 --- a/GapsWeb/pom.xml +++ b/GapsWeb/pom.xml @@ -5,7 +5,7 @@ Gaps com.jasonhhouse - 0.5.3 + 0.5.4 4.0.0 @@ -21,13 +21,13 @@ com.jasonhhouse Core - 0.5.3 + 0.5.4 com.jasonhhouse Plex - 0.5.3 + 0.5.4 diff --git a/GapsWeb/src/main/resources/application.yaml b/GapsWeb/src/main/resources/application.yaml index bed3e3d..ebce07e 100755 --- a/GapsWeb/src/main/resources/application.yaml +++ b/GapsWeb/src/main/resources/application.yaml @@ -47,4 +47,4 @@ 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.5.3 \ No newline at end of file + version: 0.5.4 \ No newline at end of file diff --git a/GapsWeb/src/main/resources/templates/about.html b/GapsWeb/src/main/resources/templates/about.html index 04ca19b..55d36f2 100755 --- a/GapsWeb/src/main/resources/templates/about.html +++ b/GapsWeb/src/main/resources/templates/about.html @@ -78,7 +78,7 @@ Gaps Logo

About

-

v0.5.3

+

v0.5.4

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 4eb1344..3a0644e 100755 --- a/GapsWeb/src/main/resources/templates/index.html +++ b/GapsWeb/src/main/resources/templates/index.html @@ -77,7 +77,7 @@

Gaps Logo -

v0.5.3

+

v0.5.4

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 9f61fd4..459722f 100755 --- a/GapsWeb/src/main/resources/templates/updates.html +++ b/GapsWeb/src/main/resources/templates/updates.html @@ -78,6 +78,12 @@ Gaps Logo

Updates

+

v0.5.4

+
    +
  • Replaced state object with stateless IoService
  • +
  • Code clean up
  • +
+

v0.5.3

  • Fixed bug with validation on checkboxes
  • diff --git a/GapsWeb/src/test/resources/application.yaml b/GapsWeb/src/test/resources/application.yaml index 2b9b370..475df9c 100755 --- a/GapsWeb/src/test/resources/application.yaml +++ b/GapsWeb/src/test/resources/application.yaml @@ -13,7 +13,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.5.3 + version: 0.5.4 loginEnabled: false spring: jpa: diff --git a/Plex/pom.xml b/Plex/pom.xml index d916c52..ee527c0 100755 --- a/Plex/pom.xml +++ b/Plex/pom.xml @@ -5,7 +5,7 @@ Gaps com.jasonhhouse - 0.5.3 + 0.5.4 4.0.0 diff --git a/build.sh b/build.sh index 40b6f60..1c584d0 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/bash -VERSION=0.5.3 +VERSION=0.5.4 JAR_VERSION="GapsWeb/target/GapsWeb-$VERSION.jar" ZIP_VERSION="Gaps-$VERSION.zip" npm run minify-input-css diff --git a/cypress/integration/about/about.js b/cypress/integration/about/about.js index c511586..e22d475 100644 --- a/cypress/integration/about/about.js +++ b/cypress/integration/about/about.js @@ -9,7 +9,7 @@ describe('Verify About Page', function () { .should('have.text', 'About'); cy.get('.container > :nth-child(3)') - .should('have.text', 'v0.5.3'); + .should('have.text', 'v0.5.4'); cy.get('.container > :nth-child(6)') .should('have.text', 'Software'); diff --git a/package-lock.json b/package-lock.json index 80b0b0e..d6995ad 100755 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "gaps", - "version": "0.5.3", + "version": "0.5.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9c2bad2..723df50 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gaps", - "version": "0.5.3", + "version": "0.5.4", "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 7862521..34f095c 100755 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ com.jasonhhouse Gaps - 0.5.3 + 0.5.4 Gaps Demo project for Spring Boot