Skip to content

Commit

Permalink
[mob] Bump version v0.9.65 (#4217)
Browse files Browse the repository at this point in the history
## Description

## Tests
  • Loading branch information
ua741 authored Nov 27, 2024
2 parents 5f1beec + b2482ac commit d2761b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions mobile/lib/ui/viewer/people/save_or_edit_person.dart
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ class _SaveOrEditPersonState extends State<SaveOrEditPerson> {
child: snapshot.hasData
? PersonFaceWidget(
key: ValueKey(
person?.data.avatarFaceID ??
"",),
person?.data.avatarFaceID ?? "",
),
personFile,
clusterID: personClusterID,
personId: person!.remoteID,
Expand Down Expand Up @@ -166,10 +166,6 @@ class _SaveOrEditPersonState extends State<SaveOrEditPerson> {
setState(() {
person = result;
});
showToast(
context,
"Person avatar updated ${person!.data.avatarFaceID ?? 'empty'}",
);
Bus.instance.fire(
PeopleChangedEvent(),
);
Expand Down Expand Up @@ -207,6 +203,9 @@ class _SaveOrEditPersonState extends State<SaveOrEditPerson> {
),
const SizedBox(height: 36),
TextFormField(
keyboardType: TextInputType.name,
textCapitalization: TextCapitalization.words,
autocorrect: false,
onChanged: (value) {
if (_debounce?.isActive ?? false) _debounce?.cancel();
_debounce =
Expand Down
2 changes: 1 addition & 1 deletion mobile/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d2761b6

Please sign in to comment.