This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
可以设置UI模式为gui或浏览器 gui模式下,窗口可以调整大小 修复非IE浏览器下百度云嗅探模式不生效问 修复下载速度快速跳动问题 禁用netty内存池
- Loading branch information
Showing
16 changed files
with
109 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
spring.resources.static-locations=classpath:/pac/ | ||
logging.config=classpath:logback-dev.xml | ||
javafx.model=false | ||
#server.port= 8443 | ||
#server.ssl.key-store=classpath:server.p12 | ||
#server.ssl.key-store-password= 123456 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
spring.resources.static-locations=classpath:/pac/,classpath:/view/ | ||
spring.resources.cache-period=0 | ||
logging.config=classpath:logback-prd.xml | ||
javafx.model=true | ||
#server.port= 8443 | ||
#server.ssl.key-store=classpath:server.p12 | ||
#server.ssl.key-store-password= 123456 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
app.version=2.2 | ||
app.version=2.21 | ||
spring.profiles.active=prd | ||
view.server.port = 8999 | ||
tomcat.server.port = 9000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
function FindProxyForURL(url, host) { | ||
if (isInNet(host, '127.0.0.1', '255.0.0.255') | ||
|| isInNet(dnsResolve(host), '127.0.0.1', '255.0.0.255')) { | ||
return 'DIRECT'; | ||
} | ||
var regs = [ | ||
'^https://(pan|yun).baidu.com.*$', | ||
'^https://.*.baidupcs.com/file/.*$', | ||
'^https://.*.baidupcs.com/rest/.*/pcs/file.*$', | ||
'pan.baidu.com', | ||
'yun.baidu.com', | ||
'*.baidupcs.com', | ||
]; | ||
var match = false; | ||
for (var i = 0; i < regs.length; i++) { | ||
if (url.match(regs[i])) { | ||
if (shExpMatch(host, regs[i])) { | ||
match = true; | ||
break; | ||
} | ||
} | ||
return match ? "PROXY 127.0.0.1:{port}" : "DIRECT"; | ||
return match ? 'PROXY 127.0.0.1:{port}' : 'DIRECT'; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters