homey 4.0.6 → 4.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/App.js CHANGED
@@ -1633,7 +1633,6 @@ $ sudo systemctl restart docker
1633
1633
  }
1634
1634
 
1635
1635
  _onStd(std) {
1636
- if (this._exiting) return;
1637
1636
  if (!this._session || std.session !== this._session.session) return;
1638
1637
  if (this._std[std.id]) return;
1639
1638
 
package/lib/AppPython.js CHANGED
@@ -116,9 +116,8 @@ class AppPython extends App {
116
116
  return {
117
117
  HOMEY_APP_RUNNER_DEVMODE: process.env.HOMEY_APP_RUNNER_DEVMODE === '1',
118
118
  HOMEY_APP_RUNNER_PATH: process.env.HOMEY_APP_RUNNER_PATH_PYTHON, // e.g. /Users/username/Git/homey-app-runner/src
119
- HOMEY_APP_RUNNER_CMD: ['sh', 'entrypoint.sh'],
120
- HOMEY_APP_RUNNER_ID:
121
- process.env.HOMEY_APP_RUNNER_ID_PYTHON || 'ghcr.io/athombv/python-homey-app-runner:latest',
119
+ HOMEY_APP_RUNNER_CMD: ['bash', 'entrypoint.sh'],
120
+ HOMEY_APP_RUNNER_ID: process.env.HOMEY_APP_RUNNER_ID_PYTHON || 'ghcr.io/athombv/python-homey-app-runner:latest',
122
121
  HOMEY_APP_RUNNER_SDK_PATH: process.env.HOMEY_APP_RUNNER_SDK_PATH_PYTHON, // e.g. /Users/username/Git/python-homey-sdk-v3/dist
123
122
  };
124
123
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey",
3
- "version": "4.0.6",
3
+ "version": "4.0.7",
4
4
  "description": "Command-line interface and type declarations for Homey Apps",
5
5
  "main": "bin/homey.js",
6
6
  "files": [
@@ -41,8 +41,8 @@
41
41
  "filesize": "^6.4.0",
42
42
  "fs-extra": "^10.1.0",
43
43
  "get-port": "^5.1.1",
44
+ "homey-lib": "^2.45.1",
44
45
  "homey-api": "^3.17.1",
45
- "homey-lib": "^2.44.5",
46
46
  "ignore-walk": "^3.0.3",
47
47
  "inquirer": "8.1.2",
48
48
  "object-path": "^0.11.4",