kick start international keyboard
This commit is contained in:
parent
1931cb8c7c
commit
e82f040d6d
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -3091,6 +3091,7 @@ dependencies = [
|
|||||||
"sha2",
|
"sha2",
|
||||||
"sys-locale",
|
"sys-locale",
|
||||||
"systray",
|
"systray",
|
||||||
|
"tigervnc",
|
||||||
"uuid",
|
"uuid",
|
||||||
"whoami",
|
"whoami",
|
||||||
"winapi 0.3.9",
|
"winapi 0.3.9",
|
||||||
@ -3603,6 +3604,15 @@ dependencies = [
|
|||||||
"weezl",
|
"weezl",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tigervnc"
|
||||||
|
version = "1.0.0"
|
||||||
|
source = "git+https://github.com/open-trade/tigervnc#2007dbb0f47ac72069a529182ce73c954ab70d38"
|
||||||
|
dependencies = [
|
||||||
|
"cc",
|
||||||
|
"cfg-if 1.0.0",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "time"
|
name = "time"
|
||||||
version = "0.3.5"
|
version = "0.3.5"
|
||||||
|
@ -54,6 +54,7 @@ sciter-rs = { git = "https://github.com/open-trade/rust-sciter", branch = "dyn"
|
|||||||
ctrlc = "3.2"
|
ctrlc = "3.2"
|
||||||
arboard = "2.0"
|
arboard = "2.0"
|
||||||
clipboard-master = "3.1"
|
clipboard-master = "3.1"
|
||||||
|
tigervnc = { git = "https://github.com/open-trade/tigervnc" }
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies]
|
[target.'cfg(target_os = "windows")'.dependencies]
|
||||||
systray = { git = "https://github.com/liyue201/systray-rs" }
|
systray = { git = "https://github.com/liyue201/systray-rs" }
|
||||||
|
@ -95,7 +95,7 @@ class SessionList: Reactor.Component {
|
|||||||
function render() {
|
function render() {
|
||||||
var sessions = this.getSessions();
|
var sessions = this.getSessions();
|
||||||
if (sessions.length == 0) {
|
if (sessions.length == 0) {
|
||||||
return <div style="margin: *"><div style="margin: *; font-size: 1.6em;">{translate("Empty")}</div></div>;
|
return <div style="margin: *; font-size: 1.6em;">{translate("Empty")}</div>;
|
||||||
}
|
}
|
||||||
var me = this;
|
var me = this;
|
||||||
sessions = sessions.map(function(x) { return me.getSession(x); });
|
sessions = sessions.map(function(x) { return me.getSession(x); });
|
||||||
|
Loading…
x
Reference in New Issue
Block a user