From 61b8e729c7269677874747dd8f0a5446a212ad6c Mon Sep 17 00:00:00 2001 From: Jim DeLaHunt Date: Wed, 3 Aug 2022 00:31:48 -0700 Subject: [PATCH] Update albumartistextension.py --- .../albumartistextension.py | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/plugins/albumartistextension/albumartistextension.py b/plugins/albumartistextension/albumartistextension.py index 0bb7727d..d58f60ac 100644 --- a/plugins/albumartistextension/albumartistextension.py +++ b/plugins/albumartistextension/albumartistextension.py @@ -19,11 +19,24 @@ album artist.
  • _aaeAlbumArtistCount = The number of artists comprising the album artist. -PLEASE NOTE: Tagger scripts are required to make use of these hidden -variables. +PLEASE NOTE: Once the plugin is installed, it automatically makes these +variables available to File Naming Scripts and other scripts in Picard. +Like other variables, you must mention them in a script for them to affect +the file name or other data. +

    +This plugin is no longer being maintained. +Consider switching to the +[Additional Artists Variables plugin](https://github.com/rdswift/picard-plugins/tree/2.0/plugins/additional_artists_variables), +which fills this +role, and also includes additional variables. That other plugin uses different +names for the album artist names provided here, so you if you switch plugins, you +will need to update your scripts with the different names. +

    +Version 0.6.1 of this plugin functions identically to Version 0.6. Only this +description (and the version number) has changed. ''' -PLUGIN_VERSION = "0.6" +PLUGIN_VERSION = "0.6.1" PLUGIN_API_VERSIONS = ["2.0"] PLUGIN_LICENSE = "GPL-2.0-or-later" PLUGIN_LICENSE_URL = "https://www.gnu.org/licenses/gpl-2.0.html"