Skip to content

Commit

Permalink
release: 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zyyzyykk committed Nov 29, 2024
1 parent 97d7b48 commit 85732de
Show file tree
Hide file tree
Showing 16 changed files with 60 additions and 48 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>
> Preview: https://ssh.kkbpro.com/ (For domestic servers) or https://ssh.kkbapps.com/ (For foreign servers)
>
> Update Time: 2024-11-20
> Update Time: 2024-11-29
>
<p align="center"><a href="https://ssh.kkbpro.com/" target="_blank" rel="noopener noreferrer"><img width="100" src="http://img.kkbapps.com/logo/terminal.png" alt="kkTerminal"></a></p>
Expand Down Expand Up @@ -107,7 +107,13 @@ Visit the following website:

### 👨‍💻 Update Records

##### zyyzyykk/kkterminal:3.3.7: latest
##### zyyzyykk/kkterminal:3.4.0: latest

- Add SSH Option and custom TCode deletion function
- Fixed folder pasting failure bug in File Module
- Optimized network resources and page display

##### zyyzyykk/kkterminal:3.3.7:

- Adaptive remote server encoding format
- Expand highlighting file types
Expand All @@ -121,12 +127,6 @@ Visit the following website:
- Added preview for browser native supported format files
- Optimize the interface display of File Management Module

##### zyyzyykk/kkterminal:3.2.9:

- Add file URL upload
- Fixed bug where canceling folder downloads caused disconnection
- Optimize page display and code logic, optimize packaging volume

[**History Update Records**](./doc/en_US/UPDATE.md)

