Conversation
Contributor
Author
--- HelmRelease: media/booklore Deployment: media/booklore
+++ HelmRelease: media/booklore Deployment: media/booklore
@@ -111,13 +111,13 @@
key: MARIADB_PASSWORD
name: booklore-secret
- name: DATABASE_URL
value: jdbc:mariadb://localhost:3306/booklore
- name: DATABASE_USERNAME
value: booklore
- image: ghcr.io/booklore-app/booklore:v2.1.0
+ image: ghcr.io/booklore-app/booklore:v2.2.0
livenessProbe:
failureThreshold: 5
httpGet:
path: /api/v1/healthcheck
port: 6060
periodSeconds: 30 |
Contributor
Author
--- kubernetes/apps/media/booklore/app Kustomization: media/booklore HelmRelease: media/booklore
+++ kubernetes/apps/media/booklore/app Kustomization: media/booklore HelmRelease: media/booklore
@@ -45,13 +45,13 @@
key: MARIADB_PASSWORD
name: booklore-secret
DATABASE_URL: jdbc:mariadb://localhost:3306/booklore
DATABASE_USERNAME: booklore
image:
repository: ghcr.io/booklore-app/booklore
- tag: v2.1.0
+ tag: v2.2.0
probes:
liveness:
custom: true
enabled: true
spec:
failureThreshold: 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.1.0→v2.2.0Release Notes
booklore-app/booklore (ghcr.io/booklore-app/booklore)
v2.2.0Compare Source
🌟 What's New in v2.2.0
This release introduces (or brings back) two new library organization modes: Book per File and Book per Folder, giving you explicit control over how Booklore groups files into books during scanning.
When Booklore first started, the philosophy was simple: don't worry about how files are organized on disk, just scan everything and figure it out. This worked well when libraries only contained single-file formats like EPUB and PDF. But as support grew for multi-format books and multi-file audiobooks, that approach started to break down. The existing Auto-detect mode uses fuzzy filename matching and heuristics to guess how files should be grouped, and while it works in many cases, it has some real problems: files can get missed during scans, multi-file audiobooks sometimes show up as separate books (one per file), and the grouping behavior is unpredictable since it depends on how your files happen to be named.
Rather than continuing to patch Auto-detect, I'm introducing two new modes that are simple, predictable, and thoroughly-tested:
Book per File: Every file becomes its own book. One file, one book, no guessing. This is now the default for new libraries.
Book per Folder: Files in the same folder are grouped into a single book. Great for organized libraries with an
Author/Title/structure, and it handles multi-format books and folder-based audiobooks naturally. If you have a folder with an EPUB, a MOBI, and anaudiobook/subfolder, they all become one book.Auto-detect is not going away. Existing libraries using it will continue to work as before. But it's now marked as legacy, and I strongly recommend switching to one of the new modes. They're simpler, more reliable, and will be the focus of ongoing development and support going forward.
You can set the organization mode when creating a new library, but cannot change it on an existing library. For a detailed breakdown of each mode with examples, check out the documentation.
🚀 New Features
✨ Enhancements
🐛 Bug Fixes
🛠️ Refactoring & Maintenance
🐳 Docker Images
booklore/booklore:v2.2.0ghcr.io/booklore-app/booklore:v2.2.0Full Changelog: booklore-app/booklore@v2.1.0...v2.2.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Renovate Bot.