* Update necessary-cfg for grammar and readability fixes * Update homepage for typos, grammar and readability * Update index.md in manual setup for readability * Update for readability and make editing moonraker.conf a sub-chapter * Update for readabiliy and grammar * Update for readability and grammar * Fix PR #478 with review feedback - fix Klipper pause / resume * Fix typo (missing s in preset) * Make call to action stronger, remove "it is" for "time to print!" * Improve readability on front page * Update Kiauh page for readability and gramma * Review and update Update guides for spelling, grammar, readabilty and localization * Review updates from yesterday and fix some errors from updating the docs * Apply feedback to fix typos for PR#478 Signed-off-by Paul Cutler paul@paulcutler.org
32 lines
927 B
Markdown
32 lines
927 B
Markdown
---
|
|
layout: default
|
|
title: Mainsail
|
|
parent: Update Guide
|
|
nav_order: 4
|
|
permalink: /update/mainsail
|
|
---
|
|
|
|
## Updating Mainsail
|
|
|
|
To update Mainsail manually, run the commands below in your terminal:
|
|
|
|
```bash
|
|
cd ~/mainsail
|
|
rm -R ./*
|
|
wget -q -O mainsail.zip https://github.com/mainsail-crew/mainsail/releases/latest/download/mainsail.zip && unzip mainsail.zip && rm mainsail.zip
|
|
```
|
|
|
|
### Updating from 0.2.2 to 0.2.3 or higher
|
|
|
|
If you are updating from Mainsail version 0.2.2 to a newer version, you must move the file `gui.json` from the `gcodes` directory to the `klipper_config' directory.
|
|
|
|
This is only necessary when updating from 0.2.2 to 0.2.3 or higher. If you use MainsailOS, the virtual_sdcard directory is `gcode_files` instead of `sdcard`.
|
|
```
|
|
mv ~/sdcard/gui.json ~/klipper_config/
|
|
```
|
|
|
|
You should now be able to open Mainsail in your web browser at `http://<printer-ip>/`.
|
|
|
|
---
|
|
[< previous step](moonraker.md){: .btn }
|