Merge commit '723de21d719d6e6c09ee95169700f5ba7eeb88a7' into fluffychat-merge

This commit is contained in:
ggurdin 2025-06-09 15:11:57 -04:00
commit 2f0c2bf8bf
No known key found for this signature in database
GPG key ID: A01CB41737CBB478
9 changed files with 56 additions and 54 deletions

View file

@ -6,6 +6,7 @@
<locale android:name="bo"/>
<locale android:name="ca"/>
<locale android:name="cs"/>
<locale android:name="da"/>
<locale android:name="de"/>
<locale android:name="el"/>
<locale android:name="en"/>
@ -50,6 +51,7 @@
<locale android:name="tr"/>
<locale android:name="uk"/>
<locale android:name="vi"/>
<locale android:name="yue"/>
<locale android:name="zh"/>
<locale android:name="zh"/>
</locale-config>

View file

@ -3274,7 +3274,7 @@
"@notificationRuleJitsi": {},
"allDevices": "Alle Geräte",
"@allDevices": {},
"enterNewChat": "Neuen Chat starten",
"enterNewChat": "Neuen Chat betreten",
"@enterNewChat": {},
"shareKeysWith": "Schlüssel teilen mit...",
"@shareKeysWith": {},

View file

@ -3354,5 +3354,28 @@
"approve": "Goedkeuren",
"@approve": {},
"youHaveKnocked": "Je hebt geklopt",
"@youHaveKnocked": {}
"@youHaveKnocked": {},
"sentVoiceMessage": "🎙️ {duration} - {sender}",
"@sentVoiceMessage": {
"type": "String",
"placeholders": {
"sender": {
"type": "String"
},
"duration": {
"type": "String"
}
}
},
"countInvited": "{count} uitgenodigd",
"@countInvited": {
"type": "String",
"placeholders": {
"count": {
"type": "int"
}
}
},
"checkList": "Checklist",
"@checkList": {}
}

View file

@ -1 +0,0 @@
{}

View file

@ -1,4 +1,5 @@
{
"@@locale": "yue",
"normalUser": "正常用家",
"@normalUser": {},
"areYouSureYouWantToLogout": "係咪確定要 log out",

View file

@ -1674,13 +1674,18 @@ class ChatController extends State<ChatPageWithRoom>
}
void goToNewRoomAction() async {
final newRoomId = room
.getState(EventTypes.RoomTombstone)!
.parsedTombstoneContent
.replacementRoom;
final result = await showFutureLoadingDialog(
context: context,
future: () => room.client.joinRoomById(
future: () => room.client.joinRoom(
room
.getState(EventTypes.RoomTombstone)!
.parsedTombstoneContent
.replacementRoom,
via: [newRoomId.domain!],
),
);
if (result.error != null) return;

View file

@ -1,5 +1,6 @@
import 'dart:typed_data';
import 'package:image/image.dart';
import 'package:matrix/matrix.dart';
extension ClientDownloadContentExtension on Client {
@ -10,6 +11,7 @@ extension ClientDownloadContentExtension on Client {
bool isThumbnail = false,
bool? animated,
ThumbnailMethod? thumbnailMethod,
bool rounded = false,
}) async {
// To stay compatible with previous storeKeys:
final cacheKey = isThumbnail
@ -44,10 +46,17 @@ extension ClientDownloadContentExtension on Client {
if (response.statusCode != 200) {
throw Exception();
}
final remoteData = response.bodyBytes;
var imageData = response.bodyBytes;
await database?.storeFile(cacheKey, remoteData, 0);
if (rounded) {
final image = decodeImage(imageData);
if (image != null) {
imageData = copyCropCircle(image).toUint8List();
}
}
return remoteData;
await database?.storeFile(cacheKey, imageData, 0);
return imageData;
}
}

View file

@ -1,3 +1,4 @@
import 'dart:convert';
import 'dart:ui';
import 'package:flutter/foundation.dart';
@ -16,7 +17,6 @@ import 'package:fluffychat/utils/client_download_content_extension.dart';
import 'package:fluffychat/utils/client_manager.dart';
import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart';
import 'package:fluffychat/utils/platform_infos.dart';
import 'package:fluffychat/utils/shortcut_memory_icon.dart';
Future<void> pushHelper(
PushNotification notification, {
@ -165,11 +165,12 @@ Future<void> _tryPushHelper(
: await client
.downloadMxcCached(
avatar,
thumbnailMethod: ThumbnailMethod.scale,
width: 256,
height: 256,
thumbnailMethod: ThumbnailMethod.crop,
width: 128,
height: 128,
animated: false,
isThumbnail: true,
rounded: true,
)
.timeout(const Duration(seconds: 3));
} catch (e, s) {
@ -186,11 +187,12 @@ Future<void> _tryPushHelper(
: await client
.downloadMxcCached(
senderAvatar,
thumbnailMethod: ThumbnailMethod.scale,
width: 256,
height: 256,
thumbnailMethod: ThumbnailMethod.crop,
width: 128,
height: 128,
animated: false,
isThumbnail: true,
rounded: true,
)
.timeout(const Duration(seconds: 3));
} catch (e, s) {
@ -320,10 +322,7 @@ Future<void> _setShortcut(
action: AppConfig.inviteLinkPrefix + event.room.id,
shortLabel: title,
conversationShortcut: true,
icon: await avatarFile?.toShortcutMemoryIcon(
event.room.id,
event.room.client.database,
),
icon: avatarFile == null ? null : base64Encode(avatarFile),
shortcutIconAsset: avatarFile == null
? ShortcutIconAsset.androidAsset
: ShortcutIconAsset.memoryAsset,

View file

@ -1,36 +0,0 @@
import 'dart:convert';
import 'dart:typed_data';
import 'package:image/image.dart';
import 'package:matrix/matrix.dart';
extension ShortcutMemoryIcon on Uint8List {
Future<String?> toShortcutMemoryIcon(
String roomId,
DatabaseApi? database,
) async {
final cacheKey = Uri.parse('im.fluffychat://shortcuts/$roomId');
final cachedFile = await database?.getFile(cacheKey);
if (cachedFile != null) return base64Encode(cachedFile);
final image = decodeImage(this);
if (image == null) return null;
final size = image.width < image.height ? image.width : image.height;
final x = (image.width - size) ~/ 2;
final y = (image.height - size) ~/ 2;
final croppedImage = copyCrop(
image,
x: x,
y: y,
width: size,
height: size,
);
final bytes = croppedImage.toUint8List();
await database?.storeFile(cacheKey, bytes, 0);
return base64Encode(croppedImage.toUint8List());
}
}