Feature: threads #1

Open
OfficialDakari wants to merge 2 commits from feature/threads into main
3 changed files with 4 additions and 1 deletions
Showing only changes of commit f327927fdd - Show all commits

View File

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

View File

@ -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;

View File

@ -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';