From a5f17fad5826d14586dfeb86d51bb4fe83e00a0e Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Sun, 13 Oct 2019 23:19:15 +0200 Subject: [PATCH] Android release v1.0.308 --- README.md | 2 +- ReactNativeClient/android/app/build.gradle | 4 ++-- Tools/tool-utils.js | 5 +---- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6f5c2d4171..8149436373 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Linux | Get it on Google Play | or download the APK file: [64-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.307/joplin-v1.0.307.apk) [32-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.307/joplin-v1.0.307-32bit.apk) +Android | Get it on Google Play | or download the APK file: [64-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.308/joplin-v1.0.308.apk) [32-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.308/joplin-v1.0.308-32bit.apk) iOS | Get it on the App Store | - ## Terminal application diff --git a/ReactNativeClient/android/app/build.gradle b/ReactNativeClient/android/app/build.gradle index d6cac24da7..e563a3e38e 100644 --- a/ReactNativeClient/android/app/build.gradle +++ b/ReactNativeClient/android/app/build.gradle @@ -94,8 +94,8 @@ android { applicationId "net.cozic.joplin" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 2097543 - versionName "1.0.307" + versionCode 2097544 + versionName "1.0.308" ndk { abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } diff --git a/Tools/tool-utils.js b/Tools/tool-utils.js index 762a892fc8..66d32b9acc 100644 --- a/Tools/tool-utils.js +++ b/Tools/tool-utils.js @@ -4,7 +4,7 @@ toolUtils.execCommand = function(command) { const exec = require('child_process').exec; return new Promise((resolve, reject) => { - const child = exec(command, (error, stdout) => { + exec(command, (error, stdout) => { if (error) { if (error.signal == 'SIGTERM') { resolve('Process was killed'); @@ -15,9 +15,6 @@ toolUtils.execCommand = function(command) { resolve(stdout.trim()); } }); - - child.stdout.pipe(process.stdout); - child.stderr.pipe(process.stderr); }); };