Skip to content

Commit

Permalink
Boost ver
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Jan 21, 2017
1 parent 303fc51 commit 7f31c38
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dist/blynk-library-js.ipk: dist
mkdir -p ipk/usr/local/lib/node_modules/blynk-library
cp -r blynk-node.js blynk.js *.json certs bin ipk/usr/local/lib/node_modules/blynk-library
mkdir -p ipk/bin
ln -s /usr/local/lib/node_modules/blynk-library/bin/blynk.js ipk/bin/blynk.js
ln -s /usr/local/lib/node_modules/blynk-library/bin/blynk-ctrl.js ipk/bin/blynk-ctrl.js
ln -s /usr/local/lib/node_modules/blynk-library/bin/blynk-client ipk/bin/blynk-client.js
ln -s /usr/local/lib/node_modules/blynk-library/bin/blynk-ctrl ipk/bin/blynk-ctrl.js
tar czvf control.tar.gz control
cd ipk; tar czvf ../data.tar.gz .; cd ..
echo 2.0 > debian-binary
Expand Down
2 changes: 1 addition & 1 deletion blynk-espruino.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Blynk.prototype.onReceive = function(data) {
self.sendMsg(MsgType.PING);
}, self.heartbeat);
console.log('Authorized');
self.sendMsg(MsgType.HW_INFO, ['ver', '0.4.4', 'dev', 'espruino']);
self.sendMsg(MsgType.HW_INFO, ['ver', '0.4.5', 'dev', 'espruino']);
self.emit('connect');
} else {
//if invalid token, no point in trying to reconnect
Expand Down
2 changes: 1 addition & 1 deletion control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: blynk-library-js
Version: 0.4.4
Version: 0.4.5
Description: Blynk library implementation for JavaScript (Node.js, Espruino)
Section: extras
Priority: optional
Expand Down
7 changes: 3 additions & 4 deletions dist/blynk-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,15 @@ util.inherits(exports.WsClient, events.EventEmitter);
},{"events":6,"util":10}],2:[function(require,module,exports){
module.exports={
"name": "blynk-library",
"version": "0.4.4",
"version": "0.4.5",
"description": "Blynk library implementation for JavaScript (Node.js, Espruino)",
"author": "Volodymyr Shymanskyy",
"license": "MIT",

"main": "./blynk.js",
"bin": {
"blynk.js": "bin/blynk-client.js",
"blynk-client.js": "bin/blynk-client.js",
"blynk-ctrl.js": "bin/blynk-ctrl.js"
"blynk-client": "bin/blynk-client.js",
"blynk-ctrl": "bin/blynk-ctrl.js"
},
"engines": {
"node": ">= 0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion dist/blynk-browser.min.js

Large diffs are not rendered by default.

Binary file modified dist/blynk-library-js.ipk
Binary file not shown.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"name": "blynk-library",
"version": "0.4.4",
"version": "0.4.5",
"description": "Blynk library implementation for JavaScript (Node.js, Espruino)",
"author": "Volodymyr Shymanskyy",
"license": "MIT",

"main": "./blynk.js",
"bin": {
"blynk.js": "bin/blynk-client.js",
"blynk-client.js": "bin/blynk-client.js",
"blynk-ctrl.js": "bin/blynk-ctrl.js"
"blynk-client": "bin/blynk-client.js",
"blynk-ctrl": "bin/blynk-ctrl.js"
},
"engines": {
"node": ">= 0.8.0"
Expand Down

0 comments on commit 7f31c38

Please sign in to comment.