-
Notifications
You must be signed in to change notification settings - Fork 60
DVR #68
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Open
shambler123
wants to merge
33
commits into
dev
Choose a base branch
from
feature/22
base: dev
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
DVR #68
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
518a325
WIP refacto
jlucidar ab9d3ca
Merge branch 'dev' into feature/refacto
jlucidar 258e9a2
bug fixes + Proper event handling for player (Observable Java pattern)
jlucidar 8aed123
No more warnings + update dependencies
jlucidar 7e3a4f8
add dvr feature
markussta 98457fe
stuff
markussta e519abd
rollback
markussta 806e25a
update dvr
markussta 556beb6
add missing files
markussta 2f703fe
dvr version first
markussta 879ddb1
moved init
markussta 2fb45ad
updated dvr branch
markussta 5b29b5e
rebased to new dev branch
markussta 42d04b9
first version of dvr implementation. work in progress
markussta f2bc27e
updated style and minor changes
markussta e31693c
rebased to dev
markussta 252f91d
Merge remote-tracking branch 'origin/feature/refacto' into feature/22
markussta 45a38cc
merged refactor branch
markussta 4efb67c
added feature for gallery button and fixed toolbar display bug
markussta e0b6c7f
removed isRecording check from MainActivity
markussta 60cb09b
added thumb update to different locations
markussta c99dd7c
minor updates
markussta b04bc43
fixed some perfomance issues and recording lags on the dvr
markussta f44645b
changed to a different access to InputStream
markussta 6f17c81
changed from handler to Listener
markussta 6710312
added dvr repair function
markussta 46280c6
fixed crash on dvr repair
markussta ff5dc68
removed toast causes crashes ...
markussta 4f6d55c
on overlay visible show toolbar as well
markussta b481180
Merge branch 'dev' into feature/22
markussta c5ef237
reorganize mainActivity to facilitate merge
jlucidar 70d41c9
Merge branch 'dev' into feature/22
jlucidar e4af1f5
minor tweaking of the DVR toolbar look / fix typo
jlucidar 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.
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
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.
Would be best to use scoped storage and shared directories :
https://developer.android.com/training/data-storage/shared/media
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.
mhh i know bad habit to use the old implementation ;-)
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.
for backwards compatibility I leave it as it is. we can change it 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.
Better change it before a release/merge: WRITE_EXTERNAL_STORAGE no longer provides write access when targeting Android 11 - even with 'android:requestLegacyExternalStorage'. Sdk level 11+ is required for updates starting November 2021. This could delay feature/bugfix rollouts until the dvr is reworked.
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.
ok good to know! i will update that