diff --git a/Cargo.lock b/Cargo.lock index cae72342a..af87a1907 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3954,7 +3954,7 @@ dependencies = [ [[package]] name = "rustdesk" -version = "1.1.9" +version = "1.2.0" dependencies = [ "android_logger 0.11.0", "arboard", diff --git a/Cargo.toml b/Cargo.toml index e54ac875d..dbc6307b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustdesk" -version = "1.1.9" +version = "1.2.0" authors = ["rustdesk "] edition = "2021" build= "build.rs" diff --git a/libs/hbb_common/src/fs.rs b/libs/hbb_common/src/fs.rs index 57772bd0d..7180cbdd7 100644 --- a/libs/hbb_common/src/fs.rs +++ b/libs/hbb_common/src/fs.rs @@ -192,7 +192,7 @@ pub fn is_file_exists(file_path: &str) -> bool { } pub fn can_enable_overwrite_detection(version: i64) -> bool { - version >= get_version_number("1.1.9") + version >= get_version_number("1.2.0") } #[derive(Default)]