From 64085366f50e43dfa3a2ad613f5a99373a149e0f Mon Sep 17 00:00:00 2001 From: Michael Bond Date: Wed, 19 Aug 2026 16:07:33 -0400 Subject: [PATCH] Update dependencies, GitHub action, and project list - Bump GitHub Pages deploy action to v4.9.0 in main_aboutcodemonkey85.yml - Upgrade Microsoft.AspNetCore.Components.WebAssembly/DevServer to 10.0.11 and MudBlazor to 9.8.0 in AboutMe.Wasm.csproj - Show "See source" button in Projects.razor only if GitHubUrl is set - Add "BondCasts" to ProjectsList in Projects.razor.cs - Update .NET SDK in global.json to 10.0.400 --- .github/workflows/main_aboutcodemonkey85.yml | 2 +- AboutMe/Wasm/AboutMe.Wasm.csproj | 6 +++--- AboutMe/Wasm/Pages/Projects.razor | 17 ++++++++++------- AboutMe/Wasm/Pages/Projects.razor.cs | 7 +++++++ global.json | 2 +- 5 files changed, 22 insertions(+), 12 deletions(-) diff --git a/.github/workflows/main_aboutcodemonkey85.yml b/.github/workflows/main_aboutcodemonkey85.yml index 798fbc70..9f8eaac8 100644 --- a/.github/workflows/main_aboutcodemonkey85.yml +++ b/.github/workflows/main_aboutcodemonkey85.yml @@ -54,7 +54,7 @@ jobs: run: touch release/wwwroot/.nojekyll - name: Commit wwwroot to GitHub Pages - uses: JamesIves/github-pages-deploy-action@v4.8.0 + uses: JamesIves/github-pages-deploy-action@v4.9.0 with: token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages diff --git a/AboutMe/Wasm/AboutMe.Wasm.csproj b/AboutMe/Wasm/AboutMe.Wasm.csproj index 5b2c51ab..a4c243be 100644 --- a/AboutMe/Wasm/AboutMe.Wasm.csproj +++ b/AboutMe/Wasm/AboutMe.Wasm.csproj @@ -13,9 +13,9 @@ - - - + + + diff --git a/AboutMe/Wasm/Pages/Projects.razor b/AboutMe/Wasm/Pages/Projects.razor index 281b40b9..78938a55 100644 --- a/AboutMe/Wasm/Pages/Projects.razor +++ b/AboutMe/Wasm/Pages/Projects.razor @@ -57,13 +57,16 @@ Target="_blank"> Open - - See source - + @if (project.GitHubUrl is { Length: > 0 }) + { + + See source + + } diff --git a/AboutMe/Wasm/Pages/Projects.razor.cs b/AboutMe/Wasm/Pages/Projects.razor.cs index 0701a001..6ce126f7 100644 --- a/AboutMe/Wasm/Pages/Projects.razor.cs +++ b/AboutMe/Wasm/Pages/Projects.razor.cs @@ -8,6 +8,13 @@ public partial class Projects private List ProjectsList { get; } = [ + new() + { + Name = "BondCasts", + Description = "A podcast client for iPhone, iPad, Mac, and Apple Watch", + Url = "https://www.bondcasts.com/", + Thumbnails = [] + }, // BondCasts new() { Name = "PKMDS for Web", diff --git a/global.json b/global.json index 2216d4ce..4e8aac99 100644 --- a/global.json +++ b/global.json @@ -2,6 +2,6 @@ "sdk": { "allowPrerelease": false, "rollForward": "latestMinor", - "version": "10.0.302" + "version": "10.0.400" } }