Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
oneui committed Jan 23, 2025
1 parent d71cbc5 commit 64d6eea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main
workflow_dispatch:
env:
VERSION: '10.0.0'
VERSION: '10.1.0'
jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -36,14 +36,14 @@ jobs:
### 新的功能
1. **修复小米 14 之后机型 fastboot 无法刷入 super 的问题**
2. **调整 super 的额外空间大小**:super 的额外空间大小调整为200MB,不再为1GB。
2. **调整 super 的额外空间大小**:super 的额外空间大小调整为125MB,不再为1GB。
3. **警告**:所有 Android 15 涉及 Apktool 的修改会导致开机异常,现在不要使用与 Apktool 修改有关的内容,建议使用 MT 管理器修改。
## Release Notes
### New Features
1. **Fixed fastboot flashing issue for super on Xiaomi 14 and later models**
2. **Adjusted extra space size for super**: The extra space size for super has been adjusted to 200MB, no longer 1GB.
2. **Adjusted extra space size for super**: The extra space size for super has been adjusted to 125MB, no longer 1GB.
3. **Warning**: All modifications involving Apktool on Android 15 will cause boot issues. Avoid using Apktool-related modifications for now; consider using MT Manager for modifications.
- name: Archive project
Expand Down
2 changes: 1 addition & 1 deletion resources/module_codes/cn/make_super.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function create_super_img {
fi

# 定义额外的空间大小
local extra_space=$((2 * 1024 * 1024 * 1024 / 10))
local extra_space=$((1024 * 1024 * 1024 / 8))

# 根据分区类型调整 total_size 的值
case "$partition_type" in
Expand Down
2 changes: 1 addition & 1 deletion resources/module_codes/en/make_super.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function create_super_img {
total_size=$((total_size + 4096 - remainder))
fi
# Define the size of the extra space
local extra_space=$((2 * 1024 * 1024 * 1024 / 10))
local extra_space=$((1024 * 1024 * 1024 / 8))
# Adjust the total_size based on the partition type
case "$partition_type" in
"VAB")
Expand Down

0 comments on commit 64d6eea

Please sign in to comment.