mirror of
				https://github.com/chibicitiberiu/rainmeter-studio.git
				synced 2024-02-24 04:33:31 +00:00 
			
		
		
		
	Additional change to make Rainmeter.cpp case insensitve when installing default theme. Added Recycle Bin to illustro default theme.
This commit is contained in:
		| @@ -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" | ||||
|   | ||||
| @@ -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(); | ||||
|   | ||||
| @@ -1,3 +1,3 @@ | ||||
| #pragma once | ||||
| const int revision_number = 588; | ||||
| const int revision_number = 589; | ||||
| const bool revision_beta = true; | ||||
		Reference in New Issue
	
	Block a user
	 jsmorley
					jsmorley