This commit is contained in:
Hans Karlinius
2024-12-01 09:17:52 +01:00
parent 0c33cb6982
commit 7c1dfd392f
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
name: VirtualHere Client name: VirtualHere Client
version: "0.1.327" version: "0.1.328"
slug: vhclient slug: vhclient
description: VirtualHere Client description: VirtualHere Client
arch: arch:
@@ -32,8 +32,8 @@ kernel_modules: true
options: options:
autouse: true autouse: true
autofind: true autofind: true
clientid: '' clientid: null
manualhub: '' manualhub: null
usbdevices: [] usbdevices: []
preventconfig: false preventconfig: false
schema: schema:
@@ -3,8 +3,8 @@
options=$(bashio::api.supervisor GET "/addons/self/options/config") options=$(bashio::api.supervisor GET "/addons/self/options/config")
autofind=$(echo $options | jq '. | if .autofind then true else false end') autofind=$(echo $options | jq '. | if .autofind then true else false end')
autouse=$(echo $options | jq '. | if .autouse then true else false end') autouse=$(echo $options | jq '. | if .autouse then true else false end')
clientid=$(echo $options | jq '.clientid') clientid=$(echo $options | jq '.clientid | tostring')
manualhub=$(echo $options | jq '.manualhub') manualhub=$(echo $options | jq '.manualhub | tostring')
if $autofind; then if $autofind; then
bashio::log.info "Enable General AutoFind" bashio::log.info "Enable General AutoFind"