Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Commit 2734426

Browse files
committed
Preparations for 2.1.0 release.
1 parent ab57348 commit 2734426

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

readme.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,16 @@ $ cordova create ThaliTest com.test.thalitest ThaliTest
6666

6767
To use Thali in a Cordova project one must do the following:
6868

69-
5. Make sure to add whatever platforms you are using in Cordova using `cordova platform add` (android | ios)
70-
1. Add a subfolder to www named jxcore (case sensitivity matters)
71-
2. Inside the jxcore folder create the app.js for your application
72-
3. Inside the jxcore folder create the package.json for your application
69+
1. Make sure to add whatever platforms you are using in Cordova using `cordova platform add` (android | ios)
70+
2. Add a subfolder to www named jxcore (case sensitivity matters)
71+
3. Inside the jxcore folder create the app.js for your application
72+
4. Inside the jxcore folder create the package.json for your application
7373
* `jx npm init` provides an easy to use wizard that will create a basic package.json file
74-
4. Inside the jxcore folder run the command `jx install thali --autoremove "*.gz" --save`
75-
5. Make sure to run `cordova build` as this is critical to moving key files into place
76-
* Yes, an exception did get thrown during the build. No, it isn't harmful. No, we haven't quite figured out
77-
why it gets thrown, the verbose debug logs aren't saying anything useful.
74+
5. Inside the jxcore folder run the command `jx install thali --autoremove "*.gz" --save`
75+
6. Make sure to run `cordova build` as this is critical to moving key files into place
7876

79-
Now you can run your app.
77+
Now you can run your app. The Android devices need to have OS version Lollipop or later for things to work properly
78+
(Thali uses class `BluetoothLeAdvertiser`, which was added in API level 21).
8079

8180
Note that Thali uses a subdirectory in your project called thaliDontCheckin to manage certain downloads. Per the name of the directory, please don't check it in to your repro.
8281

thali/install/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ module.exports = function(callback, appRootDirectory) {
248248

249249
var thaliProjectName = "thaliproject";
250250
var thaliDepotName = "Thali_CordovaPlugin";
251-
var thaliBranchName = "npmv2.0.4";
251+
var thaliBranchName = "npmv2.1.0";
252252

253253
fetchAndInstallJxCoreCordovaPlugin(appRootDirectory, jxCoreVersionNumber)
254254
.then(function () {

thali/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thali",
3-
"version": "2.0.4",
3+
"version": "2.1.0",
44
"description": "Thali Cordova Plugin",
55
"main": "thalireplicationmanager.js",
66
"dependencies": {

0 commit comments

Comments
 (0)