Skip to content

Commit becd669

Browse files
committed
bump version
1 parent b865afe commit becd669

File tree

5 files changed

+91
-74
lines changed

5 files changed

+91
-74
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
4+
## 0.0.60
5+
6+
- Improved logging to debug the 'Tap to load' issue.
7+
8+
==> If you encounter any issues, please send your debug log via the feedback button along with a short description of the error so that we can resolve them. :)
9+
10+
- Display your own avatar in the title bar of the chat list.
11+
- Created a default avatar image in case none was set.
12+
- Improved UI handling when requesting microphone access for the first time.
13+
- Flutter SDK and dependencies upgraded.
14+
- Multiple bug fixes.
15+
316
## 0.0.59
417

518
- Fixing media download error

lib/src/views/chats/chat_list.view.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ class _ChatListViewState extends State<ChatListView> {
7979

8080
final user = await getUser();
8181
if (user == null) return;
82-
_user = user;
82+
setState(() {
83+
_user = user;
84+
});
8385
final changeLog = await rootBundle.loadString('CHANGELOG.md');
8486
final changeLogHash =
8587
(await compute(Sha256().hash, changeLog.codeUnits)).bytes;

lib/src/views/settings/subscription/subscription.view.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ class _SubscriptionViewState extends State<SubscriptionView> {
310310
}));
311311
},
312312
),
313-
if (isPayingUser)
313+
if (isPayingUser || currentPlan == 'Tester')
314314
BetterListTile(
315315
icon: FontAwesomeIcons.userPlus,
316316
text: context.lang.manageAdditionalUsers,
@@ -387,8 +387,10 @@ class PlanCard extends StatelessWidget {
387387
];
388388
case 'Family':
389389
features = [
390-
context.lang.familyFeature1,
390+
context.lang.proFeature1,
391391
context.lang.familyFeature2,
392+
context.lang.proFeature3,
393+
context.lang.proFeature4,
392394
];
393395
default:
394396
}

0 commit comments

Comments
 (0)