Commit 961b9e62 authored by Medicean's avatar Medicean

(Enhance: Modules/ShellManager) ShellManager 状态栏显示全局代理开启情况

parent 1c6a77da
......@@ -95,6 +95,10 @@ public byte[] base64Decode(String str) throws Exception {
> 别问, 要问就去问 Windows Defender
### 数据管理
* 开启代理情况下在数据管理状态栏会有提示
### 后端模块
* 修复 multipart 发包方式下, 编码器中 data 内容不为字符串时异常
......
......@@ -30,9 +30,13 @@ class List {
* @return {[type]} [description]
*/
updateHeader(num = 0) {
let proxyhint = "";
if(antSword.aproxymode === "manualproxy") {
proxyhint = ` <i class="fa fa-paper-plane"></i> <span style="color:green;">Proxy On</span>`;
}
this
.cell
.setText(`<i class="fa fa-list-ul"></i> ${LANG['title']} (${num})`);
.setText(`<i class="fa fa-list-ul"></i> ${LANG['title']} (${num})${proxyhint}`);
}
}
......
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