- Fixed that [!RainmeterPluginBang "SomeMeasure Play"] did not work with iTunesPlugin

- Minor changes to illustro and Rainstaller
This commit is contained in:
Birunthan Mohanathas 2011-01-10 18:28:37 +00:00
parent 7eed591c93
commit dd4edd3df0
2 changed files with 6 additions and 2 deletions

View File

@ -12,7 +12,7 @@
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,3,0,0
FILEVERSION 1,4,0,0
PRODUCTVERSION PRODUCTVER
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
@ -29,7 +29,7 @@ BEGIN
BLOCK "040904E4"
BEGIN
VALUE "FileDescription", "Power Plugin for Rainmeter"
VALUE "FileVersion", "1.3.0.0"
VALUE "FileVersion", "1.4.0.0"
VALUE "InternalName", "PluginPower"
VALUE "LegalCopyright", "Copyright (C) 2010 - Rainy"
VALUE "OriginalFilename", "PluginPower.dll"

View File

@ -718,6 +718,10 @@ void ExecuteBang(LPCTSTR args, UINT id)
{
command = COMMAND_PAUSE;
}
else if (_wcsicmp(args, L"Play") == 0)
{
command = COMMAND_PLAY;
}
else if (_wcsicmp(args, L"PlayPause") == 0)
{
command = COMMAND_PLAYPAUSE;