Browse Source

replace discord links with new contact link

pull/2825/head
Jason Dove 6 months ago
parent
commit
dd275a601f
No known key found for this signature in database
  1. 1
      CHANGELOG.md
  2. 12
      ErsatzTV/Locals/Shared/MainLayout.Designer.cs
  3. 3
      ErsatzTV/Locals/Shared/MainLayout.pl.resx
  4. 6
      ErsatzTV/Locals/Shared/MainLayout.resx
  5. 4
      ErsatzTV/Shared/MainLayout.razor
  6. 4
      ErsatzTV/Startup.cs

1
CHANGELOG.md

@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
- Move dark/light mode toggle to **Settings** > **UI**
- Use latest (non-deprecated) authorization method with Jellyfin API
- Replace direct Discord links with new contact page https://ersatztv.org/contact which also includes other options like Matrix
### Fixed
- Improve stability of playback orders `Shuffle` and `Shuffle in Order` over time

12
ErsatzTV/Locals/Shared/MainLayout.Designer.cs generated

@ -393,12 +393,6 @@ namespace ErsatzTV.Locals.Shared { @@ -393,12 +393,6 @@ namespace ErsatzTV.Locals.Shared {
}
}
internal static string ButtonDiscord {
get {
return ResourceManager.GetString("ButtonDiscord", resourceCulture);
}
}
internal static string ButtonGitHub {
get {
return ResourceManager.GetString("ButtonGitHub", resourceCulture);
@ -410,5 +404,11 @@ namespace ErsatzTV.Locals.Shared { @@ -410,5 +404,11 @@ namespace ErsatzTV.Locals.Shared {
return ResourceManager.GetString("ButtonLogout", resourceCulture);
}
}
internal static string ButtonContact {
get {
return ResourceManager.GetString("ButtonContact", resourceCulture);
}
}
}
}

3
ErsatzTV/Locals/Shared/MainLayout.pl.resx

@ -185,9 +185,6 @@ @@ -185,9 +185,6 @@
<data name="ButtonDocumentation" xml:space="preserve">
<value>Dokumentacja</value>
</data>
<data name="ButtonDiscord" xml:space="preserve">
<value>Discord</value>
</data>
<data name="ButtonGitHub" xml:space="preserve">
<value>GitHub</value>
</data>

6
ErsatzTV/Locals/Shared/MainLayout.resx

@ -192,13 +192,13 @@ @@ -192,13 +192,13 @@
<data name="ButtonDocumentation" xml:space="preserve">
<value>Documentation</value>
</data>
<data name="ButtonDiscord" xml:space="preserve">
<value>Discord</value>
</data>
<data name="ButtonGitHub" xml:space="preserve">
<value>GitHub</value>
</data>
<data name="ButtonLogout" xml:space="preserve">
<value>Logout</value>
</data>
<data name="ButtonContact" xml:space="preserve">
<value>Contact</value>
</data>
</root>

4
ErsatzTV/Shared/MainLayout.razor

@ -98,8 +98,8 @@ @@ -98,8 +98,8 @@
<MudTooltip Text="@StringLocalizer["ButtonDocumentation"]">
<MudIconButton Icon="@Icons.Material.Filled.Help" Color="Color.Primary" Href="https://ersatztv.org" Target="_blank"/>
</MudTooltip>
<MudTooltip Text="@StringLocalizer["ButtonDiscord"]">
<MudIconButton Icon="@Icons.Custom.Brands.Discord" Color="Color.Primary" Href="https://discord.ersatztv.org" Target="_blank"/>
<MudTooltip Text="@StringLocalizer["ButtonContact"]">
<MudIconButton Icon="@Icons.Material.Filled.Chat" Color="Color.Primary" Href="https://ersatztv.org/contact" Target="_blank"/>
</MudTooltip>
<MudTooltip Text="@StringLocalizer["ButtonGitHub"]">
<MudIconButton Icon="@Icons.Custom.Brands.GitHub" Color="Color.Primary" Href="https://github.com/ErsatzTV/ErsatzTV" Target="_blank"/>

4
ErsatzTV/Startup.cs

@ -363,9 +363,9 @@ public class Startup @@ -363,9 +363,9 @@ public class Startup
Log.Logger.Information("ErsatzTV version {Version}", etvVersion);
Log.Logger.Warning(
"Give feedback at {GitHub} or {Discord}",
"Report bugs to {GitHub} or contact us at {Contact}",
"https://github.com/ErsatzTV/ErsatzTV",
"https://discord.ersatztv.org");
"https://ersatztv.org/contact");
CopyMacOsConfigFolderIfNeeded();

Loading…
Cancel
Save