-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 移除单文件刮削网站选择 UI * 每日构建添加 commit sha
- Loading branch information
Showing
8 changed files
with
71 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,9 @@ jobs: | |
|
||
- name: Get new commits | ||
id: get-new-commits | ||
run: echo "count=$(git log --oneline --since '24 hours ago' | wc -l)" >> $GITHUB_OUTPUT | ||
run: | | ||
echo "count=$(git log --oneline --since '24 hours ago' | wc -l)" >> $GITHUB_OUTPUT | ||
echo "SHORT_SHA=$(echo ${{ github.sha }} | cut -c1-8)" >> $GITHUB_ENV | ||
# https://github.com/actions/runner/issues/1985#issuecomment-1573518052 | ||
- name: Set matrix | ||
|
@@ -153,19 +155,19 @@ jobs: | |
if: ${{ matrix.build == 'macos' }} | ||
with: | ||
overwrite: true | ||
asset_name: MDCx-$tag-${{ matrix.build }}-${{ matrix.arch }}${{ matrix.tail }}.dmg | ||
asset_name: MDCx-$tag-${{ matrix.build }}-${{ matrix.arch }}${{ matrix.tail }}-${{ env.SHORT_SHA }}.dmg | ||
file: dist/MDCx.dmg | ||
prerelease: ${{ env.IS_DAILY }} | ||
body: | | ||
${{ !env.IS_DAILY && steps.get-changelog.outputs.CHANGELOG || github.event.repository.updated_at }} | ||
tag: ${{ !env.IS_DAILY && github.ref || 'daily_release' }} | ||
${{ env.IS_DAILY=='true' && github.event.repository.updated_at || steps.get-changelog.outputs.CHANGELOG }} | ||
tag: ${{ env.IS_DAILY=='true' && 'daily_release' || github.ref }} | ||
|
||
- name: Create Release - Windows | ||
uses: svenstaro/[email protected] | ||
if: ${{ matrix.build == 'windows' }} | ||
with: | ||
overwrite: true | ||
asset_name: MDCx-$tag-${{ matrix.build }}-${{ matrix.arch }}${{ matrix.tail }}.exe | ||
asset_name: MDCx-$tag-${{ matrix.build }}-${{ matrix.arch }}${{ matrix.tail }}-${{ env.SHORT_SHA }}.exe | ||
file: dist/MDCx.exe | ||
prerelease: ${{ env.IS_DAILY }} | ||
tag: ${{ !env.IS_DAILY && github.ref || 'daily_release' }} | ||
tag: ${{ env.IS_DAILY=='true' && 'daily_release' || github.ref }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,40 @@ | ||
## 重要 | ||
|
||
### [每日构建](https://github.com/sqzw-x/mdcx/releases/tag/daily_release) | ||
|
||
在此版本后, mdcx 将**降低**版本号变化频率, 版本号基本只用来处理会破坏配置文件兼容性的变更. | ||
一般的功能更新与 bug 修复均通过 Github actions 每日构建, 可在上述链接下载. | ||
发布页将显示最后一次提交时间, 时区为 UTC+0, 对应北京时间 +8h 即可. | ||
|
||
得益于此, 任何代码提交均将在 24h 内被发布, 因此总是可以获取到最新版本. | ||
代价是每日构建 **_不会在软件内提示更新_**, 需要手动前往上述页面查看. | ||
|
||
除此之外, 请注意此后 **任何 issue 报告均需要包含提交 hash**, 这基本上取代了原来版本号的功能, 文件名中将自动包含提交 hash | ||
|
||
## 新增 | ||
|
||
* 单文件刮削自动选择网站 by @ | ||
* 可设置刮削完成后自动创建 kodi actor 目录及自动创建软链接 | ||
|
||
## 修复 | ||
* airav jp 域名失效 | ||
* theporndb 文件 ohash 匹配 | ||
* theporndb 标题模糊匹配 | ||
* javdb cookie 设置失效 | ||
* 7mmtv/airavcc 网络测试 url | ||
* 启动后不显示自定义网站设置 | ||
* 重定向次数过多导致网络卡死 | ||
|
||
* madouqu year 获取 | ||
* iqqtv url | ||
* 未知演员写入 nfo | ||
|
||
<details> | ||
<summary>Full Changelog</summary> | ||
|
||
7ca6e70 fix(airav): airav jp 域名失效 (close #122) | ||
ac5307c fix(theporndb): 使用 ohash 获取数据后直接返回 (#124) | ||
574c7a3 fix(theporndb): title match (#124) | ||
04181ba fix(javdb): cookie (#123) | ||
65c3382 chore: use getattr default value | ||
0dad202 fix: 7mmtv url for network test (close #121) | ||
ba9550d fix(ui): not show custom website at startup | ||
3ff5773 fix(web): blocked by too many redirects | ||
26af362 fix: write unknown actor to nfo (close #151) | ||
a175c97 CI: fix daily release tag | ||
bab46d7 CI: fix release.yml | ||
96ee83b feat: 刮削完成后 自动创建actor目录 及 自动创建软链接 (close #142) | ||
761db21 CI: daily release time | ||
7ed3531 CI: daily release tag and log | ||
7099844 feat: single file scraping without site selection | ||
60122f1 CI: daily build | ||
5b60511 chore | ||
e4d7c7a fix: iqqtv default url (close #134) | ||
e70294b fix(madouqu): year字段类型;处理失败时返回空值 (#129) | ||
|
||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class ManualConfig: | ||
# 设置软件版本 | ||
local_version = 120240308 | ||
local_version = 120240321 | ||
|
||
# 定义配置值类型 | ||
INT_KEY = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.