Commit 7aed041b authored by Medicean's avatar Medicean

Update(Modules/Settings): 「编码管理」新增新建「JSP解码器」

parent fc92e613
......@@ -35,6 +35,8 @@ eg:
> 能够适配所有编码器的Shell比较少, 这个功能就略显鸡肋, 我们决定移除它
* JSP Template 升级至 1.5.5-3c1cd75
* 支持解码器(返回包加密)
* 兼容 JDK5
### 其它
......@@ -42,6 +44,8 @@ eg:
点击最小化时,不再最小化至系统托盘。点击关闭按钮,最小化至系统托盘。点击托盘菜单中的「退出」程序退出。
* 「编码管理」新增新建「JSP解码器」
## 2021/02/06 `v(2.1.10)`
### 核心
......
......@@ -91,6 +91,11 @@ class Encoders {
icon: 'file-code-o',
type: 'button',
text: "PHP"
}, {
id: 'new_jsp_decoder',
icon: 'file-code-o',
type: 'button',
text: "JSP"
}, {
type: 'separator'
}, {
......@@ -148,6 +153,9 @@ class Encoders {
case "new_php_decoder":
that.createEncoder(id, 'decoder');
break;
case "new_jsp_decoder":
that.createEncoder(id, 'decoder');
break;
case "new_custom_decoder":
that.createEncoder(id, 'decoder');
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment