Skip to content

Tags: EvanHahn/BrowserFS

Tags

v0.5.10

Toggle v0.5.10's commit message
Initialize TTYs within BrowserFS library, if applicable.

Now, stdout streams will be available immediately after BFS loads.

v0.5.9

Toggle v0.5.9's commit message
Fixes standard out/in/err streams.

v0.5.8

Toggle v0.5.8's commit message
v0.5.8: Fixing a serious buffer copy bug.

See commit message in bfs-buffer for details.

v0.5.7

Toggle v0.5.7's commit message
Fixing a bug in Buffer => Arrayish conversions.

I do not understand why I wrote that conditional in the first place.

v0.5.6

Toggle v0.5.6's commit message
Expose additional internal state through ZipFS interface.

DoppioJVM uses these interfaces to implement java.util.Zip using BrowserFS.

v0.5.5

Toggle v0.5.5's commit message
Use ExtendedASCII explicitly in ZipFS so it works with non-BFS buffers.

v0.5.3

Toggle v0.5.3's commit message
Updating EmscriptenFS so it can use secondary FS modules. Releasing 0…

….5.3.

v0.5.2

Toggle v0.5.2's commit message
Making fs into a class. Releasing 0.5.2.

Now you can have multiple FS modules on one page, if you so choose.

```{js}
var fs_main = BrowserFS.BFSRequire('fs');
var newFs = new fs_main.FS();
var newFs2 = new fs_main.FS();
```