From 094710fac4abbceac911171e510f41f9ab9c10e7 Mon Sep 17 00:00:00 2001 From: mc20000 <114359894+mc20000-01@users.noreply.github.com> Date: Wed, 7 Jan 2026 20:43:28 -0800 Subject: [PATCH 1/4] Create install.sh --- install.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 00000000..a1e19f3f --- /dev/null +++ b/install.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +cd mistwarp-desktop +git pull +npm ci +npm run fetch +npm run electron:package:dir +cd dist +pwd From 59791761f7a237e339f9ed84475efae9f592f227 Mon Sep 17 00:00:00 2001 From: mc20000 <114359894+mc20000-01@users.noreply.github.com> Date: Wed, 7 Jan 2026 20:44:17 -0800 Subject: [PATCH 2/4] Create update.bat for project update automation --- update.bat | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 update.bat diff --git a/update.bat b/update.bat new file mode 100644 index 00000000..02f39019 --- /dev/null +++ b/update.bat @@ -0,0 +1,8 @@ +@echo off +cd mistwarp-desktop +git pull +npm ci +npm run fetch +npm run electron:package:dir +cd dist +cd From 870dcdff6061f1eaee12f01057cc09406a9796e8 Mon Sep 17 00:00:00 2001 From: mc20000 <114359894+mc20000-01@users.noreply.github.com> Date: Wed, 7 Jan 2026 20:46:57 -0800 Subject: [PATCH 3/4] Update installation instructions in README.md Removed outdated update instructions and added script usage. --- README.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/README.md b/README.md index 8aa4368a..711b10c2 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,5 @@ to get the files git clone --recursive https://github.com/MistWarp/desktop mistwarp-desktop ``` to update and build them -```bash -cd mistwarp-desktop -git pull -npm ci -npm run fetch -npm run electron:package:dir -cd dist -pwd -``` - +run update.bat or update.sh The last line of this will tell you the directory to open in your file manager, then go into the folder named the platform you are on (mac/linux/windows) and find the executable, then you should move the executable to your applications folder or similar and you are done. From 7d63ffb5a28dbe0d50e43fc59885e41717476166 Mon Sep 17 00:00:00 2001 From: mc20000 <114359894+mc20000-01@users.noreply.github.com> Date: Wed, 7 Jan 2026 20:47:23 -0800 Subject: [PATCH 4/4] Clarify installation instructions in README Updated README to clarify installation steps and formatting. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 711b10c2..e79bf758 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,9 @@ To install, paste this into your terminal. This wont work on windows, you will need to do these steps with the windows equivalents -to get the files +# to get the files ```bash git clone --recursive https://github.com/MistWarp/desktop mistwarp-desktop ``` -to update and build them +# to update and build them run update.bat or update.sh -The last line of this will tell you the directory to open in your file manager, then go into the folder named the platform you are on (mac/linux/windows) and find the executable, then you should move the executable to your applications folder or similar and you are done.