fix(migrate): adjust wrong migrate fields
This commit is contained in:
parent
e8db703014
commit
ce802bc72e
|
@ -131,22 +131,35 @@ pub fn convert(input_files: HashMap<String, Hash>) -> HashMap<String, ConvertedF
|
||||||
_ => None,
|
_ => None,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
copy_field_if_present(yaml, "secure_input_watcher_enabled", &mut output_yaml, "secure_input_watcher_enabled");
|
//copy_field_if_present(yaml, "secure_input_watcher_enabled", &mut output_yaml, "secure_input_watcher_enabled");
|
||||||
copy_field_if_present(yaml, "secure_input_watcher_interval", &mut output_yaml, "secure_input_watcher_interval");
|
//copy_field_if_present(yaml, "secure_input_watcher_interval", &mut output_yaml, "secure_input_watcher_interval");
|
||||||
|
//copy_field_if_present(yaml, "config_caching_interval", &mut output_yaml, "config_caching_interval");
|
||||||
|
//copy_field_if_present(yaml, "use_system_agent", &mut output_yaml, "use_system_agent");
|
||||||
|
|
||||||
copy_field_if_present(yaml, "secure_input_notification", &mut output_yaml, "secure_input_notification");
|
copy_field_if_present(yaml, "secure_input_notification", &mut output_yaml, "secure_input_notification");
|
||||||
copy_field_if_present(yaml, "config_caching_interval", &mut output_yaml, "config_caching_interval");
|
|
||||||
copy_field_if_present(yaml, "toggle_interval", &mut output_yaml, "toggle_interval");
|
copy_field_if_present(yaml, "toggle_interval", &mut output_yaml, "toggle_interval");
|
||||||
copy_field_if_present(yaml, "toggle_key", &mut output_yaml, "toggle_key");
|
copy_field_if_present(yaml, "toggle_key", &mut output_yaml, "toggle_key");
|
||||||
copy_field_if_present(yaml, "preserve_clipboard", &mut output_yaml, "preserve_clipboard");
|
copy_field_if_present(yaml, "preserve_clipboard", &mut output_yaml, "preserve_clipboard");
|
||||||
copy_field_if_present(yaml, "backspace_limit", &mut output_yaml, "backspace_limit");
|
copy_field_if_present(yaml, "backspace_limit", &mut output_yaml, "backspace_limit");
|
||||||
copy_field_if_present(yaml, "fast_inject", &mut output_yaml, "x11_fast_inject");
|
map_field_if_present(
|
||||||
|
yaml,
|
||||||
|
"fast_inject",
|
||||||
|
&mut output_yaml,
|
||||||
|
"disable_x11_fast_inject",
|
||||||
|
|val| match val {
|
||||||
|
Yaml::Boolean(false) => Some(Yaml::Boolean(true)),
|
||||||
|
Yaml::Boolean(true) => Some(Yaml::Boolean(false)),
|
||||||
|
_ => None,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
copy_field_if_present(yaml, "auto_restart", &mut output_yaml, "auto_restart");
|
copy_field_if_present(yaml, "auto_restart", &mut output_yaml, "auto_restart");
|
||||||
copy_field_if_present(yaml, "undo_backspace", &mut output_yaml, "undo_backspace");
|
copy_field_if_present(yaml, "undo_backspace", &mut output_yaml, "undo_backspace");
|
||||||
copy_field_if_present(yaml, "show_icon", &mut output_yaml, "show_icon");
|
copy_field_if_present(yaml, "show_icon", &mut output_yaml, "show_icon");
|
||||||
copy_field_if_present(yaml, "show_notifications", &mut output_yaml, "show_notifications");
|
copy_field_if_present(yaml, "show_notifications", &mut output_yaml, "show_notifications");
|
||||||
copy_field_if_present(yaml, "inject_delay", &mut output_yaml, "inject_delay");
|
copy_field_if_present(yaml, "inject_delay", &mut output_yaml, "inject_delay");
|
||||||
copy_field_if_present(yaml, "restore_clipboard_delay", &mut output_yaml, "restore_clipboard_delay");
|
copy_field_if_present(yaml, "restore_clipboard_delay", &mut output_yaml, "restore_clipboard_delay");
|
||||||
copy_field_if_present(yaml, "use_system_agent", &mut output_yaml, "use_system_agent");
|
copy_field_if_present(yaml, "backspace_delay", &mut output_yaml, "key_delay");
|
||||||
copy_field_if_present(yaml, "word_separators", &mut output_yaml, "word_separators");
|
copy_field_if_present(yaml, "word_separators", &mut output_yaml, "word_separators");
|
||||||
|
|
||||||
if yaml.get(&Yaml::String("enable_passive".to_string())).is_some() {
|
if yaml.get(&Yaml::String("enable_passive".to_string())).is_some() {
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
config_caching_interval: 1200
|
|
||||||
|
|
||||||
toggle_interval: 500
|
toggle_interval: 500
|
||||||
toggle_key: "RIGHT_CTRL"
|
toggle_key: "RIGHT_CTRL"
|
||||||
|
|
||||||
|
@ -9,10 +7,9 @@ backspace_limit: 5
|
||||||
|
|
||||||
inject_delay: 10
|
inject_delay: 10
|
||||||
restore_clipboard_delay: 400
|
restore_clipboard_delay: 400
|
||||||
|
key_delay: 300
|
||||||
|
|
||||||
secure_input_watcher_enabled: false
|
|
||||||
secure_input_notification: false
|
secure_input_notification: false
|
||||||
secure_input_watcher_interval: 3000
|
|
||||||
|
|
||||||
show_notifications: false
|
show_notifications: false
|
||||||
show_icon: false
|
show_icon: false
|
||||||
|
@ -20,11 +17,10 @@ show_icon: false
|
||||||
auto_restart: false
|
auto_restart: false
|
||||||
undo_backspace: false
|
undo_backspace: false
|
||||||
|
|
||||||
x11_fast_inject: false
|
disable_x11_fast_inject: true
|
||||||
|
|
||||||
paste_shortcut: "CTRL+ALT+V"
|
paste_shortcut: "CTRL+ALT+V"
|
||||||
|
|
||||||
backend: Clipboard
|
backend: Clipboard
|
||||||
|
|
||||||
use_system_agent: false
|
|
||||||
word_separators: ['.']
|
word_separators: ['.']
|
|
@ -9,6 +9,7 @@ backspace_limit: 5
|
||||||
|
|
||||||
inject_delay: 10
|
inject_delay: 10
|
||||||
restore_clipboard_delay: 400
|
restore_clipboard_delay: 400
|
||||||
|
backspace_delay: 300
|
||||||
|
|
||||||
secure_input_watcher_enabled: false
|
secure_input_watcher_enabled: false
|
||||||
secure_input_notification: false
|
secure_input_notification: false
|
||||||
|
|
Loading…
Reference in New Issue
Block a user