Compare commits

...

2 Commits

Author SHA1 Message Date
acgnhik
457a974ab7 release: 1.14.1 2023-09-28 16:29:51 +08:00
acgnhik
b35b5f2fc1 chore: update portable.yml 2023-09-28 15:56:25 +08:00
4 changed files with 8 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ on:
env:
FFMPEG_ARCHIVE_URL: https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-lgpl-shared.zip
FFMPEG_ARCHIVE_NAME: ffmpeg-master-latest-win64-lgpl-shared.zip
PYTHON_ARCHIVE_URL: https://www.python.org/ftp/python/3.11.1/python-3.11.1-embed-amd64.zip
PYTHON_ARCHIVE_URL: https://www.python.org/ftp/python/3.11.5/python-3.11.5-embed-amd64.zip
jobs:
@@ -23,7 +23,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.11.1"
python-version: "3.11.5"
- name: Download ffmpeg archive
run: Invoke-WebRequest -Uri $($env:FFMPEG_ARCHIVE_URL) -OutFile ffmpeg.zip
@@ -92,7 +92,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist\*
file: dist/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true

View File

@@ -1,5 +1,9 @@
# 更新日志
## 1.14.1
修复 `ModuleNotFoundError: No module named 'blrec.web.middlewares'`
## 1.14.0
- 修复删除全部任务失败

View File

@@ -1,3 +1,3 @@
__prog__ = 'blrec'
__version__ = '1.14.0'
__version__ = '1.14.1'
__github__ = 'https://github.com/acgnhiki/blrec'

View File