-
-
Notifications
You must be signed in to change notification settings - Fork 830
feat: add casting controls and expandable workspace navigation #1056
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
SalemOurabi
wants to merge
24
commits into
4gray:master
Choose a base branch
from
SalemOurabi:codex/casting-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
bc9d535
test(playback): define casting contracts
SalemOurabi 17c6e80
feat(playback): add secure remote casting controls
SalemOurabi 441be83
fix(playback): address casting review findings
SalemOurabi e49383c
fix(dev): harden electron startup coordination
SalemOurabi c4e8886
test(playback): reproduce persistent cast overlay
SalemOurabi b9007db
fix(playback): auto-hide casting control
SalemOurabi b22772f
test(playback): cover hidden cast accessibility
SalemOurabi 839dcbc
fix(playback): hide inactive cast control from focus
SalemOurabi 516755e
Merge remote-tracking branch 'upstream/master' into codex/casting-sup…
SalemOurabi 4696ba9
test(workspace): reproduce compact rail toggle behavior
SalemOurabi a21b842
feat(workspace): add expandable navigation rail
SalemOurabi fe66103
Merge remote-tracking branch 'upstream/master' into codex/casting-sup…
SalemOurabi f0feae7
fix(i18n): clarify Arabic navigation labels
SalemOurabi a0c42f5
test(xtream): reproduce noisy IPC failures
SalemOurabi a515c0a
Return structured Xtream error responses via IPC
SalemOurabi afcb366
fix(xtream): preserve cancellations and repair electron e2e
SalemOurabi 9f27fd3
Merge upstream master into casting support
SalemOurabi cf901ee
Merge remote-tracking branch 'upstream/master' into codex/casting-sup…
SalemOurabi 25f1aa9
Merge upstream/master into codex/casting-support
SalemOurabi 10adae4
refactor(xtream): extract request helpers into xtream-request.util
SalemOurabi dd6cc37
fix(playback): address casting review feedback
SalemOurabi 0c0df9e
fix(csp): allow YouTube trailer embeds in frame-src
SalemOurabi 944e87e
fix(playback): keep the cast control reachable across players and ful…
SalemOurabi cf4efb7
feat(playback): fullscreen the player container so casting works in f…
SalemOurabi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| import { ipcMain } from 'electron'; | ||
| import { ResolvedPortalPlayback } from '@iptvnator/shared/interfaces'; | ||
| import { DlnaRendererService } from '../services/dlna-renderer.service'; | ||
|
|
||
| const dlnaRendererService = new DlnaRendererService(); | ||
|
|
||
| ipcMain.handle('CAST:DLNA_DISCOVER', () => dlnaRendererService.discover()); | ||
| ipcMain.handle( | ||
| 'CAST:DLNA_START', | ||
| (_event, deviceId: string, playback: ResolvedPortalPlayback) => | ||
| dlnaRendererService.startPlayback(deviceId, playback) | ||
| ); | ||
|
|
||
| export default class CastingEvents { | ||
| static bootstrapCastingEvents(): Electron.IpcMain { | ||
| return ipcMain; | ||
| } | ||
| } | ||
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.