Skip to content

Commit 506af60

Browse files
committed
docs: 更新文档以说明降压功能支持及添加v2.12.0更新日志
- 在兼容性和设备支持文档中新增“降压功能支持”章节,明确支持降压的芯片型号及注意事项。 - 更新中英文CHANGELOG,添加v2.12.0版本的新特性与改进说明。
1 parent 47ccbcb commit 506af60

File tree

6 files changed

+115
-1
lines changed

6 files changed

+115
-1
lines changed

docs/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# 📝 更新日志
22

3+
## ⬆️ v2.11.0 → v2.12.0 (2026-02-01)
4+
5+
> ⚠️ **提示**
6+
>
7+
> 不支持降压的处理器频率表中,电压字段仅为占位,用于与其他频率表对齐,实际降压功能不生效。
8+
9+
### ✨ 新增特性
10+
11+
- **添加 Dimensity 8400 芯片配置支持** 📱
12+
- 为天玑 8400 处理器添加频率表和配置支持,扩展设备兼容性。
13+
- **WebUI 添加 KSU Insets 支持** 🌐
14+
- 实现 KernelSU Insets 适配,优化 WebUI 在 KSU 环境下的显示效果。
15+
- **WebUI 添加帮助文档查看功能** 📚
16+
- 在 WebUI 中集成帮助文档查看器,方便用户快速查阅使用说明。
17+
18+
### 🔧 功能改进
19+
20+
- **简化全局模式检测逻辑**
21+
- 优化全局模式检测的代码逻辑,提升执行效率和可维护性。
22+
- **更新项目依赖** 📦
23+
- 升级相关依赖库到最新版本,提升安全性和稳定性。
24+
- **WebUI 优化 UI 组件的样式和布局** 🎨
25+
- 改进 WebUI 界面组件的视觉样式和页面布局,提升用户体验。
26+
- **WebUI 优化 TOML 解析库** 🔧
27+
- 升级和优化 TOML 解析库,提升配置文件的解析性能和兼容性。
28+
329
## ⬆️ v2.10.3 → v2.11.0 (2025-11-30)
430

531
> ⚠️ **重要提示**

docs/en/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# 📝 CHANGELOG
22

3+
## ⬆️ v2.11.0 → v2.12.0 (February 1, 2026)
4+
5+
> ⚠️ **Important Notice**
6+
>
7+
> In the frequency tables of processors that do not support voltage reduction, the voltage field is only a placeholder for alignment with other frequency tables, and the actual voltage reduction function does not take effect.
8+
9+
### ✨ New Features
10+
11+
- **Add Dimensity 8400 chip configuration support** 📱
12+
- Added frequency table and configuration support for Dimensity 8400 processor, expanding device compatibility.
13+
- **WebUI adds KSU Insets support** 🌐
14+
- Implemented KernelSU Insets adaptation to optimize WebUI display in KSU environment.
15+
- **WebUI adds help documentation viewer** 📚
16+
- Integrated help documentation viewer in WebUI for quick access to user guides.
17+
18+
### 🔧 Improvements
19+
20+
- **Simplify global mode detection logic**
21+
- Optimized the code logic for global mode detection, improving execution efficiency and maintainability.
22+
- **Update project dependencies** 📦
23+
- Upgraded related dependencies to the latest versions for improved security and stability.
24+
- **WebUI optimizes UI component styles and layout** 🎨
25+
- Improved visual styles and page layout of WebUI interface components for better user experience.
26+
- **WebUI optimizes TOML parsing library** 🔧
27+
- Upgraded and optimized TOML parsing library for better configuration file parsing performance and compatibility.
28+
329
## ⬆️ v2.10.3 → v2.11.0 (November 30, 2025)
430

531
> ⚠️ **Important Notice**

docs/en/supported-devices.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,22 @@ Supports most MediaTek processors with Mali GPU:
66

