Feature: threads #1
|
|
@ -42,7 +42,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"cleanExifDescription": "Удалять метаданные EXIF (модель камеры, геолокация, время) из изображений еред отправкой.",
|
"cleanExifDescription": "Удалять метаданные EXIF (модель камеры, геолокация, время) из изображений перед отправкой.",
|
||||||
"@cleanExifDescription": {
|
"@cleanExifDescription": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,8 @@ abstract class AppConfig {
|
||||||
static bool enableGradient = true;
|
static bool enableGradient = true;
|
||||||
static bool cleanExif = true;
|
static bool cleanExif = true;
|
||||||
|
|
||||||
|
|
||||||
|
static String? httpProxy;
|
||||||
static String get defaultHomeserver => _defaultHomeserver;
|
static String get defaultHomeserver => _defaultHomeserver;
|
||||||
static double fontSizeFactor = 1;
|
static double fontSizeFactor = 1;
|
||||||
static const Color chatColor = primaryColor;
|
static const Color chatColor = primaryColor;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|
||||||
abstract class SettingKeys {
|
abstract class SettingKeys {
|
||||||
|
static const String httpProxy = 'xyz.extera.next.httpProxy';
|
||||||
static const String cleanExif = 'xyz.extera.next.cleanExif';
|
static const String cleanExif = 'xyz.extera.next.cleanExif';
|
||||||
static const String displayNavigationRail = 'chat.fluffy.displayNavigationRail';
|
static const String displayNavigationRail = 'chat.fluffy.displayNavigationRail';
|
||||||
static const String hideAvatarsInInvites = 'xyz.extera.next.hideAvatarsInInvites';
|
static const String hideAvatarsInInvites = 'xyz.extera.next.hideAvatarsInInvites';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue