From bbb64d09ee6dd0f79d168501b501bf6417586c35 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 17 Sep 2005 17:41:14 +0000 Subject: [PATCH] typos git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4276 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/VPatch/Readme.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Contrib/VPatch/Readme.html b/Contrib/VPatch/Readme.html index 640d7ca7..4f68bcde 100644 --- a/Contrib/VPatch/Readme.html +++ b/Contrib/VPatch/Readme.html @@ -103,7 +103,7 @@ a:hover

Introduction

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.

@@ -139,7 +139,7 @@ vpatch::vpatchfile "patch.pat" "oldfile.txt" "temporary_newfile.txt" @@ -151,7 +151,7 @@ vpatch::vpatchfile "patch.pat" "oldfile.txt" "temporary_newfile.txt"

Multiple patches in one file

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.

@@ -165,7 +165,7 @@ vpatch::vpatchfile "patch.pat" "oldfile.txt" "temporary_newfile.txt"

In version 3 the following exit codes (known as error levels in the DOS period) can be returned by GenPat. GenPat will return an - exit code based on succes of the patch generation. Here is a list + exit code based on success of the patch generation. Here is a list of the possible exit codes:

@@ -207,7 +207,7 @@ vpatch::vpatchfile "patch.pat" "oldfile.txt" "temporary_newfile.txt"

Patch Generator (C++)

The most interesting part of VPatch, the actual patch generation - algoritm, can be found in Source\GenPat\PatchGenerator.cpp. The + algorithm, can be found in Source\GenPat\PatchGenerator.cpp. The header of that file contains a brief explanation of the algorithm as well.