kryten-webqueue 0.1.3__tar.gz → 0.1.6__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.1.3 → kryten_webqueue-0.1.6}/.github/workflows/release.yml +0 -22
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/PKG-INFO +1 -1
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/pyproject.toml +1 -1
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/.github/workflows/python-publish.yml +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/.gitignore +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/README.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/config.example.json +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/deploy/kryten-webqueue.service +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/deploy/nginx-queue.conf +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/docs/IMPLEMENTATION_SPEC.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/docs/IMPL_API_GATE.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/docs/IMPL_ECONOMY.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/docs/IMPL_KRYTEN_PY.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/docs/IMPL_ROBOT.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/docs/PRE_PLAN_GAPS.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/docs/PRODUCT_PLAN.md +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/__main__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/api_gate/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/api_gate/client.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/app.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/auth/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/auth/otp.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/auth/rate_limit.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/auth/session.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/catalog/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/catalog/db.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/catalog/images.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/catalog/sync.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/config.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/playlists/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/playlists/fire.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/playlists/importer.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/playlists/scheduler.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/queue/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/queue/ordering.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/queue/poller.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/queue/shadow.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/admin_playlists.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/admin_queue.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/admin_schedules.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/auth.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/catalog.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/pages.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/queue.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/routes/user.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/static/css/main.css +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/static/js/main.js +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/admin/index.html +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/auth/login.html +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/base.html +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/catalog/browse.html +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/queue/index.html +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/user/dashboard.html +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/ws/__init__.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/ws/handler.py +0 -0
- {kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/ws/manager.py +0 -0
|
@@ -101,25 +101,3 @@ jobs:
|
|
|
101
101
|
permissions:
|
|
102
102
|
id-token: write
|
|
103
103
|
contents: read
|
|
104
|
-
|
|
105
|
-
notify-release:
|
|
106
|
-
name: Notify Release Created
|
|
107
|
-
runs-on: ubuntu-latest
|
|
108
|
-
needs: [create-release, publish-to-pypi]
|
|
109
|
-
|
|
110
|
-
steps:
|
|
111
|
-
- uses: actions/checkout@v4
|
|
112
|
-
|
|
113
|
-
- name: Read version from pyproject.toml
|
|
114
|
-
id: version
|
|
115
|
-
run: |
|
|
116
|
-
VERSION=$(grep -m1 'version = "' pyproject.toml | cut -d '"' -f 2)
|
|
117
|
-
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
118
|
-
echo "tag=v$VERSION" >> $GITHUB_OUTPUT
|
|
119
|
-
|
|
120
|
-
- name: Send notification
|
|
121
|
-
run: |
|
|
122
|
-
echo "📢 Release notification"
|
|
123
|
-
echo "Version: ${{ steps.version.outputs.tag }}"
|
|
124
|
-
echo "Repository: ${{ github.repository }}"
|
|
125
|
-
echo "Release URL: https://github.com/${{ github.repository }}/releases/tag/${{ steps.version.outputs.tag }}"
|
|
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.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/catalog/browse.html
RENAMED
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.1.3 → kryten_webqueue-0.1.6}/kryten_webqueue/templates/user/dashboard.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|