Additional change to make Rainmeter.cpp case insensitve when installing default theme. Added Recycle Bin to illustro default theme.

This commit is contained in:
jsmorley 2010-11-07 13:14:51 +00:00
parent bddef71808
commit 2bf3299ded
3 changed files with 6 additions and 6 deletions

View File

@ -28,8 +28,8 @@ LANGUAGE LANG_FINNISH, SUBLANG_DEFAULT
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,4,0,588
PRODUCTVERSION 1,4,0,588
FILEVERSION 1,4,0,589
PRODUCTVERSION 1,4,0,589
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -45,12 +45,12 @@ BEGIN
BLOCK "040b04b0"
BEGIN
VALUE "FileDescription", "Rainmeter - A Customizable Resource Meter"
VALUE "FileVersion", "1, 4, 0, 588"
VALUE "FileVersion", "1, 4, 0, 589"
VALUE "InternalName", "Rainmeter"
VALUE "LegalCopyright", "Copyright (C) 2010 - Rainy"
VALUE "OriginalFilename", "Rainmeter.exe"
VALUE "ProductName", "Rainmeter"
VALUE "ProductVersion", "1, 4, 0, 588"
VALUE "ProductVersion", "1, 4, 0, 589"
END
END
BLOCK "VarFileInfo"

View File

@ -1689,7 +1689,7 @@ void CRainmeter::CheckSkinVersions()
CSystem::CopyFiles(strMainSkinsPath + menu[i].name, m_SkinPath);
// TODO: Temporary 'fix': If skin was illustro upgrade the themes too
if (menu[i].name == L"illustro")
if (!_wcsicmp(menu[i].name.c_str(), L"illustro"))
{
std::wstring strMainThemes = m_Path + L"Themes";
std::wstring strCurrentThemes = GetSettingsPath();

View File

@ -1,3 +1,3 @@
#pragma once
const int revision_number = 588;
const int revision_number = 589;
const bool revision_beta = true;