77
The module will automatically detect the device model and apply the appropriate configuration.
88
If your device is not in the adaptation list, the module will use the default configuration.
9+
10+
## Voltage Undervolting Support ⚡
11+
12+
Voltage undervolting is only supported on the following chip models:
13+
14+
- **Dimensity 1000 / 1100 / 1200**
15+
- **Dimensity 8100 / 8200**
16+
- **Dimensity 9000**
17+
18+
> **Note**: For processors that do not support undervolting, the voltage fields in the frequency table are for placeholder purposes only, used to maintain format alignment with other frequency tables. The actual undervolting function will not take effect.
19+
20+
### Undervolting Configuration File
21+
22+
The undervolting function is implemented through the `volt` parameter in the frequency table, located at `/data/adb/gpu_governor/config/gpu_freq_table.toml`.
23+
24+
**Usage Instructions:**
25+
- The module will automatically detect the chip model and apply the corresponding undervolting configuration
26+
- Incorrect voltage values may cause system instability
27+
- If adjustment is needed, please refer to the voltage value ranges in `volt_list.txt`

docs/supported-devices.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,23 @@
55
- Dimensity 系列(如 D1x00/D6080/D7300/D8x00/D9x00,0 ≤ x ≤ 4)
66

77
模块会自动检测设备型号并应用适合的配置。
8-
如果您的设备不在适配列表中,模块会使用默认配置
8+
如果您的设备不在适配列表中,模块会使用默认配置。
9+
10+
## 降压功能支持 ⚡
11+
12+
降压功能仅支持以下芯片型号:
13+
14+
- **天玑 1000 / 1100 / 1200**
15+
- **天玑 8100 / 8200**
16+
- **天玑 9000**
17+
18+
> **注意**:不支持降压的处理器,其频率表中的电压字段仅为占位用途,用于与其他频率表保持格式对齐,实际降压功能不会生效。
19+
20+
### 降压配置文件
21+
22+
降压功能通过频率表中的 `volt` 参数实现,位于 `/data/adb/gpu_governor/config/gpu_freq_table.toml`
23+
24+
**使用说明:**
25+
- 模块会自动检测芯片型号并应用对应的降压配置
26+
- 错误的电压可能导致系统不稳定
27+
- 如需调整,请参考volt_list.txt文件中的电压值范围

website/docs/en/guide/compatibility.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@ The module provides dedicated preset configuration files for the following proce
2626

2727
Different processor series have different frequency ranges and voltage configurations. The module will automatically select the matching frequency table configuration based on the device model.
2828

29+
## Voltage Undervolting Support ⚡
30+
31+
Voltage undervolting is only supported on the following chip models:
32+
33+
- **Dimensity 1000 / 1100 / 1200**
34+
- **Dimensity 8100 / 8200**
35+
- **Dimensity 9000**
36+
37+
> **Note**: For processors that do not support undervolting, the voltage fields in the frequency table are for placeholder purposes only, used to maintain format alignment with other frequency tables. The actual undervolting function will not take effect.
38+
39+
The undervolting function is implemented through the `volt` parameter in the frequency table. The module will automatically detect the chip model and apply the corresponding undervolting configuration.
40+
2941
## Technical Compatibility
3042

3143
### GPUFreq Driver Support

website/docs/guide/compatibility.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@
2626

2727
不同处理器系列具有不同的频率范围和电压配置,模块会根据设备型号自动选择匹配的频率表配置。
2828

29+
## 降压功能支持 ⚡
30+
31+
降压功能仅支持以下芯片型号:
32+
33+
- **天玑 1000 / 1100 / 1200**
34+
- **天玑 8100 / 8200**
35+
- **天玑 9000**
36+
37+
> **注意**:不支持降压的处理器,其频率表中的电压字段仅为占位用途,用于与其他频率表保持格式对齐,实际降压功能不会生效。
38+
39+
降压功能通过频率表中的 `volt` 参数实现。模块会自动检测芯片型号并应用对应的降压配置。
40+
2941
## 技术兼容性
3042

3143
### GPUFreq 驱动支持

0 commit comments

Comments
 (0)