From 15ca59a6a6c06d092383d6fdfb72a8e55bfa407b Mon Sep 17 00:00:00 2001 From: C-3PO Date: Thu, 25 Oct 2018 15:26:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=99=88=20Add=20cspell=20to=20gitignore=20?= =?UTF-8?q?and=20fix=20typos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + .vscode/settings.json | 18 ++++++++++++++++++ README.md | 6 +++--- src/xdelta3.c | 2 +- src/xdelta3.h | 2 +- 5 files changed, 24 insertions(+), 5 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 84e4c37..a3ad05d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .vscode +!.vscode/settings.json ssn-installer diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ab396a0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,18 @@ +{ + "cSpell.words": [ + "affero", + "agpl", + "compr", + "decryptor", + "jedipedia", + "largesizet", + "miniz", + "onblk", + "preinstall", + "tinfl", + "uncompr", + "usize", + "vcdiff", + "xdelta" + ] +} \ No newline at end of file diff --git a/README.md b/README.md index ec6f69f..83d229b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ along with this program. If not, see . # Dependencies -## Miniz <[github.com/richgel999/miniz](https://github.com/richgel999/miniz)> +## [Miniz](https://github.com/richgel999/miniz) Copyright 2013-2014 RAD Game Tools and Valve Software @@ -75,13 +75,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -## Xdelta3 <[github.com/jmacd/xdelta](https://github.com/jmacd/xdelta)> +## [Xdelta3](https://github.com/jmacd/xdelta) Copyright 2016 Joshua MacDonald Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. -You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +You may obtain a copy of the License at Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/xdelta3.c b/src/xdelta3.c index c6b7d60..2eb8cb4 100644 --- a/src/xdelta3.c +++ b/src/xdelta3.c @@ -55,7 +55,7 @@ void xdelta3Init(char* prevFile) { } -/** Supplies the given input buffer to xdelta3 and undiffs the data. */ +/** Supplies the given input buffer to xdelta3 and will undiff the data. */ void xdelta3AddInput(unsigned char* inputBuffer, unsigned int inputLength, bool isLastPart, FILE* targetFile) { xd3_avail_input(&stream, inputBuffer, inputLength); diff --git a/src/xdelta3.h b/src/xdelta3.h index 55bd377..23697f9 100644 --- a/src/xdelta3.h +++ b/src/xdelta3.h @@ -3,5 +3,5 @@ /** Initializes xdelta3 with the given previous file */ void xdelta3Init(char* prevFile); -/** Supplies the given input buffer to xdelta3 and undiffs the data. */ +/** Supplies the given input buffer to xdelta3 and will undiff the data. */ void xdelta3AddInput(unsigned char* inputBuffer, unsigned int inputLength, bool isLastPart, FILE* targetFile);