mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
ssh: more tip
This commit is contained in:
15
README.md
15
README.md
@@ -21,11 +21,16 @@ Especially thanks to <a href="https://github.com/TerminalStudio/dartssh2">dartss
|
||||
|
||||
|
||||
## 🔖 Feature
|
||||
- [x] 📊 Status chart view
|
||||
- [x] ⌨️ `SSH` terminal
|
||||
- [x] ⚙️ `Docker & Pkg` Manager, `SFTP`, `Snippet` ~~market~~, `Ping` and etc.
|
||||
- [x] 📚 i18n (English, Chinese), **welcome contribution** :)
|
||||
- [x] 🖥️ Desktop support
|
||||
- [x] Functions
|
||||
- [x] `SSH` Terminal
|
||||
- [x] `Docker & Pkg` Manager
|
||||
- [x] `SFTP`
|
||||
- [x] `Snippet`
|
||||
- [x] `Ping`
|
||||
- [x] Status charts
|
||||
- [x] etc.
|
||||
- [x] i18n (English, Chinese), **welcome contribution** :)
|
||||
- [x] Desktop support
|
||||
|
||||
## 📱 ScreenShots
|
||||
<table>
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
class BuildData {
|
||||
static const String name = "ServerBox";
|
||||
static const int build = 199;
|
||||
static const int build = 200;
|
||||
static const String engine =
|
||||
"Flutter 3.7.0 • channel stable • https://github.com/flutter/flutter.git\nFramework • revision b06b8b2710 (6 days ago) • 2023-01-23 16:55:55 -0800\nEngine • revision b24591ed32\nTools • Dart 2.19.0 • DevTools 2.20.1\n";
|
||||
static const String buildAt = "2023-01-29 20:45:19.543947";
|
||||
static const int modifications = 3;
|
||||
static const String buildAt = "2023-01-29 22:04:40.624479";
|
||||
static const int modifications = 0;
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
static String m11(time) => "Spent time: ${time}";
|
||||
|
||||
static String m12(url) =>
|
||||
"This function is now in the experimental stage. \nPlease report bugs on ${url} or join our development.";
|
||||
"This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on ${url} or join our development.";
|
||||
|
||||
static String m13(name) => "Are you sure to delete [${name}]?";
|
||||
|
||||
|
||||
@@ -46,7 +46,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
|
||||
static String m11(time) => "耗时: ${time}";
|
||||
|
||||
static String m12(url) => "该功能目前处于测试阶段,请在 ${url} 反馈问题,或者加入我们开发。";
|
||||
static String m12(url) =>
|
||||
"该功能目前处于测试阶段。\n\n例如:iOS上输入法无法退格。请使用输入法上方的虚拟键。\n\n请在 ${url} 反馈问题,或者加入我们开发。";
|
||||
|
||||
static String m13(name) => "确定删除[${name}]?";
|
||||
|
||||
|
||||
@@ -1321,10 +1321,10 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `This function is now in the experimental stage. \nPlease report bugs on {url} or join our development.`
|
||||
/// `This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on {url} or join our development.`
|
||||
String sshTip(Object url) {
|
||||
return Intl.message(
|
||||
'This function is now in the experimental stage. \nPlease report bugs on $url or join our development.',
|
||||
'This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on $url or join our development.',
|
||||
name: 'sshTip',
|
||||
desc: '',
|
||||
args: [url],
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
"showDistLogo": "Show distribution logo",
|
||||
"snippet": "Snippet",
|
||||
"spentTime": "Spent time: {time}",
|
||||
"sshTip": "This function is now in the experimental stage. \nPlease report bugs on {url} or join our development.",
|
||||
"sshTip": "This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on {url} or join our development.",
|
||||
"start": "Start",
|
||||
"stop": "Stop",
|
||||
"sureDelete": "Are you sure to delete [{name}]?",
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
"showDistLogo": "显示发行版 Logo",
|
||||
"snippet": "代码片段",
|
||||
"spentTime": "耗时: {time}",
|
||||
"sshTip": "该功能目前处于测试阶段,请在 {url} 反馈问题,或者加入我们开发。",
|
||||
"sshTip": "该功能目前处于测试阶段。\n\n例如:iOS上输入法无法退格。请使用输入法上方的虚拟键。\n\n请在 {url} 反馈问题,或者加入我们开发。",
|
||||
"start": "开始",
|
||||
"stop": "停止",
|
||||
"sureDelete": "确定删除[{name}]?",
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 168 KiB |
Reference in New Issue
Block a user