Skip to content

Commit

Permalink
Merge pull request #387 from eb1/master
Browse files Browse the repository at this point in the history
Fix #386
  • Loading branch information
eb1 authored Sep 20, 2019
2 parents df5782c + 10af8d8 commit e57d92c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 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="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">
<widget android-versionCode="30" defaultlocale="en" id="org.adaptit.adaptitmobile" ios-CFBundleVersion="1.2.3" version="1.2.3" 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 Expand Up @@ -204,6 +204,12 @@
<config-file mode="replace" parent="ITSAppUsesNonExemptEncryption" target="*-Info.plist">
<false />
</config-file>
<config-file mode="replace" parent="UIRequiresFullScreen" target="*-Info.plist">
<false />
</config-file>
<config-file mode="replace" parent="NSBluetoothAlwaysUsageDescription" target="*-Info.plist">
<string>This app requires bluetooth access for AirDrop document export.</string>
</config-file>
<preference name="Orientation" value="all" />
<preference name="BackupWebStorage" value="cloud" />
<preference name="StatusBarOverlaysWebView" value="true" />
Expand Down
4 changes: 2 additions & 2 deletions www/js/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ define(function (require) {
filterlist: "",
currentProject: null,
localURLs: [],
version: "1.2.0", // appended with milestone / iOS build info
version: "1.2.3", // appended with milestone / iOS build info
AndroidBuild: "30", // (was milestone release #)
iOSBuild: "1.2.1",
iOSBuild: "1.2.3",

// Mimics Element.scrollIntoView({"block": "center", "behavior": "smooth"}) for
// browsers that do not support this scrollIntoViewOptions yet.
Expand Down

0 comments on commit e57d92c

Please sign in to comment.