Skip to content

Commit

Permalink
Update build manual
Browse files Browse the repository at this point in the history
  • Loading branch information
awawa-dev committed Jan 26, 2025
1 parent 74ca451 commit 7db81cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Use -D prefix when configuring the build.
* ENABLE_POWER_MANAGEMENT = ON | OFF, enables sleep/wake up OS events support
* ENABLE_PROTOBUF = ON | OFF, enables Proto-Buffer server
* ENABLE_SYSTRAY = ON | OFF, enables the systray-widget
* ENABLE_XZ = ON | OFF, enables XZ support for LUT downloading
* ENABLE_ZSTD = ON | OFF, enables ZSTD support for LUT decompression

* BUILD FEATURES
* USE_SHARED_LIBS = ON | OFF, if disabled, build the application as monolithic
Expand Down
2 changes: 1 addition & 1 deletion www/js/wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -2494,7 +2494,7 @@ function startWizardHome_assistant(e)
haConfig.type = 'home_assistant';
haConfig.colorOrder = conf_editor.getEditor("root.generalOptions.colorOrder").getValue();
haConfig.homeAssistantHost = $('#hostHA').val().trim();
haConfig.longLivedAccessToken= `${$('#tokenHA').val().trim()}`;
haConfig.longLivedAccessToken= $('#tokenHA').val().trim().escape();
haConfig.transition = conf_editor.getEditor("root.specificOptions.transition").getValue();
haConfig.constantBrightness = conf_editor.getEditor("root.specificOptions.constantBrightness").getValue();
haConfig.restoreOriginalState = conf_editor.getEditor("root.specificOptions.restoreOriginalState").getValue();
Expand Down

0 comments on commit 7db81cd

Please sign in to comment.