Merge branch 'main' into feature/threads
This commit is contained in:
commit
301e505f49
|
|
@ -42,7 +42,7 @@
|
|||
"type": "String",
|
||||
"placeholders": {}
|
||||
},
|
||||
"cleanExifDescription": "Удалять метаданные EXIF (модель камеры, геолокация, время) из изображений еред отправкой.",
|
||||
"cleanExifDescription": "Удалять метаданные EXIF (модель камеры, геолокация, время) из изображений перед отправкой.",
|
||||
"@cleanExifDescription": {
|
||||
"type": "String",
|
||||
"placeholders": {}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in New Issue