From 9a1d8f3c5cf00a5d00486c28bcc55c7625ffdcbe Mon Sep 17 00:00:00 2001 From: Victor Chelaru Date: Thu, 7 May 2026 05:50:20 -0600 Subject: [PATCH 1/2] Updated to recommend building against version Gum 2026.5.2.1 Addresses issue https://github.com/MonoGame/MonoGame.Samples/issues/114 --- .../20_implementing_ui_with_gum/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md b/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md index b725b8b7..ac395aca 100644 --- a/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md +++ b/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md @@ -321,7 +321,7 @@ To add the Gum NuGet package in Visual Studio Code: 2. Choose `Add NuGet Package` from the context menu. 3. Enter `Gum.MonoGame` in the `Add NuGet Package` search prompt and press Enter. 4. When the search finishes, select the `Gum.MonoGame` package in the results -5. When prompted for a version choose version `2025.12.9.1`. +5. When prompted for a version choose version `2026.5.2.1`. #### [Visual Studio 2022](#tab/vs2022) @@ -332,7 +332,7 @@ To Add the Gum NuGet package in Visual Studio 2022: 3. In the NuGet Package Manager window, select the `Browse` tab if it is not already selected. 4. In the search box, enter `Gum.MonoGame`. 5. Select the "Gum.MonoGame" package from the search results. -6. On the right, in the version dropdown, select version `2025.12.9.1` and click the "Install" button. +6. On the right, in the version dropdown, select version `2026.5.2.1` and click the "Install" button. #### [dotnet CLI](#tab/dotnetcli) @@ -342,7 +342,7 @@ To add the Gum NuGet package using the dotnet CLI: 2. Enter the following command: ```sh - dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2025.12.9.1 + dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2026.5.2.1 ``` --- @@ -351,11 +351,11 @@ To add the Gum NuGet package using the dotnet CLI: > You can verify the package was successfully added by examining your `DungeonSlime.csproj` file, which should now contain a reference like: > > ```xml -> +> > ``` > [!IMPORTANT] -> This tutorial uses version `2025.12.9.1` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial. +> This tutorial uses version `2026.5.2.1` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial. ### Adding UI Sound Effect From 15667a2ad23f61945e1176c1694ef589f1d762a2 Mon Sep 17 00:00:00 2001 From: Victor Chelaru Date: Fri, 8 May 2026 10:48:03 -0600 Subject: [PATCH 2/2] Upgraded to 2026.5.8.1 to fix android content bug --- .../20_implementing_ui_with_gum/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md b/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md index ac395aca..60dd236a 100644 --- a/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md +++ b/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md @@ -321,7 +321,7 @@ To add the Gum NuGet package in Visual Studio Code: 2. Choose `Add NuGet Package` from the context menu. 3. Enter `Gum.MonoGame` in the `Add NuGet Package` search prompt and press Enter. 4. When the search finishes, select the `Gum.MonoGame` package in the results -5. When prompted for a version choose version `2026.5.2.1`. +5. When prompted for a version choose version `2026.5.8.1`. #### [Visual Studio 2022](#tab/vs2022) @@ -332,7 +332,7 @@ To Add the Gum NuGet package in Visual Studio 2022: 3. In the NuGet Package Manager window, select the `Browse` tab if it is not already selected. 4. In the search box, enter `Gum.MonoGame`. 5. Select the "Gum.MonoGame" package from the search results. -6. On the right, in the version dropdown, select version `2026.5.2.1` and click the "Install" button. +6. On the right, in the version dropdown, select version `2026.5.8.1` and click the "Install" button. #### [dotnet CLI](#tab/dotnetcli) @@ -342,7 +342,7 @@ To add the Gum NuGet package using the dotnet CLI: 2. Enter the following command: ```sh - dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2026.5.2.1 + dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2026.5.8.1 ``` --- @@ -351,11 +351,11 @@ To add the Gum NuGet package using the dotnet CLI: > You can verify the package was successfully added by examining your `DungeonSlime.csproj` file, which should now contain a reference like: > > ```xml -> +> > ``` > [!IMPORTANT] -> This tutorial uses version `2026.5.2.1` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial. +> This tutorial uses version `2026.5.8.1` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial. ### Adding UI Sound Effect