From 55ce968053718d516bb6fc8231c3cc044fc91db9 Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Tue, 29 Apr 2025 21:00:39 +0800 Subject: [PATCH 1/4] APK 15.3.0 release Publish. --- powerbell/build.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/powerbell/build.properties b/powerbell/build.properties index d85e3c3..c2cc27e 100644 --- a/powerbell/build.properties +++ b/powerbell/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Tue Apr 29 12:41:13 GMT 2025 -stageCount=0 +#Tue Apr 29 21:00:39 HKT 2025 +stageCount=1 libraryProject= baseVersion=15.3 publishVersion=15.3.0 -buildCount=4 +buildCount=0 baseBetaVersion=15.3.1 From 482c0074813ffb48f4f8aff83be4bc1f75e49632 Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Sat, 3 May 2025 14:01:56 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E5=BA=94=E7=94=A8=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=90=AF=E5=8A=A8=E5=90=8E=E5=BB=B6=E8=BF=9F2=E7=A7=92?= =?UTF-8?q?=E6=89=A7=E8=A1=8C=E6=8F=90=E9=86=92=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- powerbell/build.properties | 4 ++-- .../powerbell/services/ControlCenterService.java | 16 +++++++++++++--- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/powerbell/build.properties b/powerbell/build.properties index c2cc27e..81fcd6e 100644 --- a/powerbell/build.properties +++ b/powerbell/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Tue Apr 29 21:00:39 HKT 2025 +#Sat May 03 05:59:40 GMT 2025 stageCount=1 libraryProject= baseVersion=15.3 publishVersion=15.3.0 -buildCount=0 +buildCount=3 baseBetaVersion=15.3.1 diff --git a/powerbell/src/main/java/cc/winboll/studio/powerbell/services/ControlCenterService.java b/powerbell/src/main/java/cc/winboll/studio/powerbell/services/ControlCenterService.java index 926fb71..d073071 100644 --- a/powerbell/src/main/java/cc/winboll/studio/powerbell/services/ControlCenterService.java +++ b/powerbell/src/main/java/cc/winboll/studio/powerbell/services/ControlCenterService.java @@ -32,6 +32,8 @@ import cc.winboll.studio.powerbell.utils.AppConfigUtils; import cc.winboll.studio.powerbell.utils.NotificationHelper; import cc.winboll.studio.powerbell.utils.ServiceUtils; import cc.winboll.studio.powerbell.utils.StringUtils; +import android.os.Handler; +import android.os.Looper; public class ControlCenterService extends Service { @@ -114,9 +116,17 @@ public class ControlCenterService extends Service { mControlCenterServiceReceiver = new ControlCenterServiceReceiver(this); mControlCenterServiceReceiver.registerAction(this); } - startRemindThread(mAppConfigUtils.mAppConfigBean); - ToastUtils.show("Service Is Start."); - LogUtils.i(TAG, "Service Is Start."); + + new Handler(Looper.getMainLooper()).postDelayed(new Runnable(){ + + @Override + public void run() { + startRemindThread(mAppConfigUtils.mAppConfigBean); + ToastUtils.show("Service Is Start."); + LogUtils.i(TAG, "Service Is Start."); + } + }, 2000); + } } From 512c321b763e969aef2db72b7897d12376063744 Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Sat, 3 May 2025 14:19:32 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=B8=B8=E9=A9=BB?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E6=A0=8F=E6=98=BE=E7=A4=BAUI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- powerbell/build.properties | 4 ++-- .../cc/winboll/studio/powerbell/utils/NotificationHelper.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/powerbell/build.properties b/powerbell/build.properties index 81fcd6e..14f5cdd 100644 --- a/powerbell/build.properties +++ b/powerbell/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Sat May 03 05:59:40 GMT 2025 +#Sat May 03 06:18:02 GMT 2025 stageCount=1 libraryProject= baseVersion=15.3 publishVersion=15.3.0 -buildCount=3 +buildCount=4 baseBetaVersion=15.3.1 diff --git a/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java b/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java index cc62c37..98f25e5 100644 --- a/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java +++ b/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java @@ -83,8 +83,8 @@ public class NotificationHelper { Notification notification = new NotificationCompat.Builder(mContext, CHANNEL_ID_FOREGROUND) .setSmallIcon(R.drawable.ic_launcher) .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), R.drawable.ic_launcher)) - .setContentTitle(title) - .setContentText(content) + .setContentTitle(title + "\n" + content) + //.setContentText(content) .setContentIntent(pendingIntent) .setPriority(NotificationCompat.PRIORITY_LOW) .setOngoing(true) From 9816167e877d1a63ca24dcacb6a83be3beeac8fb Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Sat, 3 May 2025 14:22:27 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E6=A0=8F=E6=98=BE=E7=A4=BA=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- powerbell/build.properties | 4 ++-- .../cc/winboll/studio/powerbell/utils/NotificationHelper.java | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/powerbell/build.properties b/powerbell/build.properties index 14f5cdd..c6ca083 100644 --- a/powerbell/build.properties +++ b/powerbell/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Sat May 03 06:18:02 GMT 2025 +#Sat May 03 06:21:11 GMT 2025 stageCount=1 libraryProject= baseVersion=15.3 publishVersion=15.3.0 -buildCount=4 +buildCount=5 baseBetaVersion=15.3.1 diff --git a/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java b/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java index 98f25e5..48b3816 100644 --- a/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java +++ b/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/NotificationHelper.java @@ -83,7 +83,8 @@ public class NotificationHelper { Notification notification = new NotificationCompat.Builder(mContext, CHANNEL_ID_FOREGROUND) .setSmallIcon(R.drawable.ic_launcher) .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), R.drawable.ic_launcher)) - .setContentTitle(title + "\n" + content) + //.setContentTitle(title + "\n" + content) + .setContentTitle(content) //.setContentText(content) .setContentIntent(pendingIntent) .setPriority(NotificationCompat.PRIORITY_LOW)