From 99abf9ad2c3708a7d5961b1bf0abdf5f85b634fd Mon Sep 17 00:00:00 2001 From: Jason House Date: Wed, 9 Sep 2020 16:19:07 +0900 Subject: [PATCH 1/3] Updating readme --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index bbda001..d4e9f2b 100755 --- a/README.md +++ b/README.md @@ -180,6 +180,18 @@ Once you've completed at least one search of your plex libraries, you can then v - [Spring Boot](https://spring.io/projects/spring-boot) - Server Framework - [NodeJs](https://nodejs.org/en/) - Testing and Build Environment +## Supporters + +This project would not be possible without the support by these amazing folks. [**Become a sponsor or backer**](https://opencollective.com/gaps) to help us out! + +### Sponsors + +[![Sponsors](https://opencollective.com/gaps/tiers/sponsor.svg)](https://opencollective.com/gaps/order/3851) + +### Backers + +[![Backers](https://opencollective.com/gaps/tiers/backer.svg?avatarHeight=48)](https://opencollective.com/gaps/order/3850) + ## ✍️ Authors - [@JasonHHouse](https://github.com/JasonHHouse) - Idea & Initial work From 07dff6cfed7408284e9d51dbccf8a250561658b0 Mon Sep 17 00:00:00 2001 From: Jason House Date: Wed, 9 Sep 2020 18:43:04 +0900 Subject: [PATCH 2/3] Updating about --- GapsWeb/src/main/resources/templates/about.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/GapsWeb/src/main/resources/templates/about.html b/GapsWeb/src/main/resources/templates/about.html index 41626f2..579a497 100755 --- a/GapsWeb/src/main/resources/templates/about.html +++ b/GapsWeb/src/main/resources/templates/about.html @@ -103,8 +103,13 @@

Gaps license can be found here.

Support

-

While Gaps is free to use, donations are greatly appreciated. Any donations can be done through PayPal.

+

While Gaps is free to use, donations are greatly appreciated. Any donations can be sent through a few different options.

+ + From 38211cf50984478aa5d2e3ecfad80d281dec0837 Mon Sep 17 00:00:00 2001 From: Jason House Date: Thu, 10 Sep 2020 13:35:56 +0900 Subject: [PATCH 3/3] 0.7.5 --- Core/pom.xml | 4 ++-- Dockerfile | 2 +- Dockerfile.arm64 | 2 +- Dockerfile.armhf | 2 +- GapsOnWindows/gaps.nsi | 2 +- GapsWeb/pom.xml | 6 +++--- GapsWeb/src/main/resources/application.yaml | 2 +- GapsWeb/src/main/resources/templates/about.html | 2 +- GapsWeb/src/main/resources/templates/index.html | 2 +- GapsWeb/src/main/resources/templates/updates.html | 5 +++++ GapsWeb/src/test/resources/application.yaml | 2 +- Plex/pom.xml | 2 +- build | 2 +- build.bat | 2 +- cypress/integration/about/about.js | 2 +- package-lock.json | 2 +- package.json | 2 +- pom.xml | 2 +- 18 files changed, 25 insertions(+), 20 deletions(-) diff --git a/Core/pom.xml b/Core/pom.xml index 40c423e..f85723a 100755 --- a/Core/pom.xml +++ b/Core/pom.xml @@ -5,7 +5,7 @@ Gaps com.jasonhhouse - 0.7.4 + 0.7.5 4.0.0 @@ -15,7 +15,7 @@ com.jasonhhouse Plex - 0.7.4 + 0.7.5 diff --git a/Dockerfile b/Dockerfile index 92911c9..2d4b804 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.7.4.jar /usr/app/gaps.jar +COPY GapsWeb/target/GapsWeb-0.7.5.jar /usr/app/gaps.jar COPY start.sh /usr/app/ diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index 4f47217..caf3a15 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.7.4.jar /usr/app/gaps.jar +COPY GapsWeb/target/GapsWeb-0.7.5.jar /usr/app/gaps.jar COPY start.sh /usr/app/ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index b6c4f41..f0e4822 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.7.4.jar /usr/app/gaps.jar +COPY GapsWeb/target/GapsWeb-0.7.5.jar /usr/app/gaps.jar COPY start.sh /usr/app/ diff --git a/GapsOnWindows/gaps.nsi b/GapsOnWindows/gaps.nsi index 4ac6444..dce4b7f 100644 --- a/GapsOnWindows/gaps.nsi +++ b/GapsOnWindows/gaps.nsi @@ -48,4 +48,4 @@ RMDIR /r $INSTDIR SectionEnd # name the installer -OutFile "gaps-0.7.4-installer.exe" \ No newline at end of file +OutFile "gaps-0.7.5-installer.exe" \ No newline at end of file diff --git a/GapsWeb/pom.xml b/GapsWeb/pom.xml index df9a2c5..c792546 100755 --- a/GapsWeb/pom.xml +++ b/GapsWeb/pom.xml @@ -5,7 +5,7 @@ Gaps com.jasonhhouse - 0.7.4 + 0.7.5 4.0.0 @@ -21,13 +21,13 @@ com.jasonhhouse Core - 0.7.4 + 0.7.5 com.jasonhhouse Plex - 0.7.4 + 0.7.5 diff --git a/GapsWeb/src/main/resources/application.yaml b/GapsWeb/src/main/resources/application.yaml index b0f4d4b..1cc6952 100755 --- a/GapsWeb/src/main/resources/application.yaml +++ b/GapsWeb/src/main/resources/application.yaml @@ -47,7 +47,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.7.4 + version: 0.7.5 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 579a497..b5a5831 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.7.4

