From ebac1831b5c123d2b73086258a6ceca9b6106a5f Mon Sep 17 00:00:00 2001 From: Timothy Pillow Date: Thu, 26 Dec 2024 18:08:20 +0100 Subject: [PATCH 1/3] Update macos.md add brew --- installation/macos.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/installation/macos.md b/installation/macos.md index d5410cf..7e75602 100644 --- a/installation/macos.md +++ b/installation/macos.md @@ -17,6 +17,15 @@ You can also download the latest stable version of UTM from GitHub. [Download from GitHub](https://github.com/utmapp/UTM/releases/latest/download/UTM.dmg){: .btn .btn-green } +## Homebrew +For command line lovers, you can install UTM with Homebrew which also uses the latest stable version from GitHub. + +[Download from Homebrew]([https://github.com/utmapp/UTM/releases/latest/download/UTM.dmg](https://formulae.brew.sh/cask/utm)){: .btn .btn-green } + +``` +brew install --cask utm +``` + {: .note } UTM is and always will be completely free and open source. The Mac App Store version is identical to the GitHub version and there are no features left out. The only advantage of the Mac App Store version is that you can get automatic updates. Purchasing the App Store version directly funds the development of UTM and shows your support ♥. From 9fdb23c245dfad317926a68b43cb603e9197f8c5 Mon Sep 17 00:00:00 2001 From: Timothy Pillow Date: Thu, 26 Dec 2024 17:35:46 +0000 Subject: [PATCH 2/3] fix link --- docker-compose.yml | 12 ++++++++++++ installation/macos.md | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..9878318 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +name: jekyll +services: + minimal: + volumes: + - ./:/srv/jekyll + stdin_open: true + tty: true + image: jekyll/jekyll:latest + platform: linux/amd64 + ports: + - 4000:4000 + command: jekyll serve --livereload diff --git a/installation/macos.md b/installation/macos.md index 7e75602..830ec89 100644 --- a/installation/macos.md +++ b/installation/macos.md @@ -20,7 +20,7 @@ You can also download the latest stable version of UTM from GitHub. ## Homebrew For command line lovers, you can install UTM with Homebrew which also uses the latest stable version from GitHub. -[Download from Homebrew]([https://github.com/utmapp/UTM/releases/latest/download/UTM.dmg](https://formulae.brew.sh/cask/utm)){: .btn .btn-green } +[Download from Homebrew](https://formulae.brew.sh/cask/utm){: .btn .btn-green } ``` brew install --cask utm From 2d555ad8620f993384d66e57f419c650c2d0d812 Mon Sep 17 00:00:00 2001 From: Timothy Pillow Date: Thu, 26 Dec 2024 17:41:47 +0000 Subject: [PATCH 3/3] edit doc --- docker-compose.yml | 12 ------------ installation/macos.md | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 9878318..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: jekyll -services: - minimal: - volumes: - - ./:/srv/jekyll - stdin_open: true - tty: true - image: jekyll/jekyll:latest - platform: linux/amd64 - ports: - - 4000:4000 - command: jekyll serve --livereload diff --git a/installation/macos.md b/installation/macos.md index 830ec89..b8b0c1b 100644 --- a/installation/macos.md +++ b/installation/macos.md @@ -18,7 +18,7 @@ You can also download the latest stable version of UTM from GitHub. [Download from GitHub](https://github.com/utmapp/UTM/releases/latest/download/UTM.dmg){: .btn .btn-green } ## Homebrew -For command line lovers, you can install UTM with Homebrew which also uses the latest stable version from GitHub. +For command line users, you can install UTM with Homebrew which also uses the latest stable version from GitHub. [Download from Homebrew](https://formulae.brew.sh/cask/utm){: .btn .btn-green }