Skip to content

Commit

Permalink
Merge pull request #385 from eb1/master
Browse files Browse the repository at this point in the history
Update build numbers on iOS, Android
  • Loading branch information
eb1 authored Sep 16, 2019
2 parents 4237fd7 + 20e7aa3 commit df5782c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion www/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="29" defaultlocale="en" id="org.adaptit.adaptitmobile" ios-CFBundleVersion="1.2.1" version="1.2.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:gap="http://phonegap.com/ns/1.0">
<widget android-versionCode="30" defaultlocale="en" id="org.adaptit.adaptitmobile" ios-CFBundleVersion="1.2.1" version="1.2.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:gap="http://phonegap.com/ns/1.0">
<name short="Adapt It Mobile" xml:lang="en">Adapt It Mobile</name>
<description xml:lang="en">
An open source application for translating between related languages.
Expand Down
6 changes: 3 additions & 3 deletions www/js/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ define(function (require) {
currentProject: null,
localURLs: [],
version: "1.2.0", // appended with milestone / iOS build info
MilestoneBuild: "28", // milestone release #
AndroidBuild: "30", // (was milestone release #)
iOSBuild: "1.2.1",

// Mimics Element.scrollIntoView({"block": "center", "behavior": "smooth"}) for
Expand Down Expand Up @@ -131,8 +131,8 @@ define(function (require) {
// iOS - internal build #
this.version += " (" + this.iOSBuild + ")";
} else {
// Android (+ Windows + browser) -- milestone release #
this.version += " (" + this.MilestoneBuild + ")";
// Android (+ Windows + browser) -- Android build #
this.version += " (" + this.AndroidBuild + ")";
}
// local dirs (mobile app only)
if (window.sqlitePlugin) {
Expand Down

0 comments on commit df5782c

Please sign in to comment.