mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-02-20 01:11:21 +01:00
## What's Changed * Complete refactoring using spectre.css and correct Preact API per @alexblog suggestion * Smaller footprint * Add support for extensions/pluggins * Add theme support by using external css * Remove banner as unnecessary * Remove information bar and put information to separate page and respective panel * Add audio and haptic feedback * Add Repetier / ESP3DLib V2 / Smoothieware / GRBL support * Split code for 3DPrinter / CNC / Sand Table ## Limitations * CNC / Sand Table specific UI is still not defined * Wizard is not implemented yet * Works with ESP3D 3.0- alpha-2 - no backward compatibility * Language packs are not ready to be translated yet as UI is not finished ## Discussion / status [Discussion](https://github.com/luc-github/ESP3D-WEBUI/discussions/94) ## New Contributors @alexblog made several contributions like https://github.com/luc-github/ESP3D-WEBUI/pull/236
17 lines
633 B
Plaintext
17 lines
633 B
Plaintext
* Fix dev websocket server cannot work under Linux
|
||
> sudo apt-get install libcap2-bin
|
||
> sudo setcap cap_net_bind_service=+ep `readlink -f \`which node\``
|
||
|
||
* Fix ‘ and “ need space to be displayed under Linux
|
||
> setxkbmap -layout us
|
||
|
||
* Fix for sass div warning
|
||
>npm install -g sass-migrator
|
||
>sass-migrator division **/*.scss
|
||
Note:
|
||
on windows need change script policy first:
|
||
> Get-ExecutionPolicy -List
|
||
>Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
||
then when done, put back default (the one got by initial Get-ExecutionPolicy -List)
|
||
>Set-ExecutionPolicy -ExecutionPolicy Restricted -Scope CurrentUser
|