Commit fcd6b31b authored by Mark Harman's avatar Mark Harman
Browse files

Update for version 66 / 1.45.

parent 6d70f0a0
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.sourceforge.opencamera"
android:versionCode="65"
android:versionName="1.44.1"
android:versionCode="66"
android:versionName="1.45"
android:installLocation="auto"
>
......
......@@ -454,9 +454,9 @@ public class MainActivity extends Activity {
// whats_new_version is the version code that the What's New text is written for. Normally it will equal the
// current release (version_code), but it some cases we may want to leave it unchanged.
// E.g., we have a "What's New" for 1.44 (64), but then push out a quick fix for 1.44.1 (65). We don't want to
// show the dialog again to people who alreaddy received 1.44 (64), but we still want to show the dialog to people
// show the dialog again to people who already received 1.44 (64), but we still want to show the dialog to people
// upgrading from earlier versions.
int whats_new_version = 64; // 1.44
int whats_new_version = 66; // 1.45
whats_new_version = Math.min(whats_new_version, version_code); // whats_new_version should always be <= version_code, but just in case!
if( MyDebug.LOG ) {
Log.d(TAG, "whats_new_version: " + whats_new_version);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment