From 6b970eda25ceb24a837546896f756cd8dc580aef Mon Sep 17 00:00:00 2001 From: Albert Romkes Date: Fri, 31 Oct 2025 22:02:28 +0100 Subject: [PATCH] feat(booklore) move booklore to stable (#41286) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move Booklore 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 - [ ] 📜 Documentation Changes **🧪 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 changes to the documentation - [ ] 🧪 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 - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ 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}/booklore/.helmignore | 0 charts/{incubator => stable}/booklore/CHANGELOG.md | 0 charts/{incubator => stable}/booklore/Chart.yaml | 10 +++++----- charts/{incubator => stable}/booklore/README.md | 0 .../booklore/docs/installation_notes.md | 0 charts/{incubator => stable}/booklore/icon.png | Bin .../booklore/templates/NOTES.txt | 0 .../booklore/templates/common.yaml | 0 charts/{incubator => stable}/booklore/values.yaml | 0 9 files changed, 5 insertions(+), 5 deletions(-) rename charts/{incubator => stable}/booklore/.helmignore (100%) rename charts/{incubator => stable}/booklore/CHANGELOG.md (100%) rename charts/{incubator => stable}/booklore/Chart.yaml (87%) rename charts/{incubator => stable}/booklore/README.md (100%) rename charts/{incubator => stable}/booklore/docs/installation_notes.md (100%) rename charts/{incubator => stable}/booklore/icon.png (100%) rename charts/{incubator => stable}/booklore/templates/NOTES.txt (100%) rename charts/{incubator => stable}/booklore/templates/common.yaml (100%) rename charts/{incubator => stable}/booklore/values.yaml (100%) diff --git a/charts/incubator/booklore/.helmignore b/charts/stable/booklore/.helmignore similarity index 100% rename from charts/incubator/booklore/.helmignore rename to charts/stable/booklore/.helmignore diff --git a/charts/incubator/booklore/CHANGELOG.md b/charts/stable/booklore/CHANGELOG.md similarity index 100% rename from charts/incubator/booklore/CHANGELOG.md rename to charts/stable/booklore/CHANGELOG.md diff --git a/charts/incubator/booklore/Chart.yaml b/charts/stable/booklore/Chart.yaml similarity index 87% rename from charts/incubator/booklore/Chart.yaml rename to charts/stable/booklore/Chart.yaml index 452a0af69f8..b4200ffa0dc 100644 --- a/charts/incubator/booklore/Chart.yaml +++ b/charts/stable/booklore/Chart.yaml @@ -9,7 +9,7 @@ annotations: truecharts.org/max_kubernetes_version: 1.32.0 truecharts.org/min_helm_version: "3.14" truecharts.org/min_kubernetes_version: 1.24.0 - truecharts.org/train: incubator + truecharts.org/train: stable apiVersion: v2 appVersion: 1.10.0 dependencies: @@ -29,7 +29,7 @@ dependencies: import-values: [] deprecated: false description: A self-hosted, multi-user digital library with smart shelves, auto metadata, Kobo & KOReader sync, BookDrop imports, OPDS support, and a built-in reader for EPUB, PDF, and comics -home: https://truecharts.org/charts/incubator/booklore +home: https://truecharts.org/charts/stable/booklore icon: https://truecharts.org/img/hotlink-ok/chart-icons/booklore.webp keywords: - booklore @@ -43,8 +43,8 @@ name: booklore sources: - https://ghcr.io/booklore-app/booklore - https://github.com/booklore-app/booklore - - https://github.com/truecharts/charts/tree/master/charts/incubator/booklore - - https://github.com/trueforge-org/truecharts/tree/master/charts/incubator/booklore + - https://github.com/truecharts/charts/tree/master/charts/stable/booklore + - https://github.com/trueforge-org/truecharts/tree/master/charts/stable/booklore type: application -version: 0.2.0 +version: 1.0.0 diff --git a/charts/incubator/booklore/README.md b/charts/stable/booklore/README.md similarity index 100% rename from charts/incubator/booklore/README.md rename to charts/stable/booklore/README.md diff --git a/charts/incubator/booklore/docs/installation_notes.md b/charts/stable/booklore/docs/installation_notes.md similarity index 100% rename from charts/incubator/booklore/docs/installation_notes.md rename to charts/stable/booklore/docs/installation_notes.md diff --git a/charts/incubator/booklore/icon.png b/charts/stable/booklore/icon.png similarity index 100% rename from charts/incubator/booklore/icon.png rename to charts/stable/booklore/icon.png diff --git a/charts/incubator/booklore/templates/NOTES.txt b/charts/stable/booklore/templates/NOTES.txt similarity index 100% rename from charts/incubator/booklore/templates/NOTES.txt rename to charts/stable/booklore/templates/NOTES.txt diff --git a/charts/incubator/booklore/templates/common.yaml b/charts/stable/booklore/templates/common.yaml similarity index 100% rename from charts/incubator/booklore/templates/common.yaml rename to charts/stable/booklore/templates/common.yaml diff --git a/charts/incubator/booklore/values.yaml b/charts/stable/booklore/values.yaml similarity index 100% rename from charts/incubator/booklore/values.yaml rename to charts/stable/booklore/values.yaml