Skip to content

Commit

Permalink
Merge pull request #37 from NightRainMilkyWay/main
Browse files Browse the repository at this point in the history
Add hash value verification
  • Loading branch information
NightRainMilkyWay authored Nov 23, 2024
2 parents 85dc276 + f6b00a3 commit c3ffae9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/Create Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ jobs:
updateJson=https://github.moeyy.xyz/https://github.com/TimeBreeze/Tritium/blob/main/Tritium_fiage.json
' > ./magisk_fiage/module.prop
name: Validate File Hash with Output File

- name: Zip Module
run: |
Expand All @@ -76,6 +79,14 @@ jobs:
zip -r $GITHUB_WORKSPACE/${CONFIG_NAME}_fiage_${VERSION}.zip ./*
cd ../../.
- name: Validate File Hash with Output File
run: |
sha256sum $GITHUB_WORKSPACE/${ZIP_FILENAME}_suni_${VERSION}.zip > $GITHUB_WORKSPACE/${ZIP_FILENAME}_suni_${VERSION}.hash
sha256sum $GITHUB_WORKSPACE/${ZIP_FILENAME}_fiage_${VERSION}.zip > $GITHUB_WORKSPACE/${ZIP_FILENAME}_fiage_${VERSION}.hash
cat $GITHUB_WORKSPACE/${ZIP_FILENAME}_suni_${VERSION}.hash
cat $GITHUB_WORKSPACE/${ZIP_FILENAME}_fiage_${VERSION}.hash
- name: Release
uses: softprops/action-gh-release@v2
env:
Expand All @@ -90,6 +101,7 @@ jobs:
files: |
./*.zip
./apk/*.apk
./*.hash
repository: TimeBreeze/Tritium
# note you'll typically need to create a personal access token
# with permissions to create releases in the other repo
Expand All @@ -98,6 +110,7 @@ jobs:
- name: 同步 repo
run: |
rm -rf ./*.zip
rm -rf ./*.hash
bash -c 'if [ $(git status --porcelain | wc -l) -eq 0 ]; then
echo "工作树无变更,跳过提交步骤..."
else
Expand Down
19 changes: 6 additions & 13 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
更新日志:

## V4.8.2日志
重大更新,解决了部分人不看文档并且不会使用导入配置的bug.
现使用[Tritium_box](https://github.com/TimeBreeze/Tritium_box)非必要不建议,存在未知bug,由于无人反馈使用状态,现快进到存档

## V4.8.1日志
```
- 优化MTK平台的GPU参数
- 优化性能模式的性能冗余 升频延迟
- 改进性能jank Bigjank情况下的Boost值
```
现使用[Tritium_box](https://github.com/TimeBreeze/Tritium_box)非必要不建议,


## 1.0.6_release 更新日志

- 修复了控制中心开关问题
Expand All @@ -19,11 +15,8 @@

注意 : 由于无障碍保活开关,可能无法使用导致发生闪退,如发生闪退请清楚数据重新打开即可

## 1.0.5_release 更新日志

- 使用原神字体
- 修复了应用字体问题
- 修复异常取色问题
## 日期:2024.11.23
* 添加了哈希值校验

## 贡献:
- @chenzyadb
Expand Down

0 comments on commit c3ffae9

Please sign in to comment.