patchy8736
c57f9fd7e7
Fix episode processing issues in VOD tasks
...
- Ensure season and episode numbers are properly converted to integers with error handling
- Remove zero-padding from debug log format for season/episode numbers
- Add validation to filter out relations with unsaved episodes that have no primary key
- Add proper logging for skipped relations when episode is not saved to database
These changes address potential crashes when API returns string values instead of integers
and prevent database errors when bulk creation operations fail silently due to conflicts.
Fixes issue #770
2026-01-01 15:57:27 +01:00
Nick Sandstrom
b4b0774189
Including notification util changes
2025-12-31 13:20:09 -08:00
Nick Sandstrom
7b1a85617f
Minor changes
...
Exporting UiSettingsForm as default
Reverted admin level type check
2025-12-31 13:12:24 -08:00
Nick Sandstrom
a6361a07d2
Extracted component and util logic
2025-12-31 13:12:24 -08:00
sethwv-alt
b157159b87
Fix root-owned __pycache__ by running Django commands as non-root user
2025-12-31 12:16:19 -05:00
Nick Sandstrom
d9fc0e68d6
Signaling ready when no StreamTable rendered
2025-12-29 22:18:42 -08:00
Nick Sandstrom
43525ca32a
Moved RecordingList outside of DVRPage
...
Helps to prevent renders
2025-12-27 23:49:06 -08:00
Nick Sandstrom
ffa1331c3b
Updated to use util functions
2025-12-27 23:17:42 -08:00
Nick Sandstrom
26d9dbd246
Added plugins store
2025-12-27 22:45:48 -08:00
Nick Sandstrom
f97399de07
Extracted component and util logic
2025-12-27 22:45:48 -08:00
Nick Sandstrom
a5688605cd
Lazy-loading button modals
2025-12-27 22:45:48 -08:00
Nick Sandstrom
ca96adf781
Extracted notification util
2025-12-27 22:45:48 -08:00
Nick Sandstrom
61247a452a
Extracted component and util logic
2025-12-27 22:45:48 -08:00
Nick Sandstrom
fda188e738
Updated style props
2025-12-27 22:45:48 -08:00
SergeantPanda
57a6a842b2
Bug Fix/Enhancement:
...
CI Pipeline / prepare (push) Has been cancelled
Build and Push Multi-Arch Docker Image / build-and-push (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
- M3U and EPG URLs now correctly preserve non-standard HTTPS ports (e.g., `:8443`) when accessed behind reverse proxies that forward the port in headers — `get_host_and_port()` now properly checks `X-Forwarded-Port` header before falling back to other detection methods (Fixes #704 )
- M3U stream URLs now use `build_absolute_uri_with_port()` for consistency with EPG and logo URLs, ensuring uniform port handling across all M3U file URLs
2025-12-27 09:57:36 -06:00
SergeantPanda
f1c096bc94
Bug Fix: XtreamCodes M3U files now correctly set x-tvg-url and url-tvg headers to reference XC EPG URL (xmltv.php) instead of standard EPG endpoint when downloaded via XC API ( Fixes #629 )
2025-12-27 08:19:58 -06:00
Vitek
5a4be532fd
Fix VOD category filtering for names containing pipe characters
...
Use rsplit('|', 1) instead of split('|', 1) to split from the right,
preserving any pipe characters in category names (e.g., "PL | BAJKI",
"EN | MOVIES"). This ensures the category_type is correctly extracted
as the last segment while keeping the full category name intact.
Fixes MovieFilter, SeriesFilter, and UnifiedContentViewSet category parsing.
2025-12-27 00:21:42 +01:00
SergeantPanda
cc3ed80e1a
changelog: Add thanks for errorboundary.
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
2025-12-26 16:16:25 -06:00
SergeantPanda
af88756197
Merge pull request #761 from nick4810/enhancement/component-cleanup
...
Enhancement/component cleanup
2025-12-26 16:08:49 -06:00
SergeantPanda
1b1f360705
Enhancement: Channel number inputs in stream-to-channel creation modals no longer have a maximum value restriction, allowing users to enter any valid channel number supported by the database
2025-12-26 15:55:25 -06:00
SergeantPanda
bc3ef1a3a9
Bug Fix: M3U and EPG manager page no longer crashes when a playlist references a deleted channel group (Fixes screen blank on navigation)
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
2025-12-26 14:58:02 -06:00
SergeantPanda
81af73a086
changelog: Add entry for stream validation continuing GET request on HEAD failure
2025-12-26 13:53:48 -06:00
SergeantPanda
0abacf1fef
Merge pull request #783 from kvnnap/dev
2025-12-26 13:51:03 -06:00
SergeantPanda
36a39cd4de
Bug fix: XtreamCodes EPG limit parameter now properly converted to integer to prevent type errors when accessing EPG listings ( Fixes #781 )
2025-12-26 13:34:53 -06:00
SergeantPanda
46413b7e3a
changelog: Update changelog for code refactoring and logo changes.
2025-12-26 12:44:26 -06:00
SergeantPanda
874e981449
Merge branch 'dev' of https://github.com/Dispatcharr/Dispatcharr into pr/nick4810/761
2025-12-26 12:37:57 -06:00
SergeantPanda
f5c6d2b576
Enhancement: Implement event-driven logo loading orchestration on Channels page
...
Introduce gated logo loading system that ensures logos render after both
ChannelsTable and StreamsTable have completed their initial data fetch,
preventing visual race conditions and ensuring proper paint order.
Changes:
- Add `allowLogoRendering` flag to logos store to gate logo fetching
- Implement `onReady` callbacks in ChannelsTable and StreamsTable
- Add orchestration logic in Channels.jsx to coordinate table readiness
- Use double requestAnimationFrame to defer logo loading until after browser paint
- Remove background logo loading from App.jsx (now page-specific)
- Simplify fetchChannelAssignableLogos to reuse fetchAllLogos
- Remove logos dependency from ChannelsTable columns to prevent re-renders
This ensures visual loading order: Channels → EPG → Streams → Logos,
regardless of network speed or data size, without timer-based hacks.
2025-12-26 12:30:08 -06:00
Kevin Napoli
1ef5a9ca13
Fix: Continue GET request if HEAD fails with the peer closing the connection without returning a response
2025-12-26 15:27:51 +01:00
SergeantPanda
2d31eca93d
changelog: Correct formatting for thanks of event viewer arrow direction fix entry
Base Image Build / prepare (push) Has been cancelled
CI Pipeline / prepare (push) Has been cancelled
Build and Push Multi-Arch Docker Image / build-and-push (push) Has been cancelled
Base Image Build / docker (amd64, ubuntu-24.04) (push) Has been cancelled
Base Image Build / docker (arm64, ubuntu-24.04-arm) (push) Has been cancelled
Base Image Build / create-manifest (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
2025-12-24 16:15:23 -06:00
SergeantPanda
510c9fc617
Merge pull request #757 from sethwv/dev
2025-12-24 16:14:29 -06:00
SergeantPanda
8f63659ad7
changelog: Update changelog for VLC support
2025-12-24 16:11:52 -06:00
SergeantPanda
31b9868bfd
Merge branch 'dev' of https://github.com/Dispatcharr/Dispatcharr into pr/sethwv/757
2025-12-24 16:04:04 -06:00
SergeantPanda
da4597ac95
Merge branch 'main' of https://github.com/Dispatcharr/Dispatcharr into dev
2025-12-24 15:49:20 -06:00
SergeantPanda
523a127c81
Enhancement: Add VLC dependencies to DispatcharrBase image.
Base Image Build / prepare (push) Has been cancelled
Build and Push Multi-Arch Docker Image / build-and-push (push) Has been cancelled
Base Image Build / docker (amd64, ubuntu-24.04) (push) Has been cancelled
Base Image Build / docker (arm64, ubuntu-24.04-arm) (push) Has been cancelled
Base Image Build / create-manifest (push) Has been cancelled
2025-12-24 15:48:56 -06:00
SergeantPanda
ec3093d9af
Changelog: Update changelog to include client IP display in network access warning modal
2025-12-24 15:43:33 -06:00
SergeantPanda
5481b18d8a
Merge pull request #779 from damien-alt-sudo/feature/ui-network-access-clientip
2025-12-24 15:39:31 -06:00
Damien
bfca663870
Feature: Add client_ip response from settings check api to UI
2025-12-24 19:30:03 +00:00
Damien
11b3320277
Feature: Add client_ip response from settings check API
2025-12-24 19:27:38 +00:00
SergeantPanda
44a122924f
advanced filtering for hiding disabled channels and viewing only empty channels
...
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
(cherry picked from commit ea38c0b4b8 )
Closes #182
2025-12-23 17:37:38 -06:00
SergeantPanda
48ebaffadd
Cleanup dockerfile a bit.
2025-12-23 17:04:09 -06:00
SergeantPanda
daa919c764
Refactor logging messages in StreamManager for clarity and consistency. Also removed redundant parsing.
2025-12-23 15:52:56 -06:00
SergeantPanda
8f811f2ed3
Correct profile name casing for FFmpeg, Streamlink, and VLC in fixtures.json
2025-12-23 15:17:50 -06:00
SergeantPanda
ff7298a93e
Enhance StreamManager for efficient log parsing and update VLC stream profile naming
2025-12-23 15:07:25 -06:00
Nick Sandstrom
9c9cbab94c
Reverted lazy load of StreamsTable
2025-12-23 12:27:29 -08:00
SergeantPanda
904500906c
Bug Fix: Update stream validation to return original URL instead of redirected URL when using redirect profile.
2025-12-23 09:51:02 -06:00
SergeantPanda
106ea72c9d
Changelog: Fix event viewer arrow direction for corrected UI behavior
2025-12-22 17:38:55 -06:00
drnikcuk
eea84cfd8b
Update Stats.jsx ( #773 )
...
* Update Stats.jsx
Adds fix for stats control arrows direction swap
2025-12-22 17:33:26 -06:00
GitHub Actions
c7590d204e
Release v0.15.1
2025-12-22 22:58:41 +00:00
SergeantPanda
7a0af3445a
Merge pull request #774 from Dispatcharr/dev
...
Version 0.15.1
2025-12-22 16:55:59 -06:00
SergeantPanda
18645fc08f
Bug Fix: Re-apply failed merge to fix clients that don't have ipv6 support.
2025-12-22 16:39:09 -06:00