Skip to content

Commit

Permalink
Merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
beatgammit committed Aug 1, 2011
2 parents 56aeaf7 + 4763e4c commit f6cc4e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion examples/index.html
Expand Up @@ -38,8 +38,9 @@
var contents = uint8ToString(data);
console.log(header.fileName, contents);
});

/*
base64 = utils.uint8ToBase64(out);
base64 = btoa(uint8ToString(out));
url = "data:application/tar;base64," + base64;
window.open(url);
Expand Down
6 changes: 3 additions & 3 deletions lib/tar.js
Expand Up @@ -56,8 +56,8 @@
checksum: ' ',
type: '0', // just a file
ustar: 'ustar ',
owner: '',
group: ''
owner: opts.owner || '',
group: opts.group || ''
};

// calculate the checksum
Expand Down Expand Up @@ -88,7 +88,7 @@
this.out.set(input, this.written);

// to the nearest multiple of recordSize
this.written += input.length + (recordSize - (input.length % recordSize));
this.written += input.length + (recordSize - (input.length % recordSize || recordSize));

// make sure there's at least 2 empty records worth of extra space
if (this.out.length - this.written < recordSize * 2) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "tar-js",
"description": "Tar implemented in the browser",
"version": "0.1.0",
"version": "0.1.1",
"homepage": "http://github.com/beatgammit/tar-js",
"repository": {
"type": "git",
Expand Down

0 comments on commit f6cc4e2

Please sign in to comment.