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 Sep 23, 2024
2 parents 7f8083f + 8fefd34 commit 446934d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions flutter/lib/common/widgets/overlay.dart
Original file line number Diff line number Diff line change
Expand Up @@ -595,8 +595,7 @@ class QualityMonitor extends StatelessWidget {
"${qualityMonitorModel.data.targetBitrate ?? '-'}kb"),
_row(
"Codec", qualityMonitorModel.data.codecFormat ?? '-'),
if (!isWeb)
_row("Chroma", qualityMonitorModel.data.chroma ?? '-'),
_row("Chroma", qualityMonitorModel.data.chroma ?? '-'),
],
),
)
Expand Down
2 changes: 1 addition & 1 deletion flutter/lib/web/bridge.dart
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ class RustdeskImpl {
required String name,
required String value,
dynamic hint}) {
return Future(() => js.context.callMethod('SetByName', [
return Future(() => js.context.callMethod('setByName', [
'option:session',
jsonEncode({'name': name, 'value': value})
]));
Expand Down
2 changes: 1 addition & 1 deletion src/lang/cn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Parent directory", "父目录"),
("Resume", "继续"),
("Invalid file name", "无效文件名"),
("one-way-file-transfer-tip", "被控端启用了单项文件传输"),
("one-way-file-transfer-tip", "被控端启用了单向文件传输"),
("Authentication Required", "需要身份验证"),
("Authenticate", "认证"),
].iter().cloned().collect();
Expand Down
6 changes: 3 additions & 3 deletions src/lang/tw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,8 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Parent directory", "父目錄"),
("Resume", "繼續"),
("Invalid file name", "無效文件名"),
("one-way-file-transfer-tip", ""),
("Authentication Required", ""),
("Authenticate", ""),
("one-way-file-transfer-tip", "被控端啟用了單向文件傳輸"),
("Authentication Required", "需要身分驗證"),
("Authenticate", "認證"),
].iter().cloned().collect();
}

0 comments on commit 446934d

Please sign in to comment.