release: version 1.6.0.dev

This commit is contained in:
hiddify-com
2024-07-12 23:39:34 +02:00
parent 16ebcff54d
commit b550307ef3
6 changed files with 12 additions and 12 deletions

View File

@@ -163,14 +163,14 @@ abstract class ConfigOptions {
static final tlsFragmentSize = PreferencesNotifier.create<OptionalRange, String>(
"tls-fragment-size",
const OptionalRange(min: 1, max: 500),
const OptionalRange(min: 10, max: 30),
mapFrom: OptionalRange.parse,
mapTo: const OptionalRangeJsonConverter().toJson,
);
static final tlsFragmentSleep = PreferencesNotifier.create<OptionalRange, String>(
"tls-fragment-sleep",
const OptionalRange(min: 0, max: 500),
const OptionalRange(min: 2, max: 8),
mapFrom: OptionalRange.parse,
mapTo: const OptionalRangeJsonConverter().toJson,
);