Hi Guys,
This is for the bunch that likes to keep up to date with Steven's updates.
I know there's already a feature intended for this in the preferences screen > general > application > check for updates on startup ...
But I've never seen the fruits of its labour - not sure when or where that notification is supposed to reflect (never seen one in the past 3 years of my MB use).
Download Link
Installation- Download the "mb_MusicBeePatchUpdate_v1.1" zip file and select it from MusicBee -> Edit -> Preferences -> Plugins -> Add Plugin.
- In the same preferences screen, go to the Tags (1) tab > Define New Tags ... set up a virtual tag as follows:
$IsNewVersionAvailable()- Then display that virtual tag in the Track Information panel (this is optional, you can display it wherever you like).
- Note that the virtual tag will only return a value when a new patch is available. When you are on the latest version, nothing will display.
- Also note that this is for notification purposes only. The plugin won't download the update for you.
How to Get a Direct Download Link- Create a virtual tag as follows:
$GetNewVersion() which will be a clickable link if displayed on the track info panel.
- To make it clickable, go to Preferences > Tags (2) > configure fields ... > change your virtual tag data type from "string" to "url"
How to Modify the Message Returned- $IsNull($IsNewVersionAvailable(),"
Already on the latest version",$IsNewVersionAvailable())
To display something else when there isn't a newer version.
- $RxReplace($IsNewVersionAvailable(),"^.*$","
New Version Out Now")
To override the message when an update is available