Skip to content

Commit

Permalink
🎉 Release v0.6.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
freeok committed Nov 26, 2023
1 parent 0374512 commit cf2fb0d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 37 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
# 安装依赖
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyautogui
pip install opencv-python
pip install pillow
pip install pygetwindow
pip install pyqt6
pip install pyinstaller
# Build
- run: cd src && sh cmd_deploy.sh
- run: sh deploy.sh
# Release
- name: Create Release
uses: ncipollo/release-action@v1
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## [v0.5.0-beta.1](https://github.com/pcdd-group/LangrisserHelper/releases/tag/v0.5.0-beta.1) (2023-11-21)
## 2023-11-26

### Features

* 新增奖励内容截图功能
* 新增扫荡金币功能

### Bug Fixes

Expand All @@ -11,6 +12,7 @@

### Others

* 操作完成后回复窗口原尺寸
* 更换 logo
* 重构 pyautogui_utils.click_gui()
* 优化 reward.py
28 changes: 0 additions & 28 deletions cmd_deploy.sh

This file was deleted.

12 changes: 7 additions & 5 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ cp -r assets dist

cd dist

mkdir Langrisser-Helper
mkdir LangrisserHelper

cp -r assets Langrisser-Helper
cp app.exe Langrisser-Helper
cp -r assets LangrisserHelper
cp app.exe LangrisserHelper

# 打包目录
tar cvf Langrisser-Helper.tar.gz Langrisser-Helper
tar cvf LangrisserHelper.tar.gz LangrisserHelper

rm -rf Langrisser-Helper
rm -rf LangrisserHelper

echo "打包完毕!"

0 comments on commit cf2fb0d

Please sign in to comment.