### 🧬 Architecture
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ public Result mv(String sshKey, String src, String dst, String items) {
if(ssh == null) {
return Result.error(FileBlockStateEnum.SSH_NOT_EXIST.getState(),"连接断开," + errorMsg,null);
}
String command = "cd " + src + " && mv -rn " + items + " " + dst;
String command = "cd " + src + " && mv -n " + items + " " + dst;
try(Session session = ssh.startSession();
Session.Command cmd = session.exec(command))
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/terminal/src/main/resources/static/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="keywords" content="xterm,xterm.js,terminal,web,ssh,kkTerminal,shell,docker"/><meta name="description" content="kkTerminal, a terminal for Web SSH connection"/><link rel="icon" href="/favicon.ico"><title>kk Terminal</title><meta name="version" content="3.3.7"><script defer="defer" src="/js/chunk-vendors.31db6c97.js"></script><script defer="defer" src="/js/app.1eb63b54.js"></script><link href="/css/chunk-vendors.94a43bf5.css" rel="stylesheet"><link href="/css/app.1c0ba195.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but kk Terminal doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="keywords" content="kkTerminal,ssh,xterm,terminal,shell,docker,web"/><meta name="description" content="kkTerminal, a terminal for Web SSH connection"/><link rel="icon" href="/favicon.ico"><title>kk Terminal</title><meta name="version" content="3.4.0"><script defer="defer" src="/js/chunk-vendors.fdb4f6a7.js"></script><script defer="defer" src="/js/app.89438aa7.js"></script><link href="/css/chunk-vendors.94a43bf5.css" rel="stylesheet"><link href="/css/app.c3e6e694.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but kk Terminal doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
2 changes: 0 additions & 2 deletions backend/terminal/src/main/resources/static/js/app.1eb63b54.js

This file was deleted.

This file was deleted.

2 changes: 2 additions & 0 deletions backend/terminal/src/main/resources/static/js/app.89438aa7.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions doc/en_US/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>
> Preview: https://ssh.kkbpro.com/ (For domestic servers) or https://ssh.kkbapps.com/ (For foreign servers)
>
> Update Time: 2024-11-20
> Update Time: 2024-11-29
>
<p align="center"><a href="https://ssh.kkbpro.com/" target="_blank" rel="noopener noreferrer"><img width="100" src="http://img.kkbapps.com/logo/terminal.png" alt="kkTerminal"></a></p>
Expand Down Expand Up @@ -107,7 +107,13 @@ Visit the following website:

### 👨‍💻 Update Records

##### zyyzyykk/kkterminal:3.3.7: latest
##### zyyzyykk/kkterminal:3.4.0: latest

- Add SSH Option and custom TCode deletion function
- Fixed folder pasting failure bug in File Module
- Optimized network resources and page display

##### zyyzyykk/kkterminal:3.3.7:

- Adaptive remote server encoding format
- Expand highlighting file types
Expand All @@ -121,12 +127,6 @@ Visit the following website:
- Added preview for browser native supported format files
- Optimize the interface display of File Management Module

##### zyyzyykk/kkterminal:3.2.9:

- Add file URL upload
- Fixed bug where canceling folder downloads caused disconnection
- Optimize page display and code logic, optimize packaging volume

[**History Update Records**](./UPDATE.md)

### 🧬 Architecture
Expand Down
6 changes: 6 additions & 0 deletions doc/en_US/UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### 👨‍💻 History Update Records

##### zyyzyykk/kkterminal:3.2.9:

- Add file URL upload
- Fixed bug where canceling folder downloads caused disconnection
- Optimize page display and code logic, optimize packaging volume

##### zyyzyykk/kkterminal:3.2.6:

- Fix bugs related to special character operations in files
Expand Down
16 changes: 8 additions & 8 deletions doc/zh_CN/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>
> 预览:https://ssh.kkbpro.com/ (国内服务器访问) 或 https://ssh.kkbapps.com/ (国外服务器访问)
>
> 更新时间:2024-11-20
> 更新时间:2024-11-29
>
<p align="center"><a href="https://ssh.kkbpro.com/" target="_blank" rel="noopener noreferrer"><img width="100" src="http://img.kkbapps.com/logo/terminal.png" alt="kkterminal"></a></p>
Expand Down Expand Up @@ -107,7 +107,13 @@ docker run -d --name kkterminal -p 3000:3000 -e TITLE="kkbpro" zyyzyykk/kktermin

### 👨‍💻 更新记录

##### zyyzyykk/kkterminal:3.3.7:latest
##### zyyzyykk/kkterminal:3.4.0:latest

- 新增SSH连接配置与自定义TCode的删除功能
- 修复了文件模块文件夹粘贴失败的bug
- 优化了网络资源与页面显示

##### zyyzyykk/kkterminal:3.3.7:

- 自适应远程服务器编码格式
- 扩展高亮文件类型
Expand All @@ -121,12 +127,6 @@ docker run -d --name kkterminal -p 3000:3000 -e TITLE="kkbpro" zyyzyykk/kktermin
- 新增对于浏览器原生支持格式文件的预览
- 优化文件模块界面显示

##### zyyzyykk/kkterminal:3.2.9:

- 新增文件URL上传功能
- 修复了取消文件夹下载导致连接断开的bug
- 优化页面显示与代码逻辑,优化打包体积

[**历史更新记录**](./UPDATE.md)

### 🧬 架构
Expand Down
6 changes: 6 additions & 0 deletions doc/zh_CN/UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### 👨‍💻 历史更新记录

##### zyyzyykk/kkterminal:3.2.9:

- 新增文件URL上传功能
- 修复了取消文件夹下载导致连接断开的bug
- 优化页面显示与代码逻辑,优化打包体积

##### zyyzyykk/kkterminal:3.2.6:

- 修复文件特殊字符操作问题的bug
Expand Down
4 changes: 2 additions & 2 deletions front/terminal/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="keywords" content="xterm,xterm.js,terminal,web,ssh,kkTerminal,shell,docker"/>
<meta name="keywords" content="kkTerminal,ssh,xterm,terminal,shell,docker,web"/>
<meta name="description" content="kkTerminal, a terminal for Web SSH connection"/>
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>kk Terminal</title>
<meta name="version" content="3.3.7">
<meta name="version" content="3.4.0">
</head>
<body>
<noscript>
Expand Down
Loading

0 comments on commit 85732de

Please sign in to comment.