From ff4d920dbaa2ceb1eb219beaecca0eca6663654d Mon Sep 17 00:00:00 2001 From: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> Date: Tue, 29 Aug 2023 13:17:08 -0400 Subject: [PATCH] feat(plexripper) move plexripper to stable (#12016) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move plexripper to stable + add download storage to gui. ⚒️ Fixes # **⚙️ Type of change** - [X] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [X] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- charts/{incubator => stable}/plexripper/.helmignore | 0 .../{incubator => stable}/plexripper/CHANGELOG.md | 0 charts/{incubator => stable}/plexripper/Chart.yaml | 6 +++--- charts/{incubator => stable}/plexripper/README.md | 0 charts/{incubator => stable}/plexripper/icon.png | Bin .../{incubator => stable}/plexripper/questions.yaml | 8 ++++++++ .../plexripper/templates/NOTES.txt | 0 .../plexripper/templates/common.yaml | 0 charts/{incubator => stable}/plexripper/values.yaml | 5 ++++- 9 files changed, 15 insertions(+), 4 deletions(-) rename charts/{incubator => stable}/plexripper/.helmignore (100%) rename charts/{incubator => stable}/plexripper/CHANGELOG.md (100%) rename charts/{incubator => stable}/plexripper/Chart.yaml (80%) rename charts/{incubator => stable}/plexripper/README.md (100%) rename charts/{incubator => stable}/plexripper/icon.png (100%) rename charts/{incubator => stable}/plexripper/questions.yaml (91%) rename charts/{incubator => stable}/plexripper/templates/NOTES.txt (100%) rename charts/{incubator => stable}/plexripper/templates/common.yaml (100%) rename charts/{incubator => stable}/plexripper/values.yaml (93%) diff --git a/charts/incubator/plexripper/.helmignore b/charts/stable/plexripper/.helmignore similarity index 100% rename from charts/incubator/plexripper/.helmignore rename to charts/stable/plexripper/.helmignore diff --git a/charts/incubator/plexripper/CHANGELOG.md b/charts/stable/plexripper/CHANGELOG.md similarity index 100% rename from charts/incubator/plexripper/CHANGELOG.md rename to charts/stable/plexripper/CHANGELOG.md diff --git a/charts/incubator/plexripper/Chart.yaml b/charts/stable/plexripper/Chart.yaml similarity index 80% rename from charts/incubator/plexripper/Chart.yaml rename to charts/stable/plexripper/Chart.yaml index 9c6bcec8323..12d71936b9b 100644 --- a/charts/incubator/plexripper/Chart.yaml +++ b/charts/stable/plexripper/Chart.yaml @@ -3,9 +3,9 @@ appVersion: "0.14.0" dependencies: - name: common repository: https://library-charts.truecharts.org - version: 13.2.2 + version: 14.0.3 deprecated: false -description: PlexRipper is a cross-platform media downloader that indexes the Plex servers you have access to and allows you to download everything while adding it to your own Plex server. +description: A multi-platform media downloader that indexes and downloads content from your accessible Plex servers. home: https://truecharts.org/charts/incubator/plexripper icon: https://truecharts.org/img/hotlink-ok/chart-icons/plexripper.png keywords: @@ -26,7 +26,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/plexripper - https://github.com/PlexRipper/PlexRipper/ type: application -version: 4.0.5 +version: 4.0.6 annotations: truecharts.org/catagories: | - media diff --git a/charts/incubator/plexripper/README.md b/charts/stable/plexripper/README.md similarity index 100% rename from charts/incubator/plexripper/README.md rename to charts/stable/plexripper/README.md diff --git a/charts/incubator/plexripper/icon.png b/charts/stable/plexripper/icon.png similarity index 100% rename from charts/incubator/plexripper/icon.png rename to charts/stable/plexripper/icon.png diff --git a/charts/incubator/plexripper/questions.yaml b/charts/stable/plexripper/questions.yaml similarity index 91% rename from charts/incubator/plexripper/questions.yaml rename to charts/stable/plexripper/questions.yaml index 1d10daa9b0f..91d45fe77d9 100644 --- a/charts/incubator/plexripper/questions.yaml +++ b/charts/stable/plexripper/questions.yaml @@ -49,6 +49,14 @@ questions: additional_attrs: true type: dict attrs: +# Include{persistenceBasic} + - variable: downloads + label: App Downloads Storage + description: Stores the Application Downloads. + schema: + additional_attrs: true + type: dict + attrs: # Include{persistenceBasic} # Include{persistenceList} # Include{ingressRoot} diff --git a/charts/incubator/plexripper/templates/NOTES.txt b/charts/stable/plexripper/templates/NOTES.txt similarity index 100% rename from charts/incubator/plexripper/templates/NOTES.txt rename to charts/stable/plexripper/templates/NOTES.txt diff --git a/charts/incubator/plexripper/templates/common.yaml b/charts/stable/plexripper/templates/common.yaml similarity index 100% rename from charts/incubator/plexripper/templates/common.yaml rename to charts/stable/plexripper/templates/common.yaml diff --git a/charts/incubator/plexripper/values.yaml b/charts/stable/plexripper/values.yaml similarity index 93% rename from charts/incubator/plexripper/values.yaml rename to charts/stable/plexripper/values.yaml index 405d9e3d8f1..73f9aa08d29 100644 --- a/charts/incubator/plexripper/values.yaml +++ b/charts/stable/plexripper/values.yaml @@ -14,9 +14,9 @@ service: main: ports: main: - port: 7000 protocol: http targetPort: 7000 + port: 7000 workload: main: @@ -38,6 +38,9 @@ persistence: config: enabled: true mountPath: /Config + downloads: + enabled: true + mountPath: /Downloads portal: open: