add update-0.1.x.md

Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
Stefan Dej 2020-08-01 14:02:53 +02:00
parent 20bad7d24c
commit 1efe346cb0
2 changed files with 26 additions and 0 deletions

View File

@ -1,6 +1,7 @@
# Overview
- [Installation](installation.md)
- [Update from 0.1.x to latest](update-0.1.x.md)
- [Update from 0.0.x to 0.1.x](update-0.0.x.md)
- [Macros](macros.md)
- [Slicer upload](slicer-upload.md)

25
docs/update-0.1.x.md Normal file
View File

@ -0,0 +1,25 @@
# Update from 0.1.x to latest
Updates after 0.1.x are easier than 0.0.x to 0.1.x.
## Update Klipper
```
cd ~/klipper
git fetch arksine
git checkout arksine/dev-moonraker-testing
sudo service klipper restart
```
## Update Moonraker
```
cd ~/moonraker
git pull
sudo service moonraker restart
```
## Update static files from Mainsail
```
rm -R ~/mainsail/*
cd ~/mainsail
wget -q -O mainsail.zip https://github.com/meteyou/mainsail/releases/download/v0.1.1/mainsail-beta-0.1.1.zip && unzip mainsail.zip && rm mainsail.zip
```