diff --git a/receivers/webos/README.md b/receivers/webos/README.md index a6f7985..a22e171 100644 --- a/receivers/webos/README.md +++ b/receivers/webos/README.md @@ -31,3 +31,8 @@ cd ../ ```sh ares-package fcast-receiver/dist/ fcast-receiver-service/dist/ --no-minify ``` + +## Debugging +* Install: `ares-install --device tv ./com.futo.fcast.receiver_1.0.0_all.ipk` +* Web app debug: `ares-inspect --device tv --app com.futo.fcast.receiver -o` +* Service debug: `ares-inspect --device tv -s com.futo.fcast.receiver.service` diff --git a/receivers/webos/fcast-receiver-service/package-lock.json b/receivers/webos/fcast-receiver-service/package-lock.json index de472a7..6920981 100644 --- a/receivers/webos/fcast-receiver-service/package-lock.json +++ b/receivers/webos/fcast-receiver-service/package-lock.json @@ -1,18 +1,19 @@ { "name": "com.futo.fcast.receiver.service", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "com.futo.fcast.receiver.service", - "version": "1.0.0", + "version": "1.0.1", "hasInstallScript": true, "license": "MIT", "dependencies": { "http": "^0.0.1-security", "log4js": "^6.9.1", "url": "^0.11.3", + "utf-8-validate": "*", "uuid": "^9.0.1", "ws": "^8.14.2" }, @@ -37,6 +38,9 @@ "typescript-eslint": "^8.4.0", "webpack": "^5.75.0", "webpack-cli": "^5.0.1" + }, + "optionalDependencies": { + "utf-8-validate": "^6.0.5" } }, "node_modules/@ampproject/remapping": { @@ -5205,7 +5209,6 @@ "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "license": "MIT", "optional": true, - "peer": true, "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", @@ -6769,6 +6772,20 @@ "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", "license": "MIT" }, + "node_modules/utf-8-validate": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.5.tgz", + "integrity": "sha512-EYZR+OpIXp9Y1eG1iueg8KRsY8TuT8VNgnanZ0uA3STqhHQTLwbl+WX76/9X5OY12yQubymBpaBSmMPkSTQcKA==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "node-gyp-build": "^4.3.0" + }, + "engines": { + "node": ">=6.14.2" + } + }, "node_modules/uuid": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", diff --git a/receivers/webos/fcast-receiver-service/package.json b/receivers/webos/fcast-receiver-service/package.json index 90f7943..f31ad60 100644 --- a/receivers/webos/fcast-receiver-service/package.json +++ b/receivers/webos/fcast-receiver-service/package.json @@ -1,6 +1,6 @@ { "name": "com.futo.fcast.receiver.service", - "version": "1.0.0", + "version": "1.0.1", "description": "FCast network service", "author": "FUTO", "license": "MIT", @@ -38,5 +38,8 @@ "url": "^0.11.3", "uuid": "^9.0.1", "ws": "^8.14.2" + }, + "optionalDependencies": { + "utf-8-validate": "^6.0.5" } } diff --git a/receivers/webos/fcast-receiver/appinfo.json b/receivers/webos/fcast-receiver/appinfo.json index eb5e1b4..06c36a1 100644 --- a/receivers/webos/fcast-receiver/appinfo.json +++ b/receivers/webos/fcast-receiver/appinfo.json @@ -1,6 +1,6 @@ { "id": "com.futo.fcast.receiver", - "version": "1.0.0", + "version": "1.0.1", "vendor": "FUTO", "type": "web", "main": "main_window/index.html", diff --git a/receivers/webos/fcast-receiver/package.json b/receivers/webos/fcast-receiver/package.json index 7d1d1a7..fa8edbb 100644 --- a/receivers/webos/fcast-receiver/package.json +++ b/receivers/webos/fcast-receiver/package.json @@ -1,6 +1,6 @@ { "name": "com.futo.fcast.receiver", - "version": "1.0.0", + "version": "1.0.1", "description": "An application implementing a FCast receiver.", "author": "FUTO", "license": "MIT",