Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Start work on 1.14.0 (48)
  • Loading branch information
eb1 committed Dec 15, 2023
1 parent 9bb7132 commit 3ff5b1c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 17 deletions.
6 changes: 5 additions & 1 deletion 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="47" defaultlocale="en" id="org.adaptit.adaptitmobile" ios-CFBundleVersion="1" version="1.13.1" 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="48" defaultlocale="en" id="org.adaptit.adaptitmobile" ios-CFBundleVersion="1" version="1.14.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 Expand Up @@ -33,6 +33,9 @@
<preference name="AndroidLaunchMode" value="singleTask" />
<preference name="AndroidExtraFilesystems" value="files,files-external,documents,sdcard,root" />
<preference name="AndroidPersistentFileLocation" value="Internal" />
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:largeHeap="true" />
</edit-config>
<config-file mode="replace" parent="/manifest" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
Expand Down Expand Up @@ -336,6 +339,7 @@
<icon src="www/res/icon/windows/Wide310x150Logo.png" target="Wide310x150Logo" />
<splash src="www/res/screen/windows/splashscreen.png" target="SplashScreen" />
</platform>
<plugin name="cordova-plugin-chooser" spec="^1.3.1" />
<plugin name="cordova-plugin-fonts" spec="^0.6.5" />
<plugin name="cordova-plugin-filepath" spec="https://github.com/VIAVI-Solutions/cordova-plugin-filepath.git" />
<plugin name="cordova-plugin-keyboard" spec="https://github.com/sinn1/cordova-plugin-keyboard.git" />
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
"cordova-android": "^12.0.1",
"cordova-clipboard": "github:ihadeed/cordova-clipboard",
"cordova-ios": "^7.0.1",
"cordova-plugin-add-swift-support": "^2.0.2",
"cordova-plugin-chooser": "^1.3.2",
"cordova-plugin-customurlscheme": "^5.0.2",
"cordova-plugin-device": "github:apache/cordova-plugin-device",
"cordova-plugin-dialogs": "^2.0.2",
Expand Down Expand Up @@ -88,7 +90,8 @@
"cordova-sqlite-evcore-extbuild-free": {},
"cordova-plugin-file": {
"ANDROIDX_WEBKIT_VERSION": "1.4.0"
}
},
"cordova-plugin-chooser": {}
},
"platforms": [
"android",
Expand Down
5 changes: 3 additions & 2 deletions www/js/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ define(function (require) {
searchIndex: 0,
currentProject: null,
localURLs: [],
version: "1.13.1", // appended with Android / iOS build info
AndroidBuild: "47", // (was milestone release #)
version: "1.14.0", // appended with Android / iOS build info
AndroidBuild: "48", // (was milestone release #)
iOSBuild: "1", // iOS uploaded build number for this release (increments from 1 for each release)
importingURL: "", // for other apps in Android-land sending us files to import

Expand Down Expand Up @@ -537,6 +537,7 @@ define(function (require) {
// update the book and chapter lists, then show the import docs view
$.when(window.Application.BookList.fetch({reset: true, data: {name: ""}})).done(function () {
$.when(window.Application.ChapterList.fetch({reset: true, data: {name: ""}})).done(function () {
var proj = window.Application.currentProject;
if (proj !== null) {
importDocView = new DocumentViews.ImportDocumentView({model: proj});
importDocView.isLoadingFromURL = false;
Expand Down
13 changes: 1 addition & 12 deletions www/js/views/ProjectViews.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,7 @@ define(function (require) {
$(".bottom-tb").show();
$("#Spacer").hide();
},

// Helper to import the KB file associated with the specified project
// (overriding any existing KB). This gets called from both mobileImportAIC
// and browserImportAIC
// importKBFile = function (file, project) {
// var reader = new FileReader();
// reader.onloadend = function (evt) {
//
// };
// reader.readAsText(file, "UTF-8");
// },


// Helper to import the selected file into the specified
// project object (overridding any existing values). This gets called
// from both mobileImportAIC and browserImportAIC.
Expand Down
2 changes: 1 addition & 1 deletion www/locales/es/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
"ttlLoading": "Espere un momento, por favor.",
"ttlImporting": "Cargando... por favor espere.",
"dscStatusReading": "Leyendo archivo: \"__document__\"",
"dscErrMergeNoChapID": "Unable to merge -- cannot find existing chapter in list: __chapter__",
"dscErrMergeNoChapID": "No se puede importar documento -- no pudo encontrar capítulo: __chapter__",
"dscStatusSaving": "Lectura de archivos. Guardando lote __number__ (__details__)",
"detailWords": "palabras: __count__",
"detailChapterVerse": "__chap__, versículo: __verse__ ",
Expand Down

0 comments on commit 3ff5b1c

Please sign in to comment.