diff --git a/mobile/android/app/build.gradle b/mobile/android/app/build.gradle index e88cb39..e45fff2 100644 --- a/mobile/android/app/build.gradle +++ b/mobile/android/app/build.gradle @@ -9,8 +9,8 @@ android { targetSdkVersion rootProject.ext.targetSdkVersion // Version values below are overwritten by scripts/release.sh from // the root package.json. versionCode auto-increments per release. - versionCode 714010 - versionName "7.14.10" + versionCode 714011 + versionName "7.14.11" 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/mobile/package-lock.json b/mobile/package-lock.json index 7eebc30..8cc2394 100644 --- a/mobile/package-lock.json +++ b/mobile/package-lock.json @@ -1,12 +1,12 @@ { "name": "pedscribe-mobile", - "version": "7.14.9", + "version": "7.14.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pedscribe-mobile", - "version": "7.14.9", + "version": "7.14.11", "dependencies": { "@aparajita/capacitor-biometric-auth": "^8.0.0", "@capacitor/android": "^6.0.0", diff --git a/mobile/package.json b/mobile/package.json index 47982ef..980b567 100644 --- a/mobile/package.json +++ b/mobile/package.json @@ -1,6 +1,6 @@ { "name": "pedscribe-mobile", - "version": "7.14.9", + "version": "7.14.11", "description": "PedScribe native mobile app — Capacitor wrapper for Pediatric AI Scribe", "private": true, "scripts": { diff --git a/package-lock.json b/package-lock.json index f6cfc63..f980c65 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pediatric-ai-scribe", - "version": "7.14.9", + "version": "7.14.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pediatric-ai-scribe", - "version": "7.14.9", + "version": "7.14.11", "dependencies": { "@marp-team/marp-cli": "^4.3.1", "@marp-team/marp-core": "^4.3.0", diff --git a/package.json b/package.json index 0cafe7c..b1848da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pediatric-ai-scribe", - "version": "7.14.10", + "version": "7.14.11", "description": "AI-powered pediatric clinical documentation platform", "main": "server.js", "scripts": { diff --git a/public/js/assistant/images.js b/public/js/assistant/images.js index ea1798b..612ddfe 100644 --- a/public/js/assistant/images.js +++ b/public/js/assistant/images.js @@ -151,13 +151,8 @@ async function downloadWithBrowser(src) { a.remove(); setTimeout(function() { URL.revokeObjectURL(objectUrl); }, 60000); - if (isMobileBrowser()) { - setTimeout(function() { - var opened = window.open(objectUrl, '_blank', 'noopener'); - if (opened && typeof window.showToast === 'function') { - window.showToast('If the download did not start, long-press the opened image and save it.', 'success'); - } - }, 300); + if (isMobileBrowser() && typeof window.showToast === 'function') { + window.showToast('If the download did not start, use Preview and long-press the image to save it.', 'info'); } }