mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
97 lines
2.7 KiB
C++
97 lines
2.7 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
#pragma warning(disable: 4786)
|
|
#pragma warning(disable: 4996)
|
|
|
|
#include <windows.h>
|
|
#include "Litestep.h"
|
|
#include "Rainmeter.h"
|
|
#include <string>
|
|
#include <Wininet.h>
|
|
#include <process.h>
|
|
|
|
void CheckVersion(void* dummy)
|
|
{
|
|
int version = 0;
|
|
|
|
HINTERNET hRootHandle = InternetOpen(L"Rainmeter",
|
|
INTERNET_OPEN_TYPE_PRECONFIG,
|
|
NULL,
|
|
NULL,
|
|
0);
|
|
if (hRootHandle == NULL)
|
|
{
|
|
DebugLog(L"CheckUpdate: InternetOpen failed.");
|
|
return;
|
|
}
|
|
|
|
HINTERNET hUrlDump = InternetOpenUrl(hRootHandle, L"http://www.ipi.fi/~rainy/Rainmeter/version", NULL, NULL, INTERNET_FLAG_RESYNCHRONIZE, 0);
|
|
if (hUrlDump)
|
|
{
|
|
DWORD dwSize;
|
|
char buffer[16]; // 16 should be enough for the version number
|
|
buffer[0] = 0;
|
|
if (InternetReadFile(hUrlDump, (LPVOID)buffer, 16, &dwSize))
|
|
{
|
|
// Add a null terminator to the end of the buffer (just in case...).
|
|
std::string verStr = buffer;
|
|
size_t pos = verStr.find('.');
|
|
if (pos != std::wstring::npos)
|
|
{
|
|
std::string verStr1 = verStr.substr(pos + 1);
|
|
version = atoi(verStr1.c_str()) * 1000;
|
|
pos = verStr.find('.', pos + 1);
|
|
if (pos != std::wstring::npos)
|
|
{
|
|
std::string verStr1 = verStr.substr(pos + 1);
|
|
version += atoi(verStr1.c_str());
|
|
}
|
|
}
|
|
|
|
if (version > RAINMETER_VERSION)
|
|
{
|
|
if (IDYES == MessageBox(NULL, L"A new version of Rainmeter is available at http://www.iki.fi/rainy.\nDo you want to go there now?", APPNAME, MB_YESNO | MB_ICONQUESTION))
|
|
{
|
|
LSExecute(NULL, L"http://www.iki.fi/rainy/Rainmeter.html", SW_SHOWNORMAL);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
DebugLog(L"CheckUpdate: No new version available.");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
DebugLog(L"CheckUpdate: InternetReadFile failed.");
|
|
}
|
|
InternetCloseHandle(hUrlDump);
|
|
}
|
|
else
|
|
{
|
|
DebugLog(L"CheckUpdate: InternetOpenUrl failed.");
|
|
}
|
|
|
|
InternetCloseHandle(hRootHandle);
|
|
}
|
|
|
|
void CheckUpdate()
|
|
{
|
|
_beginthread(CheckVersion, 0, NULL );
|
|
}
|