From 58fe95d6fd5ca4049c8c6d1c14c7b293bd70f61a Mon Sep 17 00:00:00 2001 From: XLion Date: Tue, 2 Apr 2024 11:44:27 +0800 Subject: [PATCH] Uppercase API (#7577) --- src/ui_interface.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui_interface.rs b/src/ui_interface.rs index 1c285947e..152ea7581 100644 --- a/src/ui_interface.rs +++ b/src/ui_interface.rs @@ -131,11 +131,11 @@ pub fn get_license() -> String { #[cfg(windows)] if let Ok(lic) = crate::platform::windows::get_license_from_exe_name() { #[cfg(feature = "flutter")] - return format!("Key: {}\nHost: {}\nApi: {}", lic.key, lic.host, lic.api); + return format!("Key: {}\nHost: {}\nAPI: {}", lic.key, lic.host, lic.api); // default license format is html formed (sciter) #[cfg(not(feature = "flutter"))] return format!( - "
Key: {}
Host: {} Api: {}", + "
Key: {}
Host: {} API: {}", lic.key, lic.host, lic.api ); }