Skip to content

Commit

Permalink
Merge branch 'rustdesk:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangbo8418 authored Mar 13, 2024
2 parents 3583409 + c186378 commit 156b471
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion flutter/macos/Runner/Configs/AppInfo.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ PRODUCT_NAME = RustDesk
PRODUCT_BUNDLE_IDENTIFIER = com.carriez.flutterHbb

// The copyright displayed in application information
PRODUCT_COPYRIGHT = Copyright © 2022 Purslane Ltd. All rights reserved.
PRODUCT_COPYRIGHT = Copyright © 2024 Purslane Ltd. All rights reserved.
2 changes: 1 addition & 1 deletion res/setup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Section "Install"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "DisplayVersion" "${VERSION}"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "UninstallString" '"$INSTDIR\${PRODUCT_NAME}.exe" --uninstall'
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "InstallLocation" "$INSTDIR"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "Publisher" "Carriez, Inc."
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "Publisher" "Purslane Ltd."
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "HelpLink" "https://www.rustdesk.com/"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "URLInfoAbout" "https://www.rustdesk.com/"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "URLUpdateInfo" "https://www.rustdesk.com/"
Expand Down
2 changes: 1 addition & 1 deletion src/flutter_ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fn initialize(app_dir: &str) {
#[cfg(target_os = "ios")]
{
use hbb_common::env_logger::*;
init_fro_env(Env::default().filter_or(DEFAULT_FILTER_ENV, "debug"));
init_from_env(Env::default().filter_or(DEFAULT_FILTER_ENV, "debug"));
}
#[cfg(not(any(target_os = "android", target_os = "ios")))]
{
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ fn main() {
);
let matches = App::new("rustdesk")
.version(crate::VERSION)
.author("CarrieZ Studio<[email protected]>")
.author("Purslane Ltd<[email protected]>")
.about("RustDesk command line tool")
.args_from_usage(&args)
.get_matches();
Expand Down

0 comments on commit 156b471

Please sign in to comment.