From 0ba8e8b590d5929f11acde93981601db00ec6f81 Mon Sep 17 00:00:00 2001 From: kqmaverick <121722567+kqmaverick@users.noreply.github.com> Date: Fri, 22 Sep 2023 15:43:02 -0700 Subject: [PATCH] migrate(qbitrr): move to stable (#12705) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move qbitrr to stable ⚒️ 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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}/qbitrr/.helmignore | 0 charts/{incubator => stable}/qbitrr/CHANGELOG.md | 0 charts/{incubator => stable}/qbitrr/Chart.yaml | 6 +++--- charts/{incubator => stable}/qbitrr/README.md | 2 +- .../qbitrr/docs/img/qbit-downloads.png | Bin .../qbitrr/docs/img/qbitrr-codeserver.png | Bin .../qbitrr/docs/installation-notes.md | 0 charts/{incubator => stable}/qbitrr/icon.png | Bin charts/{incubator => stable}/qbitrr/questions.yaml | 0 .../qbitrr/templates/NOTES.txt | 0 .../qbitrr/templates/common.yaml | 0 charts/{incubator => stable}/qbitrr/values.yaml | 0 12 files changed, 4 insertions(+), 4 deletions(-) rename charts/{incubator => stable}/qbitrr/.helmignore (100%) rename charts/{incubator => stable}/qbitrr/CHANGELOG.md (100%) rename charts/{incubator => stable}/qbitrr/Chart.yaml (82%) rename charts/{incubator => stable}/qbitrr/README.md (93%) rename charts/{incubator => stable}/qbitrr/docs/img/qbit-downloads.png (100%) rename charts/{incubator => stable}/qbitrr/docs/img/qbitrr-codeserver.png (100%) rename charts/{incubator => stable}/qbitrr/docs/installation-notes.md (100%) rename charts/{incubator => stable}/qbitrr/icon.png (100%) rename charts/{incubator => stable}/qbitrr/questions.yaml (100%) rename charts/{incubator => stable}/qbitrr/templates/NOTES.txt (100%) rename charts/{incubator => stable}/qbitrr/templates/common.yaml (100%) rename charts/{incubator => stable}/qbitrr/values.yaml (100%) diff --git a/charts/incubator/qbitrr/.helmignore b/charts/stable/qbitrr/.helmignore similarity index 100% rename from charts/incubator/qbitrr/.helmignore rename to charts/stable/qbitrr/.helmignore diff --git a/charts/incubator/qbitrr/CHANGELOG.md b/charts/stable/qbitrr/CHANGELOG.md similarity index 100% rename from charts/incubator/qbitrr/CHANGELOG.md rename to charts/stable/qbitrr/CHANGELOG.md diff --git a/charts/incubator/qbitrr/Chart.yaml b/charts/stable/qbitrr/Chart.yaml similarity index 82% rename from charts/incubator/qbitrr/Chart.yaml rename to charts/stable/qbitrr/Chart.yaml index 29a693b72d6..ec3b1c3d30e 100644 --- a/charts/incubator/qbitrr/Chart.yaml +++ b/charts/stable/qbitrr/Chart.yaml @@ -6,7 +6,7 @@ dependencies: version: 14.0.1 deprecated: false description: A simple script to monitor qBit and communicate with Radarr and Sonarr. -home: https://truecharts.org/charts/incubator/qbitrr +home: https://truecharts.org/charts/stable/qbitrr icon: https://truecharts.org/img/hotlink-ok/chart-icons/qbitrr.png keywords: - qbitrr @@ -19,10 +19,10 @@ maintainers: url: https://truecharts.org name: qbitrr sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/qbitrr + - https://github.com/truecharts/charts/tree/master/charts/stable/qbitrr - https://github.com/Feramance/Qbitrr type: application -version: 0.0.5 +version: 0.0.6 annotations: truecharts.org/SCALE-support: "true" truecharts.org/catagories: | diff --git a/charts/incubator/qbitrr/README.md b/charts/stable/qbitrr/README.md similarity index 93% rename from charts/incubator/qbitrr/README.md rename to charts/stable/qbitrr/README.md index 83229a60265..2e5f8c4b9d9 100644 --- a/charts/incubator/qbitrr/README.md +++ b/charts/stable/qbitrr/README.md @@ -5,7 +5,7 @@ TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE. However only installations using the TrueNAS SCALE Apps system are supported. -For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/) +For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/qbitrr/) **This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** diff --git a/charts/incubator/qbitrr/docs/img/qbit-downloads.png b/charts/stable/qbitrr/docs/img/qbit-downloads.png similarity index 100% rename from charts/incubator/qbitrr/docs/img/qbit-downloads.png rename to charts/stable/qbitrr/docs/img/qbit-downloads.png diff --git a/charts/incubator/qbitrr/docs/img/qbitrr-codeserver.png b/charts/stable/qbitrr/docs/img/qbitrr-codeserver.png similarity index 100% rename from charts/incubator/qbitrr/docs/img/qbitrr-codeserver.png rename to charts/stable/qbitrr/docs/img/qbitrr-codeserver.png diff --git a/charts/incubator/qbitrr/docs/installation-notes.md b/charts/stable/qbitrr/docs/installation-notes.md similarity index 100% rename from charts/incubator/qbitrr/docs/installation-notes.md rename to charts/stable/qbitrr/docs/installation-notes.md diff --git a/charts/incubator/qbitrr/icon.png b/charts/stable/qbitrr/icon.png similarity index 100% rename from charts/incubator/qbitrr/icon.png rename to charts/stable/qbitrr/icon.png diff --git a/charts/incubator/qbitrr/questions.yaml b/charts/stable/qbitrr/questions.yaml similarity index 100% rename from charts/incubator/qbitrr/questions.yaml rename to charts/stable/qbitrr/questions.yaml diff --git a/charts/incubator/qbitrr/templates/NOTES.txt b/charts/stable/qbitrr/templates/NOTES.txt similarity index 100% rename from charts/incubator/qbitrr/templates/NOTES.txt rename to charts/stable/qbitrr/templates/NOTES.txt diff --git a/charts/incubator/qbitrr/templates/common.yaml b/charts/stable/qbitrr/templates/common.yaml similarity index 100% rename from charts/incubator/qbitrr/templates/common.yaml rename to charts/stable/qbitrr/templates/common.yaml diff --git a/charts/incubator/qbitrr/values.yaml b/charts/stable/qbitrr/values.yaml similarity index 100% rename from charts/incubator/qbitrr/values.yaml rename to charts/stable/qbitrr/values.yaml