Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Trax
traxcam
Commits
fcd6b31b
Commit
fcd6b31b
authored
6 years ago
by
Mark Harman
Browse files
Options
Download
Email Patches
Plain Diff
Update for version 66 / 1.45.
parent
6d70f0a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
app/src/main/AndroidManifest.xml
app/src/main/AndroidManifest.xml
+2
-2
app/src/main/java/net/sourceforge/opencamera/MainActivity.java
...rc/main/java/net/sourceforge/opencamera/MainActivity.java
+2
-2
No files found.
app/src/main/AndroidManifest.xml
View file @
fcd6b31b
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"net.sourceforge.opencamera"
android:versionCode=
"6
5
"
android:versionName=
"1.4
4.1
"
android:versionCode=
"6
6
"
android:versionName=
"1.4
5
"
android:installLocation=
"auto"
>
...
...
This diff is collapsed.
Click to expand it.
app/src/main/java/net/sourceforge/opencamera/MainActivity.java
View file @
fcd6b31b
...
...
@@ -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 alread
d
y 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
=
6
4
;
// 1.4
4
int
whats_new_version
=
6
6
;
// 1.4
5
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
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment