Skip to content

Commit

Permalink
版本推进至 3.0.7
Browse files Browse the repository at this point in the history
+ 支持代理
  • Loading branch information
lunzhiPenxil committed Oct 6, 2022
1 parent 90b81f6 commit 53fe9a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions OlivaDiceLogger/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"namespace" : "OlivaDiceLogger",
"message_mode" : "old_string",
"info" : "本模块为OlivaDice的日志模块,提供了跑团日志记录器,它可以在跑团过程中对日志进行记录,并由结果生成跑团日志,与在线的跑团日志渲染器进行联动、或发送日志邮件。",
"version" : "3.0.6",
"svn" : 14,
"version" : "3.0.7",
"svn" : 15,
"compatible_svn" : 101,
"priority" : 20030,
"support" : [
Expand Down
4 changes: 2 additions & 2 deletions OlivaDiceLogger/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
'''


OlivaDiceLogger_ver = '3.0.6'
OlivaDiceLogger_svn = 14
OlivaDiceLogger_ver = '3.0.7'
OlivaDiceLogger_svn = 15
OlivaDiceLogger_ver_short = '%s(%s)' % (str(OlivaDiceLogger_ver), str(OlivaDiceLogger_svn))

dataPath = './plugin/data/OlivaDice/unity'
Expand Down
2 changes: 1 addition & 1 deletion OlivaDiceLogger/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def uploadLogFile(logName):
data = {
'name': logName
}
response = req.request("POST", url, files = files, data = data)
response = req.request("POST", url, files = files, data = data, proxies = OlivaDiceCore.webTool.get_system_proxy())

def releaseDir(dir_path):
if not os.path.exists(dir_path):
Expand Down

0 comments on commit 53fe9a6

Please sign in to comment.