2009-02-10 18:37:48 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2004 Kimmo Pekkola
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-10-07 16:45:14 +00:00
|
|
|
#include "StdAfx.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
#include "Litestep.h"
|
|
|
|
#include "Rainmeter.h"
|
|
|
|
|
2010-06-21 16:00:19 +00:00
|
|
|
extern CRainmeter* Rainmeter;
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
void CheckVersion(void* dummy)
|
|
|
|
{
|
2010-06-21 17:14:56 +00:00
|
|
|
int version = 0;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
HINTERNET hRootHandle = InternetOpen(L"Rainmeter",
|
|
|
|
INTERNET_OPEN_TYPE_PRECONFIG,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0);
|
|
|
|
if (hRootHandle == NULL)
|
|
|
|
{
|
2010-12-19 23:06:13 +00:00
|
|
|
LSLog(LOG_ERROR, APPNAME, L"CheckUpdate: InternetOpen failed.");
|
2009-02-10 18:37:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-27 20:32:33 +00:00
|
|
|
HINTERNET hUrlDump = InternetOpenUrl(hRootHandle, L"http://rainmeter.googlecode.com/svn/version", NULL, NULL, INTERNET_FLAG_RESYNCHRONIZE, 0);
|
2009-02-10 18:37:48 +00:00
|
|
|
if (hUrlDump)
|
|
|
|
{
|
|
|
|
DWORD dwSize;
|
2009-07-27 20:32:33 +00:00
|
|
|
char buffer[16] = {0}; // 16 should be enough for the version number
|
|
|
|
if (InternetReadFile(hUrlDump, (LPVOID)buffer, 15, &dwSize))
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
std::string verStr = buffer;
|
|
|
|
size_t pos = verStr.find('.');
|
|
|
|
if (pos != std::wstring::npos)
|
|
|
|
{
|
2009-08-02 11:32:12 +00:00
|
|
|
std::string verMajor = verStr.substr(0, pos);
|
|
|
|
std::string verMinor = verStr.substr(pos + 1);
|
|
|
|
|
|
|
|
version = atoi(verMajor.c_str()) * 1000000;
|
|
|
|
|
|
|
|
pos = verMinor.find('.');
|
2009-02-10 18:37:48 +00:00
|
|
|
if (pos != std::wstring::npos)
|
|
|
|
{
|
2009-08-02 11:32:12 +00:00
|
|
|
std::string verMinor1 = verMinor.substr(0, pos);
|
|
|
|
std::string verMinor2 = verMinor.substr(pos + 1);
|
|
|
|
|
|
|
|
version += atoi(verMinor1.c_str()) * 1000;
|
|
|
|
version += atoi(verMinor2.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
version += atoi(verMinor.c_str()) * 1000;
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
2010-06-21 16:00:19 +00:00
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
if (version > RAINMETER_VERSION)
|
|
|
|
{
|
2010-06-21 16:00:19 +00:00
|
|
|
Rainmeter->SetNewVersion(TRUE);
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-06-21 16:00:19 +00:00
|
|
|
Rainmeter->SetNewVersion(FALSE);
|
2010-12-19 23:06:13 +00:00
|
|
|
LSLog(LOG_NOTICE, APPNAME, L"CheckUpdate: No new version available.");
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-12-19 23:06:13 +00:00
|
|
|
LSLog(LOG_ERROR, APPNAME, L"CheckUpdate: InternetReadFile failed.");
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
InternetCloseHandle(hUrlDump);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-12-19 23:06:13 +00:00
|
|
|
LSLog(LOG_ERROR, APPNAME, L"CheckUpdate: InternetOpenUrl failed.");
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
InternetCloseHandle(hRootHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckUpdate()
|
|
|
|
{
|
|
|
|
_beginthread(CheckVersion, 0, NULL );
|
|
|
|
}
|