Update check now uses its own thread. The messagebox is now modal. Also checks for alphas/betas. Adds new version string to messagebox.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1437 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
1404987ad6
commit
64c9fe013b
2 changed files with 72 additions and 41 deletions
|
@ -35,6 +35,7 @@
|
|||
#define NSIS_DEV "http://nsis.sourceforge.net/"
|
||||
#define NSIS_URL "http://www.nullsoft.com/free/nsis/"
|
||||
#define NSIS_UPDATE "http://nsis.sourceforge.net/update.php?version="
|
||||
#define NSIS_DDL "http://sourceforge.net/project/showfiles.php?group_id=22049"
|
||||
#define USAGE "Usage:\r\n\r\n - File | Load Script...\r\n - Drag the .nsi file into this window\r\n - Right click the .nsi file and choose \"Compile NSI\""
|
||||
#define COPYRIGHT "Copyright © 2002 Robert Rainwater"
|
||||
#define CONTRIB "Fritz Elfert, Justin Frankel, Amir Szekely"
|
||||
|
@ -66,6 +67,7 @@ BOOL CALLBACK DialogResize(HWND hWnd, LPARAM /* unused*/);
|
|||
BOOL CALLBACK AboutNSISProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
|
||||
BOOL CALLBACK AboutProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
|
||||
void CompileNSISScript();
|
||||
DWORD CALLBACK UpdateThread(LPVOID v);
|
||||
|
||||
typedef struct NSISScriptData {
|
||||
char *script;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue