typos (thanks Jamyn!)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4264 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
4d6282546d
commit
f8062527fa
30 changed files with 67 additions and 67 deletions
|
@ -16,7 +16,7 @@ Function .onInit
|
|||
advsplash::show 1000 600 400 -1 $PLUGINSDIR\splash
|
||||
|
||||
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
||||
; '0' if everything closed normal, and '-1' if some error occured.
|
||||
; '0' if everything closed normally, and '-1' if some error occurred.
|
||||
|
||||
MessageBox MB_OK "Transparency"
|
||||
File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Wizard\orange-uninstall.bmp"
|
||||
|
|
|
@ -19,7 +19,7 @@ Function .onInit
|
|||
advsplash::show 1000 600 400 -1 $TEMP\spltmp
|
||||
|
||||
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
||||
; '0' if everything closed normal, and '-1' if some error occured.
|
||||
; '0' if everything closed normally, and '-1' if some error occurred.
|
||||
|
||||
Delete $TEMP\spltmp.bmp
|
||||
; Delete $TEMP\spltmp.wav
|
||||
|
|
|
@ -109,7 +109,7 @@ version 1.2 (10/28/2001)
|
|||
* Still 44k
|
||||
* Added the "FileRequest" and "DirRequest" control types (thanks Schultz)
|
||||
* Added "MinLen", "MaxLen", and "ValidateText" properties to fields
|
||||
* Added "Flags" as a way to specifiy additional parameters for controls
|
||||
* Added "Flags" as a way to specify additional parameters for controls
|
||||
* Few more changes to the documentation
|
||||
* Cleaned the code in a few places...still trying to make it smaller
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
** so you can tell how much has been send/received. You want to do this a lot, while:
|
||||
** 4. check get_state() to check the state of the connection. The states are:
|
||||
** JNL_Connection::STATE_ERROR
|
||||
** - an error has occured on the connection. the connection has closed,
|
||||
** - an error has occurred on the connection. the connection has closed,
|
||||
** and you can no longer write to the socket (there still might be
|
||||
** data in the receive buffer - use recv_bytes_available()).
|
||||
** JNL_Connection::STATE_NOCONNECTION
|
||||
|
|
|
@ -83,8 +83,8 @@ give you the reference to argument which should be a variable (NSIS, user, array
|
|||
item, stack), and * will convert it back to original variable. For example
|
||||
(a=&b; *a=10) will set b to 10. Expression (*&a) is equal to simple (a).
|
||||
|
||||
Script is set of expressions (mathematical in general) delimeted with ';'.
|
||||
Processing is mathematicaly right (2+2*2 will give 6), operations are performed
|
||||
Script is set of expressions (mathematical in general) delimited with ';'.
|
||||
Processing is mathematically right (2+2*2 will give 6), operations are performed
|
||||
in a C like order (precedence).
|
||||
|
||||
Flow control:
|
||||
|
@ -188,7 +188,7 @@ a constant expression to it. It could be either array item (array[1]), NSIS
|
|||
register R0, any of the user variables (beside the variable with the same name:),
|
||||
but never the constant.
|
||||
|
||||
Another may-be-useful posibility is to redeclare the function (the usual
|
||||
Another may-be-useful possibility is to redeclare the function (the usual
|
||||
declaration at the time when function already defined will simply call that
|
||||
function). For such task you could use "#name", like "func()(1); #func()(2);".
|
||||
But beware, function declaration occurs at time of parsing, so it's not possible
|
||||
|
|
|
@ -11,7 +11,7 @@ NSIS Modern User Interface - VERSION HISTORY
|
|||
* Fixed state of Finish page Cancel button when both an installer and uninstaller page is included
|
||||
|
||||
1.71 - October 14, 2004
|
||||
* The selected language is only stored in the registry when installation was succesful
|
||||
* The selected language is only stored in the registry when installation was successful
|
||||
|
||||
1.70 - February 6, 2004
|
||||
* Improved documentation
|
||||
|
|
|
@ -745,7 +745,7 @@ installation has been completed (won't be displayed when using a
|
|||
Finish page without MUI_(UN)FINISHPAGE_NOAUTOCLOSE).</p>
|
||||
<p><strong>MUI_INSTFILESPAGE_FINISHHEADER_SUBTEXT</strong>
|
||||
<span class="parameter">text</span><br />
|
||||
Subext to display on the header of the installation page when the
|
||||
Subtext to display on the header of the installation page when the
|
||||
installation has been completed (won't be displayed when using a
|
||||
Finish page without MUI_(UN)FINISHPAGE_NOAUTOCLOSE).</p>
|
||||
<p><strong>MUI_INSTFILESPAGE_ABORTHEADER_TEXT</strong> <span class=
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Created: 04/01/98
|
||||
// RCS-ID: $Id: app.cpp,v 1.173.2.2 2002/11/03 21:11:11 VZ Exp $
|
||||
// RCS-ID: $Id: app.cpp,v 1.1 2003/05/26 17:53:58 joostverburg Exp $
|
||||
// Copyright: (c) Julian Smart and Markus Holzem
|
||||
// Licence: wxWindows license
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -1001,7 +1001,7 @@ bool wxApp::ProcessMessage(WXMSG *wxmsg)
|
|||
HWND hwnd = msg->hwnd;
|
||||
wxWindow *wndThis = wxGetWindowFromHWND((WXHWND)hwnd);
|
||||
|
||||
// this may happen if the event occured in a standard modeless dialog (the
|
||||
// this may happen if the event occurred in a standard modeless dialog (the
|
||||
// only example of which I know of is the find/replace dialog) - then call
|
||||
// IsDialogMessage() to make TAB navigation in it work
|
||||
if ( !wndThis )
|
||||
|
|
|
@ -5,7 +5,7 @@ Copyright (C) 2001-2002 Yaroslav Faybishenko & Justin Frankel
|
|||
|
||||
This plugin can be used from NSIS to download files via http.
|
||||
|
||||
To connect to the internet, use the Dialer pluin.
|
||||
To connect to the internet, use the Dialer plugin.
|
||||
|
||||
USAGE
|
||||
-----
|
||||
|
@ -22,7 +22,7 @@ The return value is pushed to the stack:
|
|||
"success" if success
|
||||
otherwise, an error string describing the error
|
||||
|
||||
If you don't want the progess window to appear use NSISdl::download_quiet.
|
||||
If you don't want the progress window to appear, use NSISdl::download_quiet.
|
||||
|
||||
Example of usage:
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
** so you can tell how much has been send/received. You want to do this a lot, while:
|
||||
** 4. check get_state() to check the state of the connection. The states are:
|
||||
** JNL_Connection::STATE_ERROR
|
||||
** - an error has occured on the connection. the connection has closed,
|
||||
** - an error has occurred on the connection. the connection has closed,
|
||||
** and you can no longer write to the socket (there still might be
|
||||
** data in the receive buffer - use recv_bytes_available()).
|
||||
** JNL_Connection::STATE_NOCONNECTION
|
||||
|
|
|
@ -14,7 +14,7 @@ Function .onInit
|
|||
splash::show 1000 $PLUGINSDIR\splash
|
||||
|
||||
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
||||
; '0' if everything closed normal, and '-1' if some error occured.
|
||||
; '0' if everything closed normally, and '-1' if some error occurred.
|
||||
FunctionEnd
|
||||
|
||||
Section
|
||||
|
|
|
@ -20,7 +20,7 @@ Function .onInit
|
|||
splash::show 1000 $TEMP\spltmp
|
||||
|
||||
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
||||
; '0' if everything closed normal, and '-1' if some error occured.
|
||||
; '0' if everything closed normally, and '-1' if some error occurred.
|
||||
|
||||
Delete $TEMP\spltmp.bmp
|
||||
; Delete $TEMP\spltmp.wav
|
||||
|
|
|
@ -3,7 +3,7 @@ release 2.
|
|||
2. Int64 full support (conversion/operations/comparison)
|
||||
3. Structures support
|
||||
4. Callbacks support, including multilevel callbacks
|
||||
5. Some useful rountines (Alloc, Free, Copy)
|
||||
5. Some useful routines (Alloc, Free, Copy)
|
||||
6. CDecl and StdCall calling conventions
|
||||
|
||||
release 3, 22 march 2003.
|
||||
|
@ -30,12 +30,12 @@ release 4, 3 september 2003.
|
|||
5. Automatic A-letter at proc name discovery.
|
||||
6. COM optimized: new proc specification "x->y", where x is interface ptr, and
|
||||
y is vtable member index. For such procs Interface pointer passed as first arg
|
||||
automaticaly.
|
||||
automatically.
|
||||
|
||||
release 5, 11 september 2003.
|
||||
1. u flag - unload dll after procedure call.
|
||||
2. some changes to asm to turn on Whole Program Optimization.
|
||||
3. Dll shrinked for 1 kb.
|
||||
3. Dll shrunk by 1 kb.
|
||||
|
||||
bug-fix-release, 4.06.2004
|
||||
1. System::Copy /SIZE fixed (Kichik).
|
||||
|
|
|
@ -102,7 +102,7 @@ a:hover
|
|||
<h2>Introduction</h2>
|
||||
<div>
|
||||
<p>VPatch allows to create a patch file to update previous versions
|
||||
of your software. The GenPat utitily generates the patch file. The
|
||||
of your software. The GenPat utility generates the patch file. The
|
||||
plug-in can use the patch to update a file. Using a patch, you can
|
||||
reduce the download size of your updates, because only the differences
|
||||
between the files are included in the patch file.</p>
|
||||
|
@ -135,7 +135,7 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
|
|||
<ul>
|
||||
<li>OK</li>
|
||||
<li>OK, new version already installed</li>
|
||||
<li>An error occured while patching</li>
|
||||
<li>An error occurred while patching</li>
|
||||
<li>Patch data is invalid or corrupt</li>
|
||||
<li>No suitable patches were found</li>
|
||||
</ul>
|
||||
|
@ -144,7 +144,7 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
|
|||
<h3>Multiple patches in one file</h3>
|
||||
<div>
|
||||
<p>GenPat appends a patch to the file you specified. If there is already
|
||||
a patch for the same orginal file in the patch file, the patch will
|
||||
a patch for the same original file in the patch file, the patch will
|
||||
be replaced. For example, if you want to be able to upgrade version
|
||||
1 and 2 to version 3, you can put a 1 > 3 and 2 > 3 patch in
|
||||
one file.</p>
|
||||
|
@ -158,7 +158,7 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
|
|||
<div>
|
||||
<p>In version 2.1 support was added for exit codes (known as error levels
|
||||
in the DOS period) to GenPat. GenPat will return an exit code based
|
||||
on succes of the patch generation. Here is a list of the possible
|
||||
on success of the patch generation. Here is a list of the possible
|
||||
exit codes:</p>
|
||||
<table width="547" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
|
@ -222,8 +222,8 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
|
|||
<h3>Patch Generator (Delphi)</h3>
|
||||
<div>
|
||||
<p>The most interesting part of VPatch, the actual patch generation
|
||||
algoritm, can be found in Source\GenPat\PatchGenerator.pas. The header
|
||||
of that file contains a brief explanation of the algoritm as well.</p>
|
||||
algorithm, can be found in Source\GenPat\PatchGenerator.pas. The header
|
||||
of that file contains a brief explanation of the algorithm as well.</p>
|
||||
</div>
|
||||
<h3>User interface (Delphi)</h3>
|
||||
<div>
|
||||
|
|
|
@ -78,7 +78,7 @@ void __declspec(dllexport) vpatchfile(HWND hwndParent, int string_size,
|
|||
|
||||
if ((result != PATCH_SUCCESS)) {
|
||||
if (result == PATCH_ERROR)
|
||||
pushstring("An error occured while patching");
|
||||
pushstring("An error occurred while patching");
|
||||
else if (result == PATCH_CORRUPT)
|
||||
pushstring("Patch data is invalid or corrupt");
|
||||
else if (result == PATCH_NOMATCH)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue