Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions controller/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ android {

// 3. Version Control (OTA)
// NOTE: With splits enabled, this number will be multiplied by 10 (e.g. 50 -> 500, 501, 502)
versionCode 60
versionCode 61
// Dynamic version suffix: CI passes -PversionSuffix explicitly; local builds fall back to
// the git short SHA (ADFA-4787) so any installed APK is traceable to its commit.
def ciSuffix = project.hasProperty('versionSuffix') ? project.property('versionSuffix')
: (project.ext.gitSha ? "-${project.ext.gitSha}" : "")
versionName "v0.7.0-beta${ciSuffix}"
versionName "v0.8.0-beta${ciSuffix}"
buildConfigField "String", "GIT_SHA", "\"${project.ext.gitSha}\""
// True only when google-services.json is present, so AnalyticsClient can compile out cleanly.
buildConfigField "boolean", "ANALYTICS_ENABLED", "${hasGoogleServices}"
Expand Down
8 changes: 4 additions & 4 deletions controller/app/src/main/assets/module_sizes.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# module,bytes,fetched_date -- AUTO-GENERATED by the refreshModuleSizes Gradle task; do not edit by hand
calibreweb,1563557888,2026-08-03
code,665001984,2026-08-03
kiwix,74371072,2026-08-03
kolibri,419393536,2026-08-03
calibreweb,1572274176,2026-09-03
code,610934784,2026-09-03
kiwix,74387456,2026-09-03
kolibri,419401728,2026-09-03
12 changes: 6 additions & 6 deletions controller/app/src/main/assets/rootfs_sizes.csv
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# tier,abi,bytes,fetched_date,installed_bytes -- AUTO-GENERATED by the refreshRootfsSizes Gradle task; do not edit by hand
basic,arm64-v8a,1936814083,2026-08-12,3294993334
basic,armeabi-v7a,1937574673,2026-08-12,3162669853
standard,arm64-v8a,2146100011,2026-08-12,3675639489
standard,armeabi-v7a,2146813777,2026-08-12,3542808901
full,arm64-v8a,2841912764,2026-08-12,5103603118
full,armeabi-v7a,2833106837,2026-08-12,4856267277
basic,arm64-v8a,1649845463,2026-09-03,2950421580
basic,armeabi-v7a,1638428251,2026-09-03,2810709359
standard,arm64-v8a,1759501126,2026-09-03,3231108551
standard,armeabi-v7a,1747561973,2026-09-03,3090394658
full,arm64-v8a,2425043952,2026-09-03,4631509521
full,armeabi-v7a,2404391214,2026-09-03,4377420576
6 changes: 6 additions & 0 deletions controller/ci/ota-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ tag). This file is only the short summary end users read when they update.
Rule: the version header must match the release tag / `versionName` so the CI picks
the right entry.

## v0.8.0-beta
K2Go now installs as a new app, so Android cannot update your current one into it. Start over
without losing anything: back up your library first (Settings > Backups & recovery), remove the old
app, install this release by hand, then restore your backup. Keeping both installed stops the new
app from starting.

## v0.7.0-beta
Welcome to Knowledge to Go. v0.7.0-beta brings a resilient install (pause/resume),
honest system state, and a refreshed Connect & Clone. Enjoy life offline.
Expand Down
Loading