From 1efe346cb02085992eb9a57dab538523312ea78a Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Sat, 1 Aug 2020 14:02:53 +0200 Subject: [PATCH] add update-0.1.x.md Signed-off-by: Stefan Dej --- docs/README.md | 1 + docs/update-0.1.x.md | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 docs/update-0.1.x.md diff --git a/docs/README.md b/docs/README.md index 0ce82ace..c18bc7e1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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) diff --git a/docs/update-0.1.x.md b/docs/update-0.1.x.md new file mode 100644 index 00000000..04ad2e47 --- /dev/null +++ b/docs/update-0.1.x.md @@ -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 +``` \ No newline at end of file