Skip to content

Commit 7601983

Browse files
committed
fix pack error and update readme
1 parent fe37bf8 commit 7601983

File tree

7 files changed

+14
-5
lines changed

7 files changed

+14
-5
lines changed

.github/workflows/pack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ jobs:
3838
- name: test pack
3939
run: |
4040
pip3 install -r requirements.txt
41-
pip3 install pyinstaller wheel
41+
pip3 install pyinstaller==5.1 wheel
4242
python setup.py sdist bdist_wheel
4343
python pack.py

.github/workflows/pack_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
sudo apt-get update
4343
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y x11-utils libxkbcommon-x11-0
4444
pip3 install -r requirements.txt
45-
pip3 install -U pyinstaller wheel
45+
pip3 install -U pyinstaller==5.1 wheel
4646
python setup.py sdist bdist_wheel
4747
python pack.py

.github/workflows/release_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
sudo apt-get update
4242
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y x11-utils libxkbcommon-x11-0
4343
pip3 install -r requirements.txt
44-
pip3 install pyinstaller wheel
44+
pip3 install pyinstaller==5.1 wheel
4545
python setup.py sdist bdist_wheel
4646
python pack.py
4747
release_path=`python pack.py ${{ matrix.os }}`

.github/workflows/release_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
python --version
4040
pip3 install -r requirements.txt
41-
pip3 install pyinstaller wheel
41+
pip3 install pyinstaller==5.1 wheel
4242
python setup.py sdist bdist_wheel
4343
python pack.py
4444
release_path=`python pack.py ${{ matrix.os }}`

.github/workflows/release_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
python --version
4040
pip3 install -r requirements.txt
41-
pip3 install pyinstaller wheel
41+
pip3 install pyinstaller==5.1 wheel
4242
python setup.py sdist bdist_wheel
4343
python pack.py
4444
$release_path = python pack.py ${{ matrix.os }}

README.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,11 @@ python COMTool/Main.py
290290

291291
5. pull request
292292

293+
## Write your own plugins in minutes
294+
295+
see [docs/plugins.md](./docs/plugins.md)
296+
297+
293298
## Add translate
294299

295300
* Install environment first(python pip packages in the requirments.txt)

README_ZH.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,10 @@ python COMTool/Main.py
287287

288288
5. 创建合并请求
289289

290+
## 快速编写你自己的插件
291+
292+
参考 [docs/plugins.md](./docs/plugins_zh.md)
293+
290294
## 添加翻译
291295

292296
* 先安装环境(`requirments.txt`中的`python pip`包)

0 commit comments

Comments
 (0)