Loading app/src/main/AndroidManifest.xml +2 −2 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:versionCode="90" android:versionName="1.53.1" android:versionCode="91" android:versionName="1.54" android:installLocation="auto" tools:ignore="GoogleAppIndexingWarning"> <!-- ignore GoogleAppIndexingWarning as we don't want to implement that --> Loading app/src/main/java/net/sourceforge/opencamera/MainActivity.java +1 −1 Original line number Diff line number Diff line Loading @@ -655,7 +655,7 @@ public class MainActivity extends AppCompatActivity implements PreferenceFragmen // 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 already received 1.44 (64), but we still want to show the dialog to people // upgrading from earlier versions. int whats_new_version = 89; // 1.53 int whats_new_version = 91; // 1.54 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); Loading app/src/main/res/values/strings.xml +19 −6 Original line number Diff line number Diff line Loading @@ -1089,13 +1089,26 @@ <string name="whats_new_text" translatable="false"> <small>[This dialog is shown when Open Camera is updated. You can disable it under Settings/On screen GUI/Show What\'s New dialog.]</small> \n\n<b>v1.53:</b>\n \n\n<b>v1.54:</b>\n <ul> <li>Improved user interface icons.\n</li> <li>Smoother zoom for Camera2 API.\n</li> <li>Camera vendor extensions show percentage progress on supported Android 14 devices.\n</li> <li>New option for on-screen icon to enable/disable focus peaking.\n</li> <li>Support for themed/monochrome application icon.\n</li> <li>New Preview Shots (under Settings/Photo settings). When enabled, a short video is saved alongside photos, containing shots from the moment before the photo was taken (requires Android 8+ and Camera2 API).\n</li> <li>Support for choosing a specific physical lens on supported devices (requires Android 9+ and Camera2 API).\n</li> <li>Support for UltraHDR on supported devices (under Settings/Photo settings/\"Image format\") (requires Android 14+ and Camera2 API).\n</li> <li>New Auto source mode for focus bracketing: in this mode, the source focus distance will be automatically set via continuous focus or touch to focus.\n</li> <li>Haptic feedback for adjusting some seekbars. Can be disabled under Settings/More camera controls/\"Allow vibration feedback\".\n</li> <li>New option Settings/More camera controls/\"Use milliseconds in filename\".\n</li> <li>Improved performance for Camera2 API for taking photos with continuous focus mode, by optimising for latency. If this results in out of focus shots, change Settings/Photo settings/\"Optimise focus for\" to Quality.\n</li> <li>Double tapping will now cancel focus and metering area.\n</li> <li>Fixes for manual white balance.\n</li> <li>Various other improvements and bug fixes.\n</li> </ul> </string> Loading Loading
app/src/main/AndroidManifest.xml +2 −2 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:versionCode="90" android:versionName="1.53.1" android:versionCode="91" android:versionName="1.54" android:installLocation="auto" tools:ignore="GoogleAppIndexingWarning"> <!-- ignore GoogleAppIndexingWarning as we don't want to implement that --> Loading
app/src/main/java/net/sourceforge/opencamera/MainActivity.java +1 −1 Original line number Diff line number Diff line Loading @@ -655,7 +655,7 @@ public class MainActivity extends AppCompatActivity implements PreferenceFragmen // 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 already received 1.44 (64), but we still want to show the dialog to people // upgrading from earlier versions. int whats_new_version = 89; // 1.53 int whats_new_version = 91; // 1.54 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); Loading
app/src/main/res/values/strings.xml +19 −6 Original line number Diff line number Diff line Loading @@ -1089,13 +1089,26 @@ <string name="whats_new_text" translatable="false"> <small>[This dialog is shown when Open Camera is updated. You can disable it under Settings/On screen GUI/Show What\'s New dialog.]</small> \n\n<b>v1.53:</b>\n \n\n<b>v1.54:</b>\n <ul> <li>Improved user interface icons.\n</li> <li>Smoother zoom for Camera2 API.\n</li> <li>Camera vendor extensions show percentage progress on supported Android 14 devices.\n</li> <li>New option for on-screen icon to enable/disable focus peaking.\n</li> <li>Support for themed/monochrome application icon.\n</li> <li>New Preview Shots (under Settings/Photo settings). When enabled, a short video is saved alongside photos, containing shots from the moment before the photo was taken (requires Android 8+ and Camera2 API).\n</li> <li>Support for choosing a specific physical lens on supported devices (requires Android 9+ and Camera2 API).\n</li> <li>Support for UltraHDR on supported devices (under Settings/Photo settings/\"Image format\") (requires Android 14+ and Camera2 API).\n</li> <li>New Auto source mode for focus bracketing: in this mode, the source focus distance will be automatically set via continuous focus or touch to focus.\n</li> <li>Haptic feedback for adjusting some seekbars. Can be disabled under Settings/More camera controls/\"Allow vibration feedback\".\n</li> <li>New option Settings/More camera controls/\"Use milliseconds in filename\".\n</li> <li>Improved performance for Camera2 API for taking photos with continuous focus mode, by optimising for latency. If this results in out of focus shots, change Settings/Photo settings/\"Optimise focus for\" to Quality.\n</li> <li>Double tapping will now cancel focus and metering area.\n</li> <li>Fixes for manual white balance.\n</li> <li>Various other improvements and bug fixes.\n</li> </ul> </string> Loading