Browse Source

replace discord links with new contact link (#2825)

pull/2829/head
Jason Dove 6 months ago committed by GitHub
parent
commit
49adcf7c37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  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/).
### Changed ### Changed
- Move dark/light mode toggle to **Settings** > **UI** - Move dark/light mode toggle to **Settings** > **UI**
- Use latest (non-deprecated) authorization method with Jellyfin API - 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 ### Fixed
- Improve stability of playback orders `Shuffle` and `Shuffle in Order` over time - 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 {
} }
} }
internal static string ButtonDiscord {
get {
return ResourceManager.GetString("ButtonDiscord", resourceCulture);
}
}
internal static string ButtonGitHub { internal static string ButtonGitHub {
get { get {
return ResourceManager.GetString("ButtonGitHub", resourceCulture); return ResourceManager.GetString("ButtonGitHub", resourceCulture);
@ -410,5 +404,11 @@ namespace ErsatzTV.Locals.Shared {
return ResourceManager.GetString("ButtonLogout", resourceCulture); 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 @@
<data name="ButtonDocumentation" xml:space="preserve"> <data name="ButtonDocumentation" xml:space="preserve">
<value>Dokumentacja</value> <value>Dokumentacja</value>
</data> </data>
<data name="ButtonDiscord" xml:space="preserve">
<value>Discord</value>
</data>
<data name="ButtonGitHub" xml:space="preserve"> <data name="ButtonGitHub" xml:space="preserve">
<value>GitHub</value> <value>GitHub</value>
</data> </data>

6
ErsatzTV/Locals/Shared/MainLayout.resx

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

4
ErsatzTV/Shared/MainLayout.razor

@ -98,8 +98,8 @@
<MudTooltip Text="@StringLocalizer["ButtonDocumentation"]"> <MudTooltip Text="@StringLocalizer["ButtonDocumentation"]">
<MudIconButton Icon="@Icons.Material.Filled.Help" Color="Color.Primary" Href="https://ersatztv.org" Target="_blank"/> <MudIconButton Icon="@Icons.Material.Filled.Help" Color="Color.Primary" Href="https://ersatztv.org" Target="_blank"/>
</MudTooltip> </MudTooltip>
<MudTooltip Text="@StringLocalizer["ButtonDiscord"]"> <MudTooltip Text="@StringLocalizer["ButtonContact"]">
<MudIconButton Icon="@Icons.Custom.Brands.Discord" Color="Color.Primary" Href="https://discord.ersatztv.org" Target="_blank"/> <MudIconButton Icon="@Icons.Material.Filled.Chat" Color="Color.Primary" Href="https://ersatztv.org/contact" Target="_blank"/>
</MudTooltip> </MudTooltip>
<MudTooltip Text="@StringLocalizer["ButtonGitHub"]"> <MudTooltip Text="@StringLocalizer["ButtonGitHub"]">
<MudIconButton Icon="@Icons.Custom.Brands.GitHub" Color="Color.Primary" Href="https://github.com/ErsatzTV/ErsatzTV" Target="_blank"/> <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
Log.Logger.Information("ErsatzTV version {Version}", etvVersion); Log.Logger.Information("ErsatzTV version {Version}", etvVersion);
Log.Logger.Warning( Log.Logger.Warning(
"Give feedback at {GitHub} or {Discord}", "Report bugs to {GitHub} or contact us at {Contact}",
"https://github.com/ErsatzTV/ErsatzTV", "https://github.com/ErsatzTV/ErsatzTV",
"https://discord.ersatztv.org"); "https://ersatztv.org/contact");
CopyMacOsConfigFolderIfNeeded(); CopyMacOsConfigFolderIfNeeded();

Loading…
Cancel
Save