fix(core): add patch for brave browser. Fix #876

This commit is contained in:
Federico Terzi 2021-12-06 22:50:15 +01:00
parent 74c5e5ae86
commit de1fefba51
3 changed files with 43 additions and 0 deletions

View File

@ -31,6 +31,7 @@ pub fn patch_store(store: Box<dyn ConfigStore>) -> Box<dyn ConfigStore> {
fn get_builtin_patches() -> Vec<PatchDefinition> {
#[cfg(target_os = "windows")]
return vec![
patches::win::brave::patch(),
patches::win::onenote_for_windows_10::patch(),
patches::win::vscode_win::patch(),
];

View File

@ -0,0 +1,41 @@
/*
* This file is part of espanso.
*
* Copyright (C) 2019-2021 Federico Terzi
*
* espanso is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* espanso is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
*/
use std::sync::Arc;
use crate::patch::patches::{PatchedConfig, Patches};
use crate::patch::PatchDefinition;
pub fn patch() -> PatchDefinition {
PatchDefinition {
name: module_path!().split(':').last().unwrap_or("unknown"),
is_enabled: || cfg!(target_os = "windows"),
should_patch: |app| app.exec.unwrap_or_default().contains("brave.exe"),
apply: |base, name| {
Arc::new(PatchedConfig::patch(
base,
name,
Patches {
pre_paste_delay: Some(400),
..Default::default()
},
))
},
}
}

View File

@ -17,5 +17,6 @@
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
*/
pub mod brave;
pub mod onenote_for_windows_10;
pub mod vscode_win;