SergeantPanda
dce6dbdd7a
Chore: Cleanup unused import.
2026-04-18 19:27:19 -05:00
Seth Van Niekerk
cf4f85f1bd
oops forgot to add downgrade warning to PluginCard
2026-04-18 18:03:25 -04:00
Seth Van Niekerk
a30539494c
change PluginSupportDisclaimer to use Dispatcharr logo and branding
2026-04-18 17:57:06 -04:00
Seth Van Niekerk
2e891a457f
Add security and support disclaimers for plugins, normalize warnings across plugin-system actions
2026-04-18 17:36:58 -04:00
SergeantPanda
4c19eb0dc6
Merge pull request #1199 from sv-dispatcharr/feat/plugin-hub-sizes
...
CI Pipeline / prepare (push) Has been cancelled
Build and Push Multi-Arch Docker Image / build-and-push (push) Has been cancelled
Frontend Tests / test (push) Has been cancelled
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Has been cancelled
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Has been cancelled
CI Pipeline / create-manifest (push) Has been cancelled
[Feature]: Add filesizes to plugin hub
2026-04-17 15:10:51 -05:00
SergeantPanda
7a506e01ac
Merge branch 'dev' of https://github.com/Dispatcharr/Dispatcharr into pr/sethwv/1199
2026-04-17 14:56:25 -05:00
SergeantPanda
f035319e5d
Moved SizedInstallButton to components\theme. Skip showing bytes if bytes is somehow 0 (probably not possible but just for consistency).
...
Ran Prettier formatting.
2026-04-17 14:49:01 -05:00
SergeantPanda
d676903825
Enhancement: Cache channel names to reduce repeated DB queries in StreamManager and StreamGenerator. This improves performance by avoiding unnecessary database calls during retries and logging events. ( Fixes #1138 )
CI Pipeline / prepare (push) Waiting to run
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Blocked by required conditions
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
CI Pipeline / create-manifest (push) Blocked by required conditions
Build and Push Multi-Arch Docker Image / build-and-push (push) Waiting to run
2026-04-17 10:55:41 -05:00
Seth Van Niekerk
110f51f711
Add file size display to plugin details and install buttons and information popups
2026-04-17 09:50:02 -04:00
Seth Van Niekerk
6c71115514
Enhancement: Add additional fields to plugin manifest including maintainers, deprecated status, repo URL, Discord thread, and latest size.
2026-04-17 09:11:14 -04:00
GitHub Actions
9914e65c4c
Release v0.23.0
CI Pipeline / prepare (push) Waiting to run
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Blocked by required conditions
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
CI Pipeline / create-manifest (push) Blocked by required conditions
Build and Push Multi-Arch Docker Image / build-and-push (push) Has been cancelled
Frontend Tests / test (push) Has been cancelled
2026-04-17 00:24:03 +00:00
SergeantPanda
d6c551a381
Merge pull request #1198 from Dispatcharr/dev
...
Dispatcharr - v0.23.0
2026-04-16 19:14:24 -05:00
SergeantPanda
6cd6d3ef9a
Enhancement: - **Output bitrate DB persistence**: the ffmpeg_output_bitrate stat is no longer written to the database on every FFmpeg stats tick (~2/second). Instead, a local exponential moving average (EMA, α=0.1) accumulates readings continuously. The first 10 samples (~5 seconds) are discarded as warmup to avoid polluting the average with FFmpeg's unstable ramp-up values. After warmup, the smoothed value is flushed to the database at most once every 30 seconds, and a final flush occurs when the stream stops but only if the EMA has been seeded (i.e. the stream ran past warmup). Streams that stop during warmup leave the existing database value untouched, preserving previously accurate measurements when channel-hopping.
2026-04-16 17:15:54 -05:00
SergeantPanda
a0f27d8116
Enhancement: Add debouce for plugin repo refresh interval setting.
2026-04-16 14:38:04 -05:00
SergeantPanda
54ab3e8981
performance:
...
- Performance: `xc_get_epg` now uses `select_related('epg_data__epg_source')` on all three channel fetch paths. Previously each request triggered 2 additional queries to resolve `channel.epg_data` and `channel.epg_data.epg_source`.
- Performance: `generate_m3u` now uses `prefetch_related` for streams when `?direct=true` is requested, eliminating N+1 stream queries (one per channel) on that code path.
- Performance: `EPGGridAPIView` (`apps/epg/api_views.py`) now uses `select_related('epg_data__epg_source')` on the `channels_with_custom_dummy` queryset, eliminating 2 extra queries per channel (for `epg_data` and `epg_source`) in the dummy EPG generation loop.
2026-04-16 13:19:19 -05:00
SergeantPanda
16984bc386
performance:
...
CI Pipeline / prepare (push) Waiting to run
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Blocked by required conditions
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
CI Pipeline / create-manifest (push) Blocked by required conditions
Build and Push Multi-Arch Docker Image / build-and-push (push) Waiting to run
- `generate_epg` now uses `select_related('epg_data__epg_source')` on all EPG channel querysets
- `generate_epg` now issues a single cross-channel `ProgramData` bulk query. `.values()` returns plain dicts
- `xc_get_live_streams` no longer calls `ChannelGroup.objects.get_or_create(name="Default Group")` once per null-group channel
2026-04-16 11:12:53 -05:00
SergeantPanda
aab30a3f50
changelog: Update changelog for views performance pr.
2026-04-14 17:55:30 -05:00
SergeantPanda
ebfd974fd8
Merge branch 'dev' of https://github.com/Dispatcharr/Dispatcharr into dev
2026-04-14 17:50:35 -05:00
SergeantPanda
04ce2dacd1
Merge pull request #1165 from xBOBxSAGETx:perf/select-related-channel-queries
...
CI Pipeline / prepare (push) Has been cancelled
Build and Push Multi-Arch Docker Image / build-and-push (push) Has been cancelled
Frontend Tests / test (push) Has been cancelled
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Has been cancelled
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Has been cancelled
CI Pipeline / create-manifest (push) Has been cancelled
Add select_related to Channel queries in output views
2026-04-14 17:50:10 -05:00
SergeantPanda
dec4652ae8
changelog: fix terminology.
2026-04-14 17:07:51 -05:00
SergeantPanda
44d86ebfc0
Merge branch 'dev' of https://github.com/Dispatcharr/Dispatcharr into dev
2026-04-14 17:07:20 -05:00
SergeantPanda
d4262960c2
changelog: Update changelog for DVR PR.
2026-04-14 17:07:07 -05:00
SergeantPanda
50ec5d9f1a
Merge pull request #1143 from fezster/1140---EPG-Record-specific-channel
...
1140: EPG Record - select channel number explicitly rather than use tvgId
2026-04-14 17:04:32 -05:00
SergeantPanda
e603ff7a49
fix(migration): Fix plugin repo migration that specified AutoField for id instead of BigAutoField.
2026-04-14 16:36:16 -05:00
SergeantPanda
d4a4c99744
Merge pull request #1157 from JCBird1012/postgres-unix-socket
...
perf: use PostgreSQL Unix socket for AIO
2026-04-14 16:20:23 -05:00
SergeantPanda
dbf40fe687
changelog: changelog for PG socket PR
2026-04-14 16:04:24 -05:00
SergeantPanda
1289e95c93
Merge branch 'dev' of https://github.com/Dispatcharr/Dispatcharr into pr/JCBird1012/1157
2026-04-14 15:57:48 -05:00
SergeantPanda
d5e6ee0a0d
Enhancement: Use Unix socket if AIO and POSTGRES_HOST is set to loopback.
2026-04-14 15:51:40 -05:00
SergeantPanda
1cd557062e
changelog: Update changelog for nginx/logo cache changes.
2026-04-14 15:13:35 -05:00
SergeantPanda
c4972f7dc9
fix: clear previous failure entries after successful logo fetch in LogoViewSet and VODLogoViewSet
2026-04-14 13:34:17 -05:00
SergeantPanda
978714a74d
fix: improve remote logo fetching with timeout and caching for failures
2026-04-14 13:04:45 -05:00
SergeantPanda
c819a95cb5
fix: update API cache locations and improve proxy settings
2026-04-14 12:59:58 -05:00
SergeantPanda
a756719cf1
changelog: Update changelog for docker stop PR.
CI Pipeline / prepare (push) Waiting to run
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Blocked by required conditions
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
CI Pipeline / create-manifest (push) Blocked by required conditions
Build and Push Multi-Arch Docker Image / build-and-push (push) Waiting to run
2026-04-13 20:32:34 -05:00
SergeantPanda
c56fa7a6b8
Merge pull request #1191 from Shokkstokk:fix/graceful-shutdown-exit-137
...
fix: graceful container shutdown - exit 137 on docker stop
2026-04-13 20:29:44 -05:00
SergeantPanda
6ad1207a0b
fix: graceful container shutdown and cleanup improvements
...
- Explicitly stop uwsgi, celery, daphne, and redis-server on SIGTERM;
these are spawned as uwsgi attach-daemons and were not tracked in
pids[], causing exit 137 on docker stop
- Replace fixed sleep 3 with a polling loop (8 s ceiling) that exits as
soon as all processes have stopped
- Use pg_ctl stop -m immediate as the postgres force-stop fallback
instead of SIGKILL to avoid data corruption
- Add _cleanup_done guard to prevent double invocation of cleanup() when
the trap fires and the explicit call at script end both execute
- Register process names at startup in pid_names[] so crash diagnostics
show meaningful names after a process has exited
- Suppress the unexpected-exit diagnostic block on normal docker stop
- Guard all pgrep-based pids+=() against empty values (nginx, vite,
postgres) to prevent empty PID entries corrupting the pids[] array
2026-04-13 20:21:01 -05:00
SergeantPanda
f98bb183da
Bug Fix: Fixed a provider TCP connection leak in the VOD proxy
2026-04-13 19:33:22 -05:00
SergeantPanda
a3f7d465d5
Merge pull request #1125 from firestaerter3:fix/vod-profile-connections-race-conditions
...
fix(vod-proxy): eliminate profile_connections counter stuck-at-nonzero races
2026-04-13 19:11:12 -05:00
SergeantPanda
55048b60e3
fix(vod-proxy): prevent double profile decrement and clean up stream counter naming
2026-04-13 18:40:33 -05:00
SergeantPanda
d73071b20f
Merge branch 'dev' of https://github.com/Dispatcharr/Dispatcharr into pr/firestaerter3/1125
2026-04-13 17:42:43 -05:00
SergeantPanda
f8407610c8
Bug Fix/Enhancement: Improve logic for get xc epg endpoint for short epgs. Also support epg_days from xc user for xc epg endpoint.
CI Pipeline / prepare (push) Waiting to run
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Blocked by required conditions
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
CI Pipeline / create-manifest (push) Blocked by required conditions
Build and Push Multi-Arch Docker Image / build-and-push (push) Waiting to run
Frontend Tests / test (push) Has been cancelled
2026-04-12 18:51:40 -05:00
SergeantPanda
9f3d4ff7ff
Enhancement: Improved the EPG response cache key
2026-04-12 18:19:19 -05:00
SergeantPanda
62848c0ea0
Enhancement: Improved the HDHR, M3U, and EPG URL builder popovers in the Channels table
2026-04-12 17:24:17 -05:00
SergeantPanda
95fba1cb84
Bug Fix: Fixed the XC Password field in the User modal being editable by standard users
2026-04-12 16:45:58 -05:00
SergeantPanda
123509eb9d
Enhancement: Redesigned the User settings modal with a tabbed layout
2026-04-12 16:39:35 -05:00
SergeantPanda
ba967f47d9
Enhancement: **EPG historical data window**: the EPG XML output and XC EPG API now support a prev_days URL parameter (e.g. &prev_days=3) to include past programs in the EPG response. This allows third-party players that request historical program schedules to receive the data they need. The EPG URL builder in the Channels page exposes "Days forward" and "Days back" controls. Per-user defaults for both values (epg_days / epg_prev_days) can be configured in the User settings modal and are applied automatically when no URL parameter is present. ( Closes #1154 )
2026-04-12 16:34:15 -05:00
SergeantPanda
a83b9fdf62
Enhancement: EPG channel scanning now automatically removes stale EPGData entries.
2026-04-12 15:37:28 -05:00
SergeantPanda
298ca3260e
tests: Update frontend tests for recent frontend changes (Floating Video Player and Stream Connection Card)
CI Pipeline / prepare (push) Waiting to run
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Blocked by required conditions
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
CI Pipeline / create-manifest (push) Blocked by required conditions
Build and Push Multi-Arch Docker Image / build-and-push (push) Waiting to run
Frontend Tests / test (push) Waiting to run
2026-04-12 12:37:02 -05:00
SergeantPanda
e69a8f3449
Bug Fix: Stats page "Active Stream" dropdown not updating when a stream switch occurs
2026-04-12 12:28:39 -05:00
SergeantPanda
b629836b3d
Bug Fix: Fixed stream switch metadata (url, user_agent, stream_id, m3u_profile) being written to Redis before the switch was confirmed to succeed
2026-04-12 12:02:20 -05:00
SergeantPanda
65d14644b4
Bug Fix: Fixed the next_stream rotation endpoint applying the same class of bug
2026-04-12 11:36:08 -05:00