kryten-webqueue 0.7.2__tar.gz → 0.7.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/CHANGELOG.md +6 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/PKG-INFO +1 -1
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/static/css/main.css +7 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/queue/index.html +1 -1
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/pyproject.toml +1 -1
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/.github/workflows/python-publish.yml +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/.github/workflows/release.yml +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/.gitignore +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/README.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/config.example.json +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/deploy/kryten-webqueue.service +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/deploy/nginx-queue.conf +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/docs/IMPLEMENTATION_SPEC.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/docs/IMPL_API_GATE.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/docs/IMPL_ECONOMY.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/docs/IMPL_KRYTEN_PY.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/docs/IMPL_ROBOT.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/docs/PRE_PLAN_GAPS.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/docs/PRODUCT_PLAN.md +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/__main__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/api_gate/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/api_gate/client.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/app.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/auth/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/auth/otp.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/auth/rate_limit.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/auth/session.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/catalog/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/catalog/db.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/catalog/images.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/catalog/sync.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/config.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/jobs/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/jobs/manager.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/playlists/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/playlists/fire.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/playlists/importer.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/playlists/scheduler.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/queue/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/queue/ordering.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/queue/poller.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/queue/shadow.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/admin_jobs.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/admin_playlists.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/admin_queue.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/admin_schedules.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/auth.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/catalog.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/pages.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/queue.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/routes/user.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/static/js/main.js +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/admin/index.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/admin/playlists.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/admin/queue_mgmt.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/admin/schedules.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/auth/login.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/base.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/catalog/browse.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/catalog/item_detail.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/catalog/item_not_found.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/user/dashboard.html +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/ws/__init__.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/ws/handler.py +0 -0
- {kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/ws/manager.py +0 -0
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
## [0.7.3] - 2026-06-08
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **Description line breaks now render.** MediaCMS stores descriptions as newline-delimited plain text (`Synopsis:` / `Tagline:` / `Cast & Crew:` sections separated by `\n`), but the catalog item-detail page collapsed those newlines into a single run-on paragraph. Both the item-detail description and the Now Playing card now use `white-space: pre-line` to preserve the line/paragraph breaks; the Now Playing card also normalizes legacy `\r\n` line endings.
|
|
12
|
+
|
|
7
13
|
## [0.7.2] - 2026-06-08
|
|
8
14
|
|
|
9
15
|
### Changed
|
|
@@ -507,6 +507,13 @@ a:hover {
|
|
|
507
507
|
white-space: pre-line;
|
|
508
508
|
overflow-wrap: anywhere;
|
|
509
509
|
}
|
|
510
|
+
/* MediaCMS descriptions are newline-delimited plain text; preserve the line
|
|
511
|
+
breaks (Synopsis / Tagline / Cast & Crew sections) instead of collapsing them. */
|
|
512
|
+
.item-detail-description {
|
|
513
|
+
white-space: pre-line;
|
|
514
|
+
overflow-wrap: anywhere;
|
|
515
|
+
line-height: 1.6;
|
|
516
|
+
}
|
|
510
517
|
.np-chips {
|
|
511
518
|
display: flex;
|
|
512
519
|
flex-wrap: wrap;
|
|
@@ -121,7 +121,7 @@ function renderQueue(state) {
|
|
|
121
121
|
<div class="np-remaining">${formatTime(remaining)} remaining</div>
|
|
122
122
|
</div>
|
|
123
123
|
</div>
|
|
124
|
-
${np.description ? `<div class="np-description">${escapeHtml(np.description)}</div>` : ''}
|
|
124
|
+
${np.description ? `<div class="np-description">${escapeHtml(String(np.description).replace(/\r\n?/g, '\n'))}</div>` : ''}
|
|
125
125
|
${chips ? `<div class="np-chips">${chips}</div>` : ''}
|
|
126
126
|
`;
|
|
127
127
|
} else {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/admin/playlists.html
RENAMED
|
File without changes
|
{kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/admin/queue_mgmt.html
RENAMED
|
File without changes
|
{kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/admin/schedules.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/catalog/browse.html
RENAMED
|
File without changes
|
{kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/catalog/item_detail.html
RENAMED
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.7.2 → kryten_webqueue-0.7.3}/kryten_webqueue/templates/user/dashboard.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|