From 32f3d37d713ffa19210c2911d7a53abc6f784c35 Mon Sep 17 00:00:00 2001
From: James Montemagno
Date: Mon, 28 Nov 2022 12:06:13 -0800
Subject: [PATCH 1/3] update urls for new backends
---
docs/demos/aspnetcore-blazor/README.md | 2 +-
docs/demos/blazor-hybrid/README.md | 2 +-
docs/demos/dotnet-maui/README.md | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/demos/aspnetcore-blazor/README.md b/docs/demos/aspnetcore-blazor/README.md
index 6914e36..7feb2bf 100644
--- a/docs/demos/aspnetcore-blazor/README.md
+++ b/docs/demos/aspnetcore-blazor/README.md
@@ -6,7 +6,7 @@ Open up ` src/Web/Server/appsettings.Development.json` and `src/Web/Client/wwwro
```json
"PodcastApi": {
-"BaseAddress": "https://podcastapica.delightfulocean-02c18c32.canadacentral.azurecontainerapps.io"
+"BaseAddress": "https://podcastapica.ashyhill-df3dfdf5.eastus.azurecontainerapps.io"
},
"ListenTogetherHub": "https://dotnetpodcasts-listentogether-hub.azurewebsites.net/listentogether"
```
diff --git a/docs/demos/blazor-hybrid/README.md b/docs/demos/blazor-hybrid/README.md
index f991e7e..34d5b33 100644
--- a/docs/demos/blazor-hybrid/README.md
+++ b/docs/demos/blazor-hybrid/README.md
@@ -6,7 +6,7 @@ Open `src/MobileBlazor/mauiapp/MauiProgram.cs` and enter
```csharp
public static string BaseWeb = $"https://dotnetpodcasts.azurewebsites.net/";
-public static string APIUrl = $"https://podcastapica.delightfulocean-02c18c32.canadacentral.azurecontainerapps.io";
+public static string APIUrl = $"https://podcastapica.ashyhill-df3dfdf5.eastus.azurecontainerapps.io";
public static string ListenTogetherUrl = $"https://dotnetpodcasts-listentogether-hub.azurewebsites.net/listentogether";
```
diff --git a/docs/demos/dotnet-maui/README.md b/docs/demos/dotnet-maui/README.md
index 4cb5d1d..16a31db 100644
--- a/docs/demos/dotnet-maui/README.md
+++ b/docs/demos/dotnet-maui/README.md
@@ -6,7 +6,7 @@ Open `src/Mobile/Config.cs` and enter
```csharp
public static string BaseWeb = $"https://dotnetpodcasts.azurewebsites.net/";
-public static string APIUrl = $"https://podcastapica.delightfulocean-02c18c32.canadacentral.azurecontainerapps.io/v1/";
+public static string APIUrl = $"https://podcastapica.ashyhill-df3dfdf5.eastus.azurecontainerapps.io/v1/";
public static string ListenTogetherUrl = $"https://dotnetpodcasts-listentogether-hub.azurewebsites.net/listentogether";
```
From e4c81f7b48ee91f1bf3f9cb3f6333ddc553b26c0 Mon Sep 17 00:00:00 2001
From: James Montemagno
Date: Tue, 29 Nov 2022 15:18:36 -0800
Subject: [PATCH 2/3] Update Landing.cshtml
---
src/Web/Server/Pages/Landing.cshtml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/Web/Server/Pages/Landing.cshtml b/src/Web/Server/Pages/Landing.cshtml
index 7083f3d..d8869b7 100644
--- a/src/Web/Server/Pages/Landing.cshtml
+++ b/src/Web/Server/Pages/Landing.cshtml
@@ -210,21 +210,21 @@
- © Copyright 2021. Microsoft
+ © Copyright 2022. Microsoft | Open source on GitHub
From a27d70e39c3d22b39464d6a910200d7f7fe7ceba Mon Sep 17 00:00:00 2001
From: James Montemagno
Date: Tue, 29 Nov 2022 15:19:26 -0800
Subject: [PATCH 3/3] Update SettingsPage.razor
---
src/Web/Pages/Pages/SettingsPage.razor | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Web/Pages/Pages/SettingsPage.razor b/src/Web/Pages/Pages/SettingsPage.razor
index b58dd4a..38a787f 100644
--- a/src/Web/Pages/Pages/SettingsPage.razor
+++ b/src/Web/Pages/Pages/SettingsPage.razor
@@ -31,7 +31,7 @@ else
Description="Turn on to use a dark theme (disabled when using system theme)." IsDisabled="@isSystemTheme"
OnChange="@OnDarkThemeChanged" />
- Podcasts demo website developed in Blazor
+ Podcasts demo website developed in Blazor and Open source on GitHub
}