Merge branch 'main' into pr-402
This commit is contained in:
@@ -171,6 +171,11 @@
|
|||||||
- Refactor: centralize group allowlist/mention policy across providers.
|
- Refactor: centralize group allowlist/mention policy across providers.
|
||||||
- Deps: update to latest across the repo.
|
- Deps: update to latest across the repo.
|
||||||
|
|
||||||
|
## 2026.1.7
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- Android: bump version to 2026.1.7, add version code, and name APK outputs. Thanks @fcatuhe for PR #402.
|
||||||
|
|
||||||
## 2026.1.5-3
|
## 2026.1.5-3
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|||||||
@@ -19,8 +19,8 @@ android {
|
|||||||
applicationId = "com.clawdbot.android"
|
applicationId = "com.clawdbot.android"
|
||||||
minSdk = 31
|
minSdk = 31
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 1
|
versionCode = 20260107
|
||||||
versionName = "2026.1.5"
|
versionName = "2026.1.7"
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
@@ -29,14 +29,6 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
applicationVariants.all {
|
|
||||||
val variant = this
|
|
||||||
outputs.all {
|
|
||||||
val output = this as com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
|
||||||
output.outputFileName = "clawdbot-${variant.versionName}-${variant.buildType.name}.apk"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
compose = true
|
compose = true
|
||||||
buildConfig = true
|
buildConfig = true
|
||||||
@@ -62,6 +54,16 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
androidComponents {
|
||||||
|
onVariants { variant ->
|
||||||
|
variant.outputs.forEach { output ->
|
||||||
|
val apkOutput = output as? com.android.build.api.variant.ApkVariantOutput ?: return@forEach
|
||||||
|
val versionName = variant.versionName.orNull ?: "0"
|
||||||
|
apkOutput.outputFileName.set("clawdbot-${versionName}-${variant.name}.apk")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
compilerOptions {
|
compilerOptions {
|
||||||
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
|
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ Runbook + exact service labels: [Gateway runbook](/gateway)
|
|||||||
Install a known-good version:
|
Install a known-good version:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm i -g clawdbot@2026.1.5-3
|
npm i -g clawdbot@2026.1.7
|
||||||
```
|
```
|
||||||
|
|
||||||
Then restart + re-run doctor:
|
Then restart + re-run doctor:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "clawdbot",
|
"name": "clawdbot",
|
||||||
"version": "2026.1.5-3",
|
"version": "2026.1.7",
|
||||||
"description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent",
|
"description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|||||||
Reference in New Issue
Block a user