diff --git a/README.md b/README.md index 2bf0098..62465ee 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The *sender* component of cfc is a cimbar encoder -- such as https://cimbar.org. ## Release apks -Built apks are on the releases page: https://github.com/sz3/cfc/releases/tag/v0.5.3 +Built apks are on the releases page: https://github.com/sz3/cfc/releases/ Only arm64-v8a is officially supported at the moment, because that is all I can test for. diff --git a/app/build.gradle b/app/build.gradle index 8c8e5f4..550dfd1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 21 targetSdkVersion 29 versionCode 1 - versionName "0.5.3" + versionName "0.5.4" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { diff --git a/app/src/cpp/cfc-cpp/jni.cpp b/app/src/cpp/cfc-cpp/jni.cpp index 42e95bd..b1fc74e 100644 --- a/app/src/cpp/cfc-cpp/jni.cpp +++ b/app/src/cpp/cfc-cpp/jni.cpp @@ -110,7 +110,7 @@ namespace { { std::stringstream sstop; sstop << "cfc using " << _proc->num_threads() << " thread(s). " << _proc->color_bits() << "..." << _proc->backlog() << "? "; - sstop << (MultiThreadedDecoder::bytes / std::max(1, MultiThreadedDecoder::decoded)) << "b v0.5.3"; + sstop << (MultiThreadedDecoder::bytes / std::max(1, MultiThreadedDecoder::decoded)) << "b v0.5.4"; std::stringstream ssmid; ssmid << "#: " << MultiThreadedDecoder::perfect << " / " << MultiThreadedDecoder::decoded << " / " << MultiThreadedDecoder::scanned << " / " << _calls; std::stringstream ssperf;