From 0d990578809678577b2f7ba119821c1322df8e77 Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Wed, 3 Dec 2025 20:57:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E8=87=AA=E7=94=B1=E5=89=AA?= =?UTF-8?q?=E8=A3=81=E5=9B=BE=E7=89=87=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- powerbell/build.properties | 4 ++-- .../powerbell/activities/BackgroundSettingsActivity.java | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/powerbell/build.properties b/powerbell/build.properties index c71193ca..6c57045c 100644 --- a/powerbell/build.properties +++ b/powerbell/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Wed Dec 03 12:17:39 GMT 2025 +#Wed Dec 03 12:54:41 GMT 2025 stageCount=13 libraryProject= baseVersion=15.11 publishVersion=15.11.12 -buildCount=137 +buildCount=139 baseBetaVersion=15.11.13 diff --git a/powerbell/src/main/java/cc/winboll/studio/powerbell/activities/BackgroundSettingsActivity.java b/powerbell/src/main/java/cc/winboll/studio/powerbell/activities/BackgroundSettingsActivity.java index 0e3dc82f..ee677668 100644 --- a/powerbell/src/main/java/cc/winboll/studio/powerbell/activities/BackgroundSettingsActivity.java +++ b/powerbell/src/main/java/cc/winboll/studio/powerbell/activities/BackgroundSettingsActivity.java @@ -458,9 +458,12 @@ public class BackgroundSettingsActivity extends WinBoLLActivity implements Backg intent.putExtra("aspectX", viewWidth / gcd); intent.putExtra("aspectY", viewHeight / gcd); } else { - intent.putExtra("aspectX", 1); - intent.putExtra("aspectY", 1); - } + // 真正自由裁剪:移除aspectX/aspectY参数(不设置则裁剪窗口可自由调整比例) + LogUtils.d(TAG, "【裁剪比例】启用真正自由裁剪(移除固定比例限制)"); + // 注释或删除以下两行代码(不设置aspectX/aspectY,裁剪窗口即可自由调整宽高比) + // intent.putExtra("aspectX", 1); + // intent.putExtra("aspectY", 1); + } // 输出尺寸设置(统一用2048,适配所有版本) int maxOutputSize = 2048;