Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
antSword
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HuangJunbo
antSword
Commits
961b9e62
Commit
961b9e62
authored
Jun 18, 2021
by
Medicean
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Enhance: Modules/ShellManager) ShellManager 状态栏显示全局代理开启情况
parent
1c6a77da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
CHANGELOG.md
CHANGELOG.md
+4
-0
index.js
source/modules/shellmanager/list/index.js
+5
-1
No files found.
CHANGELOG.md
View file @
961b9e62
...
...
@@ -95,6 +95,10 @@ public byte[] base64Decode(String str) throws Exception {
> 别问, 要问就去问 Windows Defender
### 数据管理
*
开启代理情况下在数据管理状态栏会有提示
### 后端模块
*
修复 multipart 发包方式下, 编码器中 data 内容不为字符串时异常
...
...
source/modules/shellmanager/list/index.js
View file @
961b9e62
...
...
@@ -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
}
`
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment