v0.15.0-compat Migration Guide
For Pastes
- Remove references to
hue
,sat
, andlit
elements- You will need to handle background colors manually now.
- YOU CAN NOW SELECT BY
[group=main]
AND[group=raised]
IN CSS TO STYLE GROUPS OF ELEMENTS - https://crgn.cc/groupcss
Change- YOU CAN NOW USE.tab-container
to#tab_container
.tab_container
,.tab-container
ORR#tab_container
!!!!!- More TBD
- NEW STUFF: https://crgn.cc/mdcanvas
For Servers
- Copy .env -
cp .env ../.env
- Remove old crangon directory -
cd ../ && sudo rm -r crangon
- Clone crangon -
git clone https://github.com/stellularorg/crangon
- Move .env -
mv .env ./crangon/.env
- Update scripts to change
--port
to an environment variable (PORT
) (example:./target/release/crangon --port 8080
->PORT=8080 ./target/release/crangon
)