From b6a4aeefea80c7799a19c60a6b11f42b88c6d690 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 28 May 2026 20:49:12 +0000 Subject: [PATCH 1/2] Update dependency com.facebook:ktfmt to v0.63 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 8768ff32ed..b3f39a53b0 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -48,7 +48,7 @@ composePreference = "me.zhanghai.compose.preference:preference:2.2.0" reorderable = "sh.calvin.reorderable:reorderable:3.1.0" # Dummy to get renovate updates, the version is used in rootProject build.gradle with spotless. -ktfmt = "com.facebook:ktfmt:0.62" +ktfmt = "com.facebook:ktfmt:0.63" [plugins] android-application = { id = "com.android.application", version.ref = "agp" } From 752d22364d8ceec83f76a531a78fd3596e742070 Mon Sep 17 00:00:00 2001 From: Goooler Date: Fri, 29 May 2026 09:27:17 +0800 Subject: [PATCH 2/2] Fix style --- .../kotlin/com/github/kr328/clash/common/compat/Context.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt b/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt index b6649effdd..2461b3587c 100644 --- a/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt +++ b/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt @@ -25,7 +25,8 @@ fun Context.registerReceiverCompat( filter, permission, scheduler, - if (permission == null) ContextCompat.RECEIVER_EXPORTED else ContextCompat.RECEIVER_NOT_EXPORTED, + if (permission == null) ContextCompat.RECEIVER_EXPORTED + else ContextCompat.RECEIVER_NOT_EXPORTED, ) fun Service.startForegroundCompat(id: Int, notification: Notification) =