-
Notifications
You must be signed in to change notification settings - Fork 338
Feature: Add minimized video service (YouTube-style PiP) #5423
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
aliIsazadeh
wants to merge
24
commits into
element-hq:feature/bma/minimizeVideoPlayer
Choose a base branch
from
aliIsazadeh:minimized-video
base: feature/bma/minimizeVideoPlayer
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.
+722
−10
Open
Changes from 15 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
9f024c7
feat(floating-video): add system-wide mini-player draft
aliIsazadeh a111b5e
Merge branch 'element-hq:develop' into minimized-video
aliIsazadeh 16db3ab
fixed the bug of video being full size at first
aliIsazadeh bbc5458
Merge remote-tracking branch 'origin/minimized-video' into minimized-…
aliIsazadeh 0f3fec9
Merge branch 'develop' into minimized-video
aliIsazadeh fe18ef7
-remove unused setMinimize
aliIsazadeh 49a765d
-removed added icons and string and using existing icons and strings
aliIsazadeh daf7461
-adjusting maximize button size
aliIsazadeh 46d226b
Merge branch 'element-hq:develop' into minimized-video
aliIsazadeh d07dc1e
-remove extra service declaration of service in app manifest
aliIsazadeh b99e67f
Merge remote-tracking branch 'origin/minimized-video' into minimized-…
aliIsazadeh 2f9f56d
-remove extra import
aliIsazadeh 7c13c1f
-remove extra string file
aliIsazadeh b9f415f
refactor: Convert floating video overlay to Compose with direct view …
aliIsazadeh a90c19a
Merge branch 'develop' into minimized-video
aliIsazadeh 6a3cb61
-revert changes in gradle.properties and project
aliIsazadeh f91d167
- Broke down large FloatingVideoService into multiple smaller files f…
aliIsazadeh 1466e74
Merge remote-tracking branch 'origin/minimized-video' into minimized-…
aliIsazadeh b33720c
fix(video): stabilize floating video behavior
aliIsazadeh d4228a8
-Converted VideoDataRepository to @SingleIn(AppScope::class) with @In…
aliIsazadeh 19defb1
-on video completes the minimized video gose away
aliIsazadeh 2cf92d5
-Toast for display over apps persmission(string needs to be added to …
aliIsazadeh 44105d2
Merge branch 'element-hq:develop' into minimized-video
aliIsazadeh 1978751
Merge branch 'develop' into minimized-video
aliIsazadeh 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,19 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| ~ Copyright 2025 New Vector Ltd. | ||
| ~ | ||
| ~ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial | ||
| ~ Please see LICENSE files in the repository root for full details. | ||
| --> | ||
|
|
||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
| package="io.element.android.libraries.mediaviewer.impl"> | ||
| <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> | ||
|
|
||
| <application> | ||
| <service | ||
| android:name=".floatingvideo.FloatingVideoService" | ||
| android:enabled="true" | ||
| android:exported="false" /> | ||
| </application> | ||
| </manifest> |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert all the changes in this file. You can place your local configuration in the file
local.propertiesinstead, which is ignore by VCS.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My apologies — I’m not sure when these changes were made and committed. It wasn’t intentional.