mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Script: Return types are now checked explicitly. As a result, 'return 5' and 'return "5"' are not equal any longer. Only the former will respect NumOfDecimals, Scale, etc. now.
- NowPlayingPlugin: Accidentally removed "Previous" bang in r880, fixed.
This commit is contained in:
@ -466,14 +466,18 @@ void ExecuteBang(LPCTSTR bang, UINT id)
|
||||
{
|
||||
(player->GetState() != PLAYER_PLAYING) ? player->Play() : player->Pause();
|
||||
}
|
||||
else if (_wcsicmp(bang, L"Stop") == 0)
|
||||
{
|
||||
player->Stop();
|
||||
}
|
||||
else if (_wcsicmp(bang, L"Next") == 0)
|
||||
{
|
||||
player->Next();
|
||||
}
|
||||
else if (_wcsicmp(bang, L"Previous") == 0)
|
||||
{
|
||||
player->Previous();
|
||||
}
|
||||
else if (_wcsicmp(bang, L"Stop") == 0)
|
||||
{
|
||||
player->Stop();
|
||||
}
|
||||
else if (_wcsicmp(bang, L"OpenPlayer") == 0)
|
||||
{
|
||||
player->OpenPlayer(parent->playerPath);
|
||||
|
@ -12,7 +12,7 @@
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,1,3,3
|
||||
FILEVERSION 1,1,3,4
|
||||
PRODUCTVERSION PRODUCTVER
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
@ -29,7 +29,7 @@ BEGIN
|
||||
BLOCK "040904E4"
|
||||
BEGIN
|
||||
VALUE "FileDescription", "NowPlaying Plugin for Rainmeter"
|
||||
VALUE "FileVersion", "1.1.3.3"
|
||||
VALUE "FileVersion", "1.1.3.4"
|
||||
VALUE "InternalName", "NowPlaying"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2011 - Birunthan Mohanathas"
|
||||
VALUE "OriginalFilename", "NowPlaying.dll"
|
||||
|
Reference in New Issue
Block a user