From c186378d43060069c4ed576f5c5d854e4d893cec Mon Sep 17 00:00:00 2001 From: XLion Date: Wed, 13 Mar 2024 21:12:04 +0800 Subject: [PATCH] Correct copyright year (#7375) * Correct copyright year * Correct name --- flutter/macos/Runner/Configs/AppInfo.xcconfig | 2 +- res/setup.nsi | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flutter/macos/Runner/Configs/AppInfo.xcconfig b/flutter/macos/Runner/Configs/AppInfo.xcconfig index 66dbee50c..f095b674e 100644 --- a/flutter/macos/Runner/Configs/AppInfo.xcconfig +++ b/flutter/macos/Runner/Configs/AppInfo.xcconfig @@ -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. diff --git a/res/setup.nsi b/res/setup.nsi index a7d267559..21cee15c8 100644 --- a/res/setup.nsi +++ b/res/setup.nsi @@ -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/" diff --git a/src/main.rs b/src/main.rs index e5c218ec4..bc41365e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -52,7 +52,7 @@ fn main() { ); let matches = App::new("rustdesk") .version(crate::VERSION) - .author("CarrieZ Studio") + .author("Purslane Ltd") .about("RustDesk command line tool") .args_from_usage(&args) .get_matches();