Skip to content

Commit

Permalink
[skills] Fix missing feature
Browse files Browse the repository at this point in the history
  • Loading branch information
goldyfruit committed May 29, 2024
1 parent 35d2473 commit 41c94a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions tui/features.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export FEATURE_SKILLS="false"
export FEATURE_EXTRA_SKILLS="false"

features=("skills" "$SKILL_DESCRIPTION" ON)
features+=("extra skills" "$GUI_DESCRIPTION" OFF)
if [[ "$RASPBERRYPI_MODEL" != *"Raspberry Pi 3"* ]] && [[ "$KERNEL" != *"microsoft"* ]] && [ "$PROFILE" != "server" ]; then
features+=("gui" "$GUI_DESCRIPTION" OFF)
fi
Expand Down
4 changes: 2 additions & 2 deletions utils/constants.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export PULSE_SOCKET_WSL2=/mnt/wslg/PulseServer
export REBOOT_FILE_PATH=/tmp/ovos.reboot
declare -ra SCENARIO_ALLOWED_OPTIONS=(features channel share_telemetry profile method uninstall rapsberry_pi_tuning hivemind)
export SCENARIO_ALLOWED_OPTIONS
declare -ra SCENARIO_ALLOWED_FEATURES=(skills gui)
declare -ra SCENARIO_ALLOWED_FEATURES=(skills 'extra skills' gui)
export SCENARIO_ALLOWED_FEATURES
declare -ra SCENARIO_ALLOWED_HIVEMIND_OPTIONS=(host port key password)
export SCENARIO_ALLOWED_HIVEMIND_OPTIONS
Expand All @@ -51,7 +51,7 @@ export SCENARIO_PATH=""
declare -rA SUPPORTED_DEVICES=(
["atmega328p"]="1a" #https://www.microchip.com/en-us/product/atmega328p
["attiny1614"]="04" #https://www.microchip.com/en-us/product/attiny1614
["tas5806"]="2f" #https://www.ti.com/product/TAS5806MD
["tas5806"]="2f" #https://www.ti.com/product/TAS5806MD
)
export SUPPORTED_DEVICES
export TUI_WINDOW_HEIGHT="35"
Expand Down

0 comments on commit 41c94a8

Please sign in to comment.