Skip to content
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

Add secondary panel modes switches to Call (#811) #837

Merged
merged 23 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ All user visible changes to this project will be documented in this file. This p
- Cache maximum size slider. ([#794], [#789])
- Media panel:
- Screen dimming when close to ear on mobile. ([#823], [#808])
- Secondary panel mode switches. ([#837], [#811])

### Changed

Expand Down Expand Up @@ -91,9 +92,11 @@ All user visible changes to this project will be documented in this file. This p
[#805]: /../../pull/805
[#808]: /../../issues/808
[#810]: /../../issues/810
[#811]: /../../issues/811
[#816]: /../../pull/816
[#823]: /../../pull/823
[#827]: /../../pull/827
[#837]: /../../pull/837



Expand Down
1 change: 1 addition & 0 deletions assets/icons/call_floating.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/call_gallery.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/call_side.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/icons/fullscreen_enter_small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/icons/fullscreen_exit_small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions lib/domain/service/my_user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ class MyUserService extends DisposableService {
Log.debug('updateUserPassword(***, ***)', '$runtimeType');

await _passwordChangeGuard.protect(() async {
// TODO: Make sure [AuthService] doesn't its `renewSession` during that.
await _userRepo.updateUserPassword(oldPassword, newPassword);
await _auth.signIn(newPassword, num: myUser.value?.num);
});
Expand Down
Loading
Loading