Skip to content

Commit

Permalink
now using john-wick-parse v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SirWaddles committed Mar 1, 2019
1 parent 00b834a commit 6656501
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let extractor = new PakExtractor("pakchunk.pak", "000000000000000000000000000000
// Iterate over all the files in the pak, and extract them.
// get_file_list returns an array of file paths within the pak. You will need the index in the array to extract the files.
extractor.get_file_list().forEach((v, idx) => {
// get_file(index) returns a NodeJS Buffer with the file decrypted file contents.
// get_file(index) returns a NodeJS Buffer with the decrypted file contents.
fs.writeFileSync(v, extractor.get_file(idx));
});
```
Expand Down
74 changes: 37 additions & 37 deletions native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-wick"
version = "0.4.0"
version = "0.5.0"
authors = ["Waddlesworth <[email protected]>"]
license = "MIT"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-wick",
"version": "0.4.0",
"version": "0.5.0",
"description": "NodeJS Bindings for the JohnWickParse library",
"main": "lib/index.js",
"repository": {
Expand Down

0 comments on commit 6656501

Please sign in to comment.