From 261139a4556441d664d9327341ffd13c594a6410 Mon Sep 17 00:00:00 2001 From: Dean Ellis Date: Tue, 3 Jun 2025 14:46:31 +0100 Subject: [PATCH 1/2] Add additional command for wine We need to add the following command for wine for it to run ``` xattr -dr com.apple.quarantine "/Applications/Wine Stable.app" ``` --- .../1_setting_up_your_os_for_development_macos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/getting_started/1_setting_up_your_os_for_development_macos.md b/articles/getting_started/1_setting_up_your_os_for_development_macos.md index f11d2a64..ee957c56 100644 --- a/articles/getting_started/1_setting_up_your_os_for_development_macos.md +++ b/articles/getting_started/1_setting_up_your_os_for_development_macos.md @@ -52,7 +52,7 @@ MonoGame provides a setup script that can be executed to setup the Wine environm 1. Enter the following command: ```sh - brew install wget p7zip curl && brew install --cask wine-stable + brew install wget p7zip curl && brew install --cask wine-stable && xattr -dr com.apple.quarantine "/Applications/Wine Stable.app" ``` 1. Now that the prerequisites are installed, download the [mgfxc_wine_setup.sh](https://monogame.net/downloads/net9_mgfxc_wine_setup.sh) script and execute it by entering the following command in the terminal: From 3febfd45061849d4c15d24151b06b6577622c764 Mon Sep 17 00:00:00 2001 From: Dean Ellis Date: Tue, 3 Jun 2025 14:47:23 +0100 Subject: [PATCH 2/2] Update index.md --- articles/tutorials/building_2d_games/02_getting_started/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/articles/tutorials/building_2d_games/02_getting_started/index.md b/articles/tutorials/building_2d_games/02_getting_started/index.md index 5b04c73f..aa321f55 100644 --- a/articles/tutorials/building_2d_games/02_getting_started/index.md +++ b/articles/tutorials/building_2d_games/02_getting_started/index.md @@ -156,6 +156,7 @@ Open a new *Terminal* window and execute the following commands: ```sh brew install p7zip brew install --cask wine-stable +xattr -dr com.apple.quarantine "/Applications/Wine Stable.app" wget -qO- https://monogame.net/downloads/net8_mgfxc_wine_setup.sh | bash ```