mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Fixed that [!RainmeterPluginBang "SomeMeasure Play"] did not work with iTunesPlugin
- Minor changes to illustro and Rainstaller
This commit is contained in:
parent
7eed591c93
commit
dd4edd3df0
@ -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"
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user