We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b1e269 commit d98e040Copy full SHA for d98e040
2 files changed
CONTRIBUTING.md
@@ -1,12 +1,17 @@
1
### 更新日志
2
3
-#### JadeV2.2.5 - 2024-05-27
4
-* 优化数据库父类操作,解决异常问题,代码优化
+#### JadeV2.2.6 - 2024-06-11
+* 解决Windows下打包由路径引发的bug
5
---
6
7
<details onclose>
8
<summary>查看更多更新日志</summary>
9
10
+#### JadeV2.2.5 - 2024-05-27
11
+* 优化数据库父类操作,解决异常问题,代码优化
12
+---
13
+
14
15
#### JadeV2.2.4 - 2024-05-17
16
* 解决打包出现的日志重复的bug
17
jade/jade_packing.py
@@ -427,7 +427,7 @@ def writeSpec(args):
427
data_str = data_str + file_path_list_str + ","
428
else:
429
file_path = bin_path
430
- file_path_str = ("'{}'".format(file_path))
+ file_path_str = ("r'{}'".format(file_path))
431
file_path_list_str = "({},'{}')".format(file_path_str, save_path)
432
if i == len(extra_path_list) - 1:
433
data_str = data_str + file_path_list_str + "]"
0 commit comments