Desenvolvido por @veeso
-Versão atual: 0.19.1 2025-12-20
+Versão atual: 1.0.0 2025-12-20
由 @veeso 开发
-当前版本: 0.19.1 2025-12-20
+当前版本: 1.0.0 2025-12-20
Consider that Chocolatey moderation can take up to a few weeks
since last release, so if the latest version is not available yet,
you can install it downloading the ZIP file from
- Github
and then, from the ZIP directory, install it via
@@ -74,7 +74,7 @@
On Debian based distros, you can install termscp using the Deb
package via:
- wget -O termscp.deb https://github.com/veeso/termscp/releases/latest/download/termscp_0.19.1_amd64.deb
+ wget -O termscp.deb https://github.com/veeso/termscp/releases/latest/download/termscp_1.0.0_amd64.deb
sudo dpkg -i termscp.deb
diff --git a/site/html/home.html b/site/html/home.html
index 6f16cd4..9fbf4cb 100644
--- a/site/html/home.html
+++ b/site/html/home.html
@@ -12,7 +12,7 @@
- termscp 0.19.1 is NOW out! Download it from
+ termscp 1.0.0 is NOW out! Download it from
here!
diff --git a/site/lang/en.json b/site/lang/en.json
index 0f2733c..edcc446 100644
--- a/site/lang/en.json
+++ b/site/lang/en.json
@@ -12,7 +12,7 @@
"intro": {
"caption": "A feature rich terminal UI file transfer and explorer with support for SCP/SFTP/FTP/Kube/S3/WebDAV",
"getStarted": "Get started →",
- "versionAlert": "termscp 0.19.1 is NOW out! Download it from",
+ "versionAlert": "termscp 1.0.0 is NOW out! Download it from",
"here": "here",
"features": {
"handy": {
diff --git a/site/lang/es.json b/site/lang/es.json
index 70fb244..886e6e6 100644
--- a/site/lang/es.json
+++ b/site/lang/es.json
@@ -12,7 +12,7 @@
"intro": {
"caption": "Un explorador y transferencia de archivos de terminal rico en funciones, con apoyo para SCP/SFTP/FTP/Kube/S3/WebDAV",
"getStarted": "Para iniciar →",
- "versionAlert": "termscp 0.19.1 ya está disponible! Descárgalo desde",
+ "versionAlert": "termscp 1.0.0 ya está disponible! Descárgalo desde",
"here": "aquì",
"features": {
"handy": {
diff --git a/site/lang/fr.json b/site/lang/fr.json
index 80d646c..c45ea09 100644
--- a/site/lang/fr.json
+++ b/site/lang/fr.json
@@ -12,7 +12,7 @@
"intro": {
"caption": "Un file transfer et navigateur de terminal riche en fonctionnalités avec support pour SCP/SFTP/FTP/Kube/S3/WebDAV",
"getStarted": "Pour commencer →",
- "versionAlert": "termscp 0.19.1 est maintenant sorti! Télécharge-le depuis",
+ "versionAlert": "termscp 1.0.0 est maintenant sorti! Télécharge-le depuis",
"here": "ici",
"features": {
"handy": {
diff --git a/site/lang/it.json b/site/lang/it.json
index 1cc9a31..45f774c 100644
--- a/site/lang/it.json
+++ b/site/lang/it.json
@@ -12,7 +12,7 @@
"intro": {
"caption": "Un file transfer ed explorer ricco di funzionalità con supporto per SFTP/SCP/FTP/S3",
"getStarted": "Installa termscp →",
- "versionAlert": "termscp 0.19.1 è ORA disponbile! Scaricalo da",
+ "versionAlert": "termscp 1.0.0 è ORA disponbile! Scaricalo da",
"here": "qui",
"features": {
"handy": {
diff --git a/site/lang/zh-CN.json b/site/lang/zh-CN.json
index cdaa065..91c66e1 100644
--- a/site/lang/zh-CN.json
+++ b/site/lang/zh-CN.json
@@ -12,7 +12,7 @@
"intro": {
"caption": "功能丰富的终端 UI 文件传输和浏览器,支持 SCP/SFTP/FTP/Kube/S3/WebDAV",
"getStarted": "开始 →",
- "versionAlert": "termscp 0.19.1 现已发布! 从下载",
+ "versionAlert": "termscp 1.0.0 现已发布! 从下载",
"here": "这里",
"features": {
"handy": {
diff --git a/src/system/auto_update.rs b/src/system/auto_update.rs
index 982c29a..b0afd47 100644
--- a/src/system/auto_update.rs
+++ b/src/system/auto_update.rs
@@ -234,6 +234,7 @@ mod test {
fn should_tell_that_version_is_higher() {
assert!(Update::is_new_version_higher("0.10.0", "0.9.0"));
assert!(Update::is_new_version_higher("0.20.0", "0.19.1"));
+ assert!(Update::is_new_version_higher("1.0.0", "0.19.1"));
assert!(!Update::is_new_version_higher("0.9.0", "0.10.0"));
assert!(!Update::is_new_version_higher("0.9.9", "0.10.1"));
assert!(!Update::is_new_version_higher("0.10.9", "0.11.0"));