+

v0.7.5

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 22c774a..22aa823 100755 --- a/GapsWeb/src/main/resources/templates/index.html +++ b/GapsWeb/src/main/resources/templates/index.html @@ -77,7 +77,7 @@

Gaps Logo -

v0.7.4

+

v0.7.5

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 b42860c..3c21754 100755 --- a/GapsWeb/src/main/resources/templates/updates.html +++ b/GapsWeb/src/main/resources/templates/updates.html @@ -78,6 +78,11 @@ Gaps Logo

Updates

+

v0.7.5

+
    +
  • Updating About page
  • +
+

v0.7.4

  • Added auto restart to scheduler
  • diff --git a/GapsWeb/src/test/resources/application.yaml b/GapsWeb/src/test/resources/application.yaml index a90ff2b..49c2254 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.7.4 + version: 0.7.5 loginEnabled: false storageFolder: /usr/data properties: diff --git a/Plex/pom.xml b/Plex/pom.xml index e05e71f..f0a3f74 100755 --- a/Plex/pom.xml +++ b/Plex/pom.xml @@ -5,7 +5,7 @@ Gaps com.jasonhhouse - 0.7.4 + 0.7.5 4.0.0 diff --git a/build b/build index c2ceeb8..3bbd0c6 100755 --- a/build +++ b/build @@ -1,5 +1,5 @@ #!/bin/bash -VERSION=0.7.4 +VERSION=0.7.5 JAR_VERSION="GapsWeb/target/GapsWeb-$VERSION.jar" ZIP_VERSION="Gaps-$VERSION.zip" ./minify diff --git a/build.bat b/build.bat index c0b4e55..af71b8c 100644 --- a/build.bat +++ b/build.bat @@ -18,7 +18,7 @@ call npm run uglifyjs-schedule-js call mvn clean install del GapsOnWindows\*.jar del GapsOnWindows\README.md -copy GapsWeb\target\GapsWeb-0.7.4.jar GapsOnWindows\gaps.jar +copy GapsWeb\target\GapsWeb-0.7.5.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.js b/cypress/integration/about/about.js index 4567133..cf9edb1 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.7.4'); + .should('have.text', 'v0.7.5'); cy.get('.container > :nth-child(6)') .should('have.text', 'Software'); diff --git a/package-lock.json b/package-lock.json index b7811b9..13fa81b 100755 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "gaps", - "version": "0.7.4", + "version": "0.7.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1490434..6f2b6ce 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gaps", - "version": "0.7.4", + "version": "0.7.5", "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 8529882..a87c6b3 100755 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ com.jasonhhouse Gaps - 0.7.4 + 0.7.5 Gaps Demo project for Spring Boot