sync get option in android setting (#8393)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
parent
37ebac2a9e
commit
e23a9da1a8
@ -1,2 +1,2 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
cargo build --features flutter --release --target aarch64-apple-ios --lib
|
cargo build --features flutter,hwcodec --release --target aarch64-apple-ios --lib
|
||||||
|
@ -504,9 +504,9 @@ class _GeneralState extends State<_General> {
|
|||||||
Widget record(BuildContext context) {
|
Widget record(BuildContext context) {
|
||||||
final showRootDir = isWindows && bind.mainIsInstalled();
|
final showRootDir = isWindows && bind.mainIsInstalled();
|
||||||
return futureBuilder(future: () async {
|
return futureBuilder(future: () async {
|
||||||
String user_dir = await bind.mainVideoSaveDirectory(root: false);
|
String user_dir = bind.mainVideoSaveDirectory(root: false);
|
||||||
String root_dir =
|
String root_dir =
|
||||||
showRootDir ? await bind.mainVideoSaveDirectory(root: true) : '';
|
showRootDir ? bind.mainVideoSaveDirectory(root: true) : '';
|
||||||
bool user_dir_exists = await Directory(user_dir).exists();
|
bool user_dir_exists = await Directory(user_dir).exists();
|
||||||
bool root_dir_exists =
|
bool root_dir_exists =
|
||||||
showRootDir ? await Directory(root_dir).exists() : false;
|
showRootDir ? await Directory(root_dir).exists() : false;
|
||||||
|
@ -89,6 +89,27 @@ class _SettingsState extends State<SettingsPage> with WidgetsBindingObserver {
|
|||||||
super.initState();
|
super.initState();
|
||||||
WidgetsBinding.instance.addObserver(this);
|
WidgetsBinding.instance.addObserver(this);
|
||||||
|
|
||||||
|
_enableAbr = option2bool(
|
||||||
|
kOptionEnableAbr, bind.mainGetOptionSync(key: kOptionEnableAbr));
|
||||||
|
_denyLANDiscovery = !option2bool(kOptionEnableLanDiscovery,
|
||||||
|
bind.mainGetOptionSync(key: kOptionEnableLanDiscovery));
|
||||||
|
_onlyWhiteList = (bind.mainGetOptionSync(key: kOptionWhitelist)) !=
|
||||||
|
defaultOptionWhitelist;
|
||||||
|
_enableDirectIPAccess = option2bool(
|
||||||
|
kOptionDirectServer, bind.mainGetOptionSync(key: kOptionDirectServer));
|
||||||
|
_enableRecordSession = option2bool(kOptionEnableRecordSession,
|
||||||
|
bind.mainGetOptionSync(key: kOptionEnableRecordSession));
|
||||||
|
_enableHardwareCodec = option2bool(kOptionEnableHwcodec,
|
||||||
|
bind.mainGetOptionSync(key: kOptionEnableHwcodec));
|
||||||
|
_autoRecordIncomingSession = option2bool(kOptionAllowAutoRecordIncoming,
|
||||||
|
bind.mainGetOptionSync(key: kOptionAllowAutoRecordIncoming));
|
||||||
|
_localIP = bind.mainGetOptionSync(key: 'local-ip-addr');
|
||||||
|
_directAccessPort = bind.mainGetOptionSync(key: kOptionDirectAccessPort);
|
||||||
|
_allowAutoDisconnect = option2bool(kOptionAllowAutoDisconnect,
|
||||||
|
bind.mainGetOptionSync(key: kOptionAllowAutoDisconnect));
|
||||||
|
_autoDisconnectTimeout =
|
||||||
|
bind.mainGetOptionSync(key: kOptionAutoDisconnectTimeout);
|
||||||
|
|
||||||
() async {
|
() async {
|
||||||
var update = false;
|
var update = false;
|
||||||
|
|
||||||
@ -134,69 +155,6 @@ class _SettingsState extends State<SettingsPage> with WidgetsBindingObserver {
|
|||||||
_keepScreenOn = keepScreenOn;
|
_keepScreenOn = keepScreenOn;
|
||||||
}
|
}
|
||||||
|
|
||||||
final enableAbrRes = option2bool(
|
|
||||||
kOptionEnableAbr, await bind.mainGetOption(key: kOptionEnableAbr));
|
|
||||||
if (enableAbrRes != _enableAbr) {
|
|
||||||
update = true;
|
|
||||||
_enableAbr = enableAbrRes;
|
|
||||||
}
|
|
||||||
|
|
||||||
final denyLanDiscovery = !option2bool(kOptionEnableLanDiscovery,
|
|
||||||
await bind.mainGetOption(key: kOptionEnableLanDiscovery));
|
|
||||||
if (denyLanDiscovery != _denyLANDiscovery) {
|
|
||||||
update = true;
|
|
||||||
_denyLANDiscovery = denyLanDiscovery;
|
|
||||||
}
|
|
||||||
|
|
||||||
final onlyWhiteList = (await bind.mainGetOption(key: kOptionWhitelist)) !=
|
|
||||||
defaultOptionWhitelist;
|
|
||||||
if (onlyWhiteList != _onlyWhiteList) {
|
|
||||||
update = true;
|
|
||||||
_onlyWhiteList = onlyWhiteList;
|
|
||||||
}
|
|
||||||
|
|
||||||
final enableDirectIPAccess = option2bool(kOptionDirectServer,
|
|
||||||
await bind.mainGetOption(key: kOptionDirectServer));
|
|
||||||
if (enableDirectIPAccess != _enableDirectIPAccess) {
|
|
||||||
update = true;
|
|
||||||
_enableDirectIPAccess = enableDirectIPAccess;
|
|
||||||
}
|
|
||||||
|
|
||||||
final enableRecordSession = option2bool(kOptionEnableRecordSession,
|
|
||||||
await bind.mainGetOption(key: kOptionEnableRecordSession));
|
|
||||||
if (enableRecordSession != _enableRecordSession) {
|
|
||||||
update = true;
|
|
||||||
_enableRecordSession = enableRecordSession;
|
|
||||||
}
|
|
||||||
|
|
||||||
final enableHardwareCodec = option2bool(kOptionEnableHwcodec,
|
|
||||||
await bind.mainGetOption(key: kOptionEnableHwcodec));
|
|
||||||
if (_enableHardwareCodec != enableHardwareCodec) {
|
|
||||||
update = true;
|
|
||||||
_enableHardwareCodec = enableHardwareCodec;
|
|
||||||
}
|
|
||||||
|
|
||||||
final autoRecordIncomingSession = option2bool(
|
|
||||||
kOptionAllowAutoRecordIncoming,
|
|
||||||
await bind.mainGetOption(key: kOptionAllowAutoRecordIncoming));
|
|
||||||
if (autoRecordIncomingSession != _autoRecordIncomingSession) {
|
|
||||||
update = true;
|
|
||||||
_autoRecordIncomingSession = autoRecordIncomingSession;
|
|
||||||
}
|
|
||||||
|
|
||||||
final localIP = await bind.mainGetOption(key: 'local-ip-addr');
|
|
||||||
if (localIP != _localIP) {
|
|
||||||
update = true;
|
|
||||||
_localIP = localIP;
|
|
||||||
}
|
|
||||||
|
|
||||||
final directAccessPort =
|
|
||||||
await bind.mainGetOption(key: kOptionDirectAccessPort);
|
|
||||||
if (directAccessPort != _directAccessPort) {
|
|
||||||
update = true;
|
|
||||||
_directAccessPort = directAccessPort;
|
|
||||||
}
|
|
||||||
|
|
||||||
final fingerprint = await bind.mainGetFingerprint();
|
final fingerprint = await bind.mainGetFingerprint();
|
||||||
if (_fingerprint != fingerprint) {
|
if (_fingerprint != fingerprint) {
|
||||||
update = true;
|
update = true;
|
||||||
@ -208,21 +166,6 @@ class _SettingsState extends State<SettingsPage> with WidgetsBindingObserver {
|
|||||||
update = true;
|
update = true;
|
||||||
_buildDate = buildDate;
|
_buildDate = buildDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
final allowAutoDisconnect = option2bool(kOptionAllowAutoDisconnect,
|
|
||||||
await bind.mainGetOption(key: kOptionAllowAutoDisconnect));
|
|
||||||
if (allowAutoDisconnect != _allowAutoDisconnect) {
|
|
||||||
update = true;
|
|
||||||
_allowAutoDisconnect = allowAutoDisconnect;
|
|
||||||
}
|
|
||||||
|
|
||||||
final autoDisconnectTimeout =
|
|
||||||
await bind.mainGetOption(key: kOptionAutoDisconnectTimeout);
|
|
||||||
if (autoDisconnectTimeout != _autoDisconnectTimeout) {
|
|
||||||
update = true;
|
|
||||||
_autoDisconnectTimeout = autoDisconnectTimeout;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (update) {
|
if (update) {
|
||||||
setState(() {});
|
setState(() {});
|
||||||
}
|
}
|
||||||
@ -661,11 +604,8 @@ class _SettingsState extends State<SettingsPage> with WidgetsBindingObserver {
|
|||||||
title:
|
title:
|
||||||
Text(translate('Automatically record incoming sessions')),
|
Text(translate('Automatically record incoming sessions')),
|
||||||
leading: Icon(Icons.videocam),
|
leading: Icon(Icons.videocam),
|
||||||
description: FutureBuilder(
|
description: Text(
|
||||||
builder: (ctx, data) => Offstage(
|
"${translate("Directory")}: ${bind.mainVideoSaveDirectory(root: false)}"),
|
||||||
offstage: !data.hasData,
|
|
||||||
child: Text("${translate("Directory")}: ${data.data}")),
|
|
||||||
future: bind.mainVideoSaveDirectory(root: false)),
|
|
||||||
initialValue: _autoRecordIncomingSession,
|
initialValue: _autoRecordIncomingSession,
|
||||||
onToggle: isOptionFixed(kOptionAllowAutoRecordIncoming)
|
onToggle: isOptionFixed(kOptionAllowAutoRecordIncoming)
|
||||||
? null
|
? null
|
||||||
|
@ -1194,8 +1194,8 @@ pub fn main_change_language(lang: String) {
|
|||||||
send_to_cm(&crate::ipc::Data::Language(lang));
|
send_to_cm(&crate::ipc::Data::Language(lang));
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn main_video_save_directory(root: bool) -> String {
|
pub fn main_video_save_directory(root: bool) -> SyncReturn<String> {
|
||||||
video_save_directory(root)
|
SyncReturn(video_save_directory(root))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn main_set_user_default_option(key: String, value: String) {
|
pub fn main_set_user_default_option(key: String, value: String) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user