✨ New Features#3
Open
JawadYzbk wants to merge 11 commits into
Open
Conversation
Remove mouse hover detection and use window focus/blur events instead. This eliminates the _isMouseOverControl state and consolidates control visibility management into _showControlAndResetIdle and _hideControl methods.
- Implement logo resolution with fallback logic and caching - Add country and category filters to channel list - Introduce global keyboard shortcuts for video player navigation - Fix favorites navigation to prevent empty state - Improve channel search with fuzzy matching algorithm
- Add stream selector UI with placement option to switch between available URLs - Implement automatic fallback to next stream on network, codec, or media errors - Add retry and manual fallback buttons to error overlay with stream status - Introduce CPU‑based quality capping and adaptive downshifting on stalls - Improve error handling with specific reasons and recovery attempts
Persist the last successfully played stream URL for each channel in localStorage. When loading a channel, automatically select the previously preferred stream if available. This improves user experience by avoiding manual stream reselection after reloads.
- Add native HLS playback fallback when Hls.js is not supported or fails - Refactor stream loading into separate methods (_playWithHls, _playWithNative) - Track HLS attachment state to avoid duplicate attach/detach calls - Add fallback attempt tracking to prevent infinite retry loops - Improve error recovery by trying native playback before failing
- Remove openStreamInVlc API and IPC handler - Remove VLC fallback logic and native HLS playback fallback - Simplify video player to always use HLS.js when available - Add vlc-media-player dependency for potential future use - Clean up unused state variables and methods
- Migrate from deprecated `externalizeDepsPlugin` to new `externalizeDeps` option - Enable bytecode compilation for main and preload processes - Upgrade electron-vite to v5.0.0 and related toolkit dependencies - Update Electron to v41.0.3 and other dev dependencies to latest versions
- Add timeshift configuration options (enabled/disabled, buffer size) - Implement timeshift UI with seek bar, live indicator, and keyboard shortcuts - Update HLS back buffer length based on timeshift configuration - Add timeshift controls to video player with live edge tracking
The previous 3-second threshold was too strict, causing the player to frequently switch between live and timeshift modes during normal playback. The 6-second grace period provides more stable live detection while still accurately reflecting when the user is significantly behind the live edge. Additionally, improve visual feedback by displaying "LIVE" in red text when at live edge instead of showing an empty label.
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.
✨ New Features
Added Favorite Channels feature
Added channel logo resolution with improved channel filtering
Video Player:
🔧 Improvements
♻️ Refactoring
🐛 Fixes
📦 Build
electron-viteconfig🚀 Summary
This release focuses on video player stability, better stream fallback, favorites support, and live TV improvements including timeshift and smarter stream detection.