From 99944990500fbbade9cdaf15a315d34ec01dafe9 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Thu, 28 Nov 2024 01:11:12 +0530 Subject: [PATCH 1/2] [mob] Bump version v0.9.65 --- mobile/lib/ui/viewer/people/save_or_edit_person.dart | 8 ++------ mobile/pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/mobile/lib/ui/viewer/people/save_or_edit_person.dart b/mobile/lib/ui/viewer/people/save_or_edit_person.dart index 138da0cae25..1a6de76c4e3 100644 --- a/mobile/lib/ui/viewer/people/save_or_edit_person.dart +++ b/mobile/lib/ui/viewer/people/save_or_edit_person.dart @@ -122,8 +122,8 @@ class _SaveOrEditPersonState extends State { child: snapshot.hasData ? PersonFaceWidget( key: ValueKey( - person?.data.avatarFaceID ?? - "",), + person?.data.avatarFaceID ?? "", + ), personFile, clusterID: personClusterID, personId: person!.remoteID, @@ -166,10 +166,6 @@ class _SaveOrEditPersonState extends State { setState(() { person = result; }); - showToast( - context, - "Person avatar updated ${person!.data.avatarFaceID ?? 'empty'}", - ); Bus.instance.fire( PeopleChangedEvent(), ); diff --git a/mobile/pubspec.yaml b/mobile/pubspec.yaml index 6eab8a1a32f..b475dd03b7e 100644 --- a/mobile/pubspec.yaml +++ b/mobile/pubspec.yaml @@ -12,7 +12,7 @@ description: ente photos application # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.9.64+964 +version: 0.9.65+965 publish_to: none environment: From b2482acfc3a6fbdf9a3e26eb21c4ce5cb03cfb7a Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Thu, 28 Nov 2024 01:18:48 +0530 Subject: [PATCH 2/2] [mob] Hint inputType --- mobile/lib/ui/viewer/people/save_or_edit_person.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mobile/lib/ui/viewer/people/save_or_edit_person.dart b/mobile/lib/ui/viewer/people/save_or_edit_person.dart index 1a6de76c4e3..897aebd6f4e 100644 --- a/mobile/lib/ui/viewer/people/save_or_edit_person.dart +++ b/mobile/lib/ui/viewer/people/save_or_edit_person.dart @@ -203,6 +203,9 @@ class _SaveOrEditPersonState extends State { ), const SizedBox(height: 36), TextFormField( + keyboardType: TextInputType.name, + textCapitalization: TextCapitalization.words, + autocorrect: false, onChanged: (value) { if (_debounce?.isActive ?? false) _debounce?.cancel(); _debounce =