From cdecb3589a7e168be374c8da91c68f179073aee9 Mon Sep 17 00:00:00 2001 From: Kingtous Date: Thu, 28 Apr 2022 21:56:09 +0800 Subject: [PATCH] refactor: change version to 1.2.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- libs/hbb_common/src/fs.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)]