From 4cb306780facda1d88d476bbb780a8a930efc7c6 Mon Sep 17 00:00:00 2001 From: Weblate Date: Sat, 16 Aug 2025 15:33:34 +0000 Subject: [PATCH 1/7] Multiple Translations updated by Weblate ignore-downstream Co-authored-by: mrchonks Translate-URL: https://translate.servarr.com/projects/servarr/lidarr/fr/ Translation: Servarr/Lidarr --- src/NzbDrone.Core/Localization/Core/fr.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/Localization/Core/fr.json b/src/NzbDrone.Core/Localization/Core/fr.json index d414fb310..e532d4b8c 100644 --- a/src/NzbDrone.Core/Localization/Core/fr.json +++ b/src/NzbDrone.Core/Localization/Core/fr.json @@ -488,7 +488,7 @@ "OnHealthIssue": "Lors de problème de santé", "OnRename": "Au renommage", "OnUpgrade": "Lors de la mise à niveau", - "ExpandAlbumByDefaultHelpText": "Album", + "ExpandAlbumByDefaultHelpText": "Albums", "Continuing": "Continuer", "ContinuingAllTracksDownloaded": "Continuation (Tous les livres téléchargés)", "DefaultLidarrTags": "Tags {appName} par défaut", @@ -1177,7 +1177,7 @@ "RemoveQueueItem": "Retirer - {sourceTitle}", "RemoveQueueItemConfirmation": "Êtes-vous sûr de vouloir retirer '{sourceTitle}' de la file d'attente ?", "RemoveQueueItemRemovalMethod": "Méthode de suppression", - "RemoveQueueItemsRemovalMethodHelpTextWarning": "Supprimer du client de téléchargement\" supprimera les téléchargements et les fichiers du client de téléchargement.", + "RemoveQueueItemsRemovalMethodHelpTextWarning": "\"Supprimer du client de téléchargement\" supprimera les téléchargements et les fichiers du client de téléchargement.", "AddAutoTagError": "Impossible d'ajouter un nouveau tag automatique, veuillez réessayer.", "Donate": "Donation", "CustomFilter": "Filtre personnalisé", @@ -1364,7 +1364,7 @@ "LogFilesLocation": "Les fichiers journaux sont situés dans : {location}", "DownloadClientItemErrorMessage": "{clientName} signale une erreur : {message}", "RemoveRootFolder": "Supprimer le dossier racine", - "RemoveRootFolderArtistsMessageText": "Êtes vous sure de vouloir retirer le dossier racine '{name}' ? Les fichiers et les dossiers ne seront pas supprimés du disque et les artistes dans le dossier racine ne seront pas retirés de {appName}.", + "RemoveRootFolderArtistsMessageText": "Êtes vous sûr de vouloir retirer le dossier racine '{name}' ? Les fichiers et les dossiers ne seront pas supprimés du disque et les artistes dans le dossier racine ne seront pas retirés de {appName}.", "TheLogLevelDefault": "Le niveau de journalisation est par défaut à « Information » et peut être modifié dans les [paramètres généraux](/settings/general)", "MonitorNewAlbumsData": "Surveiller les albums ajoutés à la base de donnée dans le future avec une date de sortie après le dernier album", "MonitorNoAlbumsData": "Ne pas surveiller aucun nouvel album" From d2330a32329d4f4d66812d21c0cecdcb65e44e39 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sun, 17 Aug 2025 14:42:19 -0400 Subject: [PATCH 2/7] Bump to 2.13.3 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 920729063..85d13499a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,7 +9,7 @@ variables: testsFolder: './_tests' yarnCacheFolder: $(Pipeline.Workspace)/.yarn nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages - majorVersion: '2.13.2' + majorVersion: '2.13.3' minorVersion: $[counter('minorVersion', 1076)] lidarrVersion: '$(majorVersion).$(minorVersion)' buildName: '$(Build.SourceBranchName).$(lidarrVersion)' From ad1825f63ebf05b30b761082c535827357a0641b Mon Sep 17 00:00:00 2001 From: Tro95 Date: Wed, 20 Aug 2025 17:23:15 +0100 Subject: [PATCH 3/7] Fixed: Don't Fail Artist Refresh if Album Refresh fails (#5567) --- src/NzbDrone.Core/Music/Services/RefreshAlbumService.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Music/Services/RefreshAlbumService.cs b/src/NzbDrone.Core/Music/Services/RefreshAlbumService.cs index 8fece1864..e1030befb 100644 --- a/src/NzbDrone.Core/Music/Services/RefreshAlbumService.cs +++ b/src/NzbDrone.Core/Music/Services/RefreshAlbumService.cs @@ -340,7 +340,14 @@ namespace NzbDrone.Core.Music (updatedMusicbrainzAlbums == null && _checkIfAlbumShouldBeRefreshed.ShouldRefresh(album)) || (updatedMusicbrainzAlbums != null && updatedMusicbrainzAlbums.Contains(album.ForeignAlbumId))) { - updated |= RefreshAlbumInfo(album, remoteAlbums, forceUpdateFileTags); + try + { + updated |= RefreshAlbumInfo(album, remoteAlbums, forceUpdateFileTags); + } + catch (Exception e) + { + _logger.Error(e, "Couldn't refresh info for album {0}", album.Title); + } } else { From 08024736ba5d041cc4696b8f9bedf3f340efc571 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Fri, 22 Aug 2025 15:06:06 -0500 Subject: [PATCH 4/7] docs: update metadata notice [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e643760f..3765cb05c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. > [!WARNING] -> NOTICE - The Lidarr Metadata Server is currently down impacting adding artists, etc. Please follow [GHI 5498](https://github.com/Lidarr/Lidarr/issues/5498) or see Discord for detaila. +> NOTICE - The Lidarr Metadata Server is recoverying which is impacting adding artists, library imports, etc. Please follow [GHI 5498](https://github.com/Lidarr/Lidarr/issues/5498) or see Discord for details. ## Major Features Include: From 20f62a279715db6648d09e664d67b165958e1ae5 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Fri, 22 Aug 2025 15:06:50 -0500 Subject: [PATCH 5/7] docs: fixup metadata warning [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3765cb05c..7a6da3158 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. > [!WARNING] -> NOTICE - The Lidarr Metadata Server is recoverying which is impacting adding artists, library imports, etc. Please follow [GHI 5498](https://github.com/Lidarr/Lidarr/issues/5498) or see Discord for details. +> NOTICE - The Lidarr Metadata Server is recovering and rebuilding the cache which is impacting adding artists, library imports, etc. Please follow [GHI 5498](https://github.com/Lidarr/Lidarr/issues/5498) or see Discord for details. ## Major Features Include: From 30606ce70d9017cf10b21bb9b4834a6fcb234e1c Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sat, 23 Aug 2025 15:48:18 -0500 Subject: [PATCH 6/7] Bump to 2.14.0 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 85d13499a..3d19ba2a3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,7 +9,7 @@ variables: testsFolder: './_tests' yarnCacheFolder: $(Pipeline.Workspace)/.yarn nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages - majorVersion: '2.13.3' + majorVersion: '2.14.0' minorVersion: $[counter('minorVersion', 1076)] lidarrVersion: '$(majorVersion).$(minorVersion)' buildName: '$(Build.SourceBranchName).$(lidarrVersion)' From 02e163ff22424064bd6bdb98d3d65fe4e48a4911 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sun, 24 Aug 2025 07:57:34 -0500 Subject: [PATCH 7/7] Bump to 2.14.1 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3d19ba2a3..ca3735c94 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,7 +9,7 @@ variables: testsFolder: './_tests' yarnCacheFolder: $(Pipeline.Workspace)/.yarn nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages - majorVersion: '2.14.0' + majorVersion: '2.14.1' minorVersion: $[counter('minorVersion', 1076)] lidarrVersion: '$(majorVersion).$(minorVersion)' buildName: '$(Build.SourceBranchName).$(lidarrVersion)'