From ffefe3d8f79a43dfb1d71b0dfcab4abc04d75b80 Mon Sep 17 00:00:00 2001 From: fuleyi Date: Tue, 18 Aug 2026 11:16:06 +0800 Subject: [PATCH] fix: change default ambient brightness to off MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to product design, the ambient light auto brightness feature should be disabled by default. This commit updates the default value of `ambientLightAdjustBrightness` from `true` to `false` in the configuration file. Log: Ambient brightness default changed to off Influence: 1. Verify that the ambient brightness switch is initially off on fresh install 2. Test manually enabling the feature and confirm it works as expected 3. Check that upgrading from a previous version does not override user's custom setting (if applicable) fix: 将自动亮度默认值改为关闭 根据产品设计,自动亮度功能默认应关闭。本次提交将配置项 `ambientLightAdjustBrightness` 的默认值从 `true` 改为 `false`。 Log: 自动亮度默认关闭 Influence: 1. 验证新安装系统下自动亮度开关默认关闭 2. 测试手动开启后功能是否正常 3. 检查从旧版本升级后,用户自定义设置是否被保留(如适用) PMS: BUG-372191 --- .../configs/org.deepin.dde.daemon.ambient-brightness.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin-qt/ambient-brightness/configs/org.deepin.dde.daemon.ambient-brightness.json b/src/plugin-qt/ambient-brightness/configs/org.deepin.dde.daemon.ambient-brightness.json index 17dbd491..6b553c84 100644 --- a/src/plugin-qt/ambient-brightness/configs/org.deepin.dde.daemon.ambient-brightness.json +++ b/src/plugin-qt/ambient-brightness/configs/org.deepin.dde.daemon.ambient-brightness.json @@ -3,7 +3,7 @@ "version": "1.0", "contents": { "ambientLightAdjustBrightness": { - "value": true, + "value": false, "serial": 0, "flags": [], "name": "Ambient light auto brightness",