From 9216faa22d04f24e4a521d98aedaf7d0624945ae Mon Sep 17 00:00:00 2001 From: Adib Hanna Date: Mon, 31 Aug 2026 10:18:45 -0500 Subject: [PATCH] chore: bump 1.1.13 (vc 15) Shell-only release: the app core stays pinned to upstream 43994ff (app-core 2.38.0), unchanged from 1.1.12. Ships the attach-file fixes on top of 1.1.12: attachments land in assets/ with a vault-relative link (PR #41), self-hosted uploads use the native form-data path instead of an ignored base64 transfer encoding (closes #40), an unreadable content:// attachment answers 404 instead of killing the process (PR #34), and the attach input is off-screen for iOS-shell parity (PR #33). Claude-Session: https://claude.ai/code/session_01K8DDCypFYHRUhWWFJRu6f9 --- android/app/build.gradle | 4 ++-- package.json | 2 +- src/bridge/mobile-bridge.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 09acd40..8ea70e8 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -15,8 +15,8 @@ android { applicationId "md.zennotes" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 14 - versionName "1.1.12" + versionCode 15 + versionName "1.1.13" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/package.json b/package.json index 009bbd6..fe59b26 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zennotes-android", "private": true, - "version": "1.1.12", + "version": "1.1.13", "type": "module", "description": "ZenNotes for Android — Capacitor shell over the ZenNotes app core", "homepage": "https://zennotes.org", diff --git a/src/bridge/mobile-bridge.ts b/src/bridge/mobile-bridge.ts index 03bd89f..9a8c77c 100644 --- a/src/bridge/mobile-bridge.ts +++ b/src/bridge/mobile-bridge.ts @@ -125,7 +125,7 @@ import { import { folderForRelativePath, posixNormalize, sanitizeNoteTitle } from './vault-core' import { isPhoneViewport } from '../viewport' -let appVersion = '1.1.12' +let appVersion = '1.1.13' export async function loadNativeAppVersion(): Promise { try {