Skip to content

Commit 5ccff72

Browse files
committed
# 0.7.10 (2015-08-22)
* (bluefox) fix first installation
1 parent 97ba200 commit 5ccff72

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.7.10 (2015-08-22)
2+
* (bluefox) fix first installation
3+
14
# 0.7.9 (2015-08-20)
25
* (bluefox) fix broker upgrade
36
* (bluefox) improve vis upload

io-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"common": {
33
"name": "js-controller",
4-
"version": "0.7.9",
4+
"version": "0.7.10",
55
"platform": "Javascript/Node.js",
66
"controller": true,
77
"title": "ioBroker.js-controller",

lib/setup/setupSetup.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ function Setup(options) {
184184
}
185185

186186
function setupObjects(callback) {
187-
dbConnect(function () {
187+
dbConnect(function (_objects, _states) {
188+
objects = _objects;
188189
var iopkg = JSON.parse(fs.readFileSync(__dirname + '/../../io-package.json'));
189190
dbSetup(iopkg, callback);
190191
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iobroker.js-controller",
3-
"version": "0.7.9",
3+
"version": "0.7.10",
44
"engines": {
55
"node": ">=0.8"
66
},

0 commit comments

Comments
 (0)