Skip to content

Commit

Permalink
Update docs in prep for 1.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
codedread committed Jan 26, 2024
1 parent e03fe7c commit f738d73
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [1.2.2] - 2024-01-??
## [1.2.2] - 2024-01-26

### Added

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ const { getFullMIMEString } = await import('@codedread/bitjs');

### bitjs.archive

This package includes objects for unarchiving binary data in popular archive formats (zip, rar, tar).
Here is a simple example of unrar:
This package includes objects for decompressing binary data in popular archive formats (zip, rar,
tar). Here is a simple example of unrar:

#### Decompressing

Expand Down
7 changes: 5 additions & 2 deletions docs/bitjs.archive.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ This package includes objects for unarchiving binary data in popular archive for
providing unzip, unrar and untar capabilities via JavaScript in the browser or various JavaScript
runtimes (node, deno, bun).

A prototype version of a compressor that creates Zip files is also present. The decompression /
compression happens inside a Web Worker, if the runtime supports it (browsers, deno).
A prototype version of a compressor that creates Zip files is also present.

The decompression / compression happens inside a Web Worker, if the runtime supports it (browsers,
deno). The library uses native decompression, if supported by the browser
(via [DecompressionStream](https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream/DecompressionStream)), and falls back to JavaScript implementations otherwise.

The API is event-based, you will want to subscribe to some of these events:
* 'progress': Periodic updates on the progress (bytes processed).
Expand Down

0 comments on commit f738d73

Please sign in to comment.