From 29530cd3411fd27ba598286a266db851900aa625 Mon Sep 17 00:00:00 2001 From: Christopher Whitley <103014489+AristurtleDev@users.noreply.github.com> Date: Thu, 15 Jan 2026 22:34:41 -0500 Subject: [PATCH 1/3] Remove the extra `\` in shebang causing script failures when the wine_wrapper is used --- .../content/public/downloads/winesetup/net6_mgfxc_wine_setup.sh | 2 +- .../content/public/downloads/winesetup/net8_mgfxc_wine_setup.sh | 2 +- .../content/public/downloads/winesetup/net9_mgfxc_wine_setup.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/content/public/downloads/winesetup/net6_mgfxc_wine_setup.sh b/website/content/public/downloads/winesetup/net6_mgfxc_wine_setup.sh index 410896c8..7f441c6e 100755 --- a/website/content/public/downloads/winesetup/net6_mgfxc_wine_setup.sh +++ b/website/content/public/downloads/winesetup/net6_mgfxc_wine_setup.sh @@ -61,7 +61,7 @@ then echo -e "\nexport PATH=\"\$PATH:$HOME/.winemonogame\"" >> ~/.zprofile # create a wine wrapper script to work around oddities with symlinked wine64 - echo -e "#\!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh" + echo -e "#!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh" chmod +x "$HOME/.winemonogame/wine_wrapper.sh" # symlink wine64 to our wrapper script diff --git a/website/content/public/downloads/winesetup/net8_mgfxc_wine_setup.sh b/website/content/public/downloads/winesetup/net8_mgfxc_wine_setup.sh index 1ac5180f..8ebd333a 100755 --- a/website/content/public/downloads/winesetup/net8_mgfxc_wine_setup.sh +++ b/website/content/public/downloads/winesetup/net8_mgfxc_wine_setup.sh @@ -75,7 +75,7 @@ then echo -e "\nexport PATH=\"\$PATH:$HOME/.winemonogame\"" >> ~/.zprofile # create a wine wrapper script to work around oddities with symlinked wine64 - echo -e "#\!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh" + echo -e "#!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh" chmod +x "$HOME/.winemonogame/wine_wrapper.sh" # symlink wine64 to our wrapper script diff --git a/website/content/public/downloads/winesetup/net9_mgfxc_wine_setup.sh b/website/content/public/downloads/winesetup/net9_mgfxc_wine_setup.sh index 55a46e01..8e7b97a2 100755 --- a/website/content/public/downloads/winesetup/net9_mgfxc_wine_setup.sh +++ b/website/content/public/downloads/winesetup/net9_mgfxc_wine_setup.sh @@ -75,7 +75,7 @@ then echo -e "\nexport PATH=\"\$PATH:$HOME/.winemonogame\"" >> ~/.zprofile # create a wine wrapper script to work around oddities with symlinked wine64 - echo -e "#\!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh" + echo -e "#!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh" chmod +x "$HOME/.winemonogame/wine_wrapper.sh" # symlink wine64 to our wrapper script From 9b849cbf3c6432e3dc12134edef880afd698a6de Mon Sep 17 00:00:00 2001 From: "Simon (Darkside) Jackson" Date: Fri, 16 Jan 2026 09:37:08 +0000 Subject: [PATCH 2/3] Patch to exclue Patreon update on Pull Requests only --- .github/workflows/pullrequest.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pullrequest.yaml b/.github/workflows/pullrequest.yaml index 872c4562..f1f41748 100644 --- a/.github/workflows/pullrequest.yaml +++ b/.github/workflows/pullrequest.yaml @@ -26,16 +26,16 @@ jobs: - name: Clone Repository uses: actions/checkout@v4 - - name: Fetch GH Sponsors - uses: ./FetchGHSponsors - env: - GH_TOKEN: ${{ secrets.SPONSORS_TOKEN }} - GH_LOGIN: MonoGame + # - name: Fetch GH Sponsors + # uses: ./FetchGHSponsors + # env: + # GH_TOKEN: ${{ secrets.SPONSORS_TOKEN }} + # GH_LOGIN: MonoGame - - name: Fetch Patreons - uses: ./FetchPatreons - env: - PATREON_ACCESS_TOKEN: ${{ secrets.PATREON_ACCESS_TOKEN }} + # - name: Fetch Patreons + # uses: ./FetchPatreons + # env: + # PATREON_ACCESS_TOKEN: ${{ secrets.PATREON_ACCESS_TOKEN }} - name: Setup .NET Core SDK uses: actions/setup-dotnet@v4 From 6447c905403b65fb63ed6a29d691c42b1736951b Mon Sep 17 00:00:00 2001 From: "Simon (Darkside) Jackson" Date: Fri, 16 Jan 2026 09:56:36 +0000 Subject: [PATCH 3/3] Remove Patreon updates from a PR, will be handled by the Main merge --- .github/workflows/pullrequest.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/pullrequest.yaml b/.github/workflows/pullrequest.yaml index f1f41748..146c5e3f 100644 --- a/.github/workflows/pullrequest.yaml +++ b/.github/workflows/pullrequest.yaml @@ -26,17 +26,6 @@ jobs: - name: Clone Repository uses: actions/checkout@v4 - # - name: Fetch GH Sponsors - # uses: ./FetchGHSponsors - # env: - # GH_TOKEN: ${{ secrets.SPONSORS_TOKEN }} - # GH_LOGIN: MonoGame - - # - name: Fetch Patreons - # uses: ./FetchPatreons - # env: - # PATREON_ACCESS_TOKEN: ${{ secrets.PATREON_ACCESS_TOKEN }} - - name: Setup .NET Core SDK uses: actions/setup-dotnet@v4 with: