Merge branch 'main' into feature/threads

This commit is contained in:
OfficialDakari 2025-11-02 17:55:12 +05:00
commit 301e505f49
3 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,7 @@
"type": "String",
"placeholders": {}
},
"cleanExifDescription": "Удалять метаданные EXIF (модель камеры, геолокация, время) из изображений еред отправкой.",
"cleanExifDescription": "Удалять метаданные EXIF (модель камеры, геолокация, время) из изображений перед отправкой.",
"@cleanExifDescription": {
"type": "String",
"placeholders": {}

View File

@ -15,6 +15,8 @@ abstract class AppConfig {
static bool enableGradient = true;
static bool cleanExif = true;
static String? httpProxy;
static String get defaultHomeserver => _defaultHomeserver;
static double fontSizeFactor = 1;
static const Color chatColor = primaryColor;

View File

@ -1,6 +1,7 @@
import 'package:shared_preferences/shared_preferences.dart';
abstract class SettingKeys {
static const String httpProxy = 'xyz.extera.next.httpProxy';
static const String cleanExif = 'xyz.extera.next.cleanExif';
static const String displayNavigationRail = 'chat.fluffy.displayNavigationRail';
static const String hideAvatarsInInvites = 'xyz.extera.next.hideAvatarsInInvites';