From 93125a4b1d1259e984079527161fe1666f61f177 Mon Sep 17 00:00:00 2001 From: mrambossek Date: Sun, 2 Aug 2026 14:46:25 +0200 Subject: [PATCH] =?UTF-8?q?app:=200.3.0=20=E2=80=94=20run=20modes=20and=20?= =?UTF-8?q?the=20dev=20relay?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 5 --- echolot-app/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echolot-app/app/build.gradle.kts b/echolot-app/app/build.gradle.kts index e8771b2..1494666 100644 --- a/echolot-app/app/build.gradle.kts +++ b/echolot-app/app/build.gradle.kts @@ -15,7 +15,7 @@ plugins { // // major*1_000_000 + minor*10_000 + patch*10 leaves room for 9 patch-level rebuilds (the trailing // digit) without disturbing the mapping, and stays inside the 2_100_000_000 ceiling until major 2100. -val appVersionName = "0.2.4" +val appVersionName = "0.3.0" fun versionCodeOf(semver: String): Int { val (major, minor, patch) = semver.substringBefore('-').split(".").map(String::toInt)