summaryrefslogtreecommitdiff
path: root/extension/background.js
AgeCommit message (Collapse)Author
2019-02-28extension: Add /text route.Omar Rizwan
2019-02-28Add tabs/by-title. Fix symlink stuff to make it work?Omar Rizwan
FUSE readlink needing to return 0 + getattr needing to return correct st_size was _not_ obvious, lol.
2019-02-27Report ENOTSUP for Mac xattr files.Omar Rizwan
Lets me open png files (in Preview) in tree/, at least!
2019-02-27base64 hack to handle binary files.Omar Rizwan
add memory fences because why not.
2019-02-25extension: Can read (some) resources in tree/ now!Omar Rizwan
Also clean up some dead code.
2019-02-25Rewrite and refactor C half. No more shared memory! It's fast!Omar Rizwan
Three C modules: - tabfs (main thread; talks to FUSE) - common (tabfs<->ws communication helpers) - ws (side thread; talks to browser over WebSocket) It's single-threaded, but I don't think that matters anyway.
2018-11-29Add opendir/releasedir support. Relieve ws thread CPU usage.Omar Rizwan
2018-11-28Toolbar icon! Simplify file defns! Pretty cool!Omar Rizwan
2018-11-24URL and title kind of work.Omar Rizwan
direct_io option makes it reliably change. Big speedup from... removing prints. Did I even need multithreading?
2018-11-24Multithreaded. Is this gonna help?Omar Rizwan
Only tested with single-thread mode still on so far.
2018-11-23open/read work on url file!!!Omar Rizwan
Use string keys for opcodes to simplify the code.
2018-11-22Checkpoint. Just access JSON directly in FUSE handlers.Omar Rizwan
2018-11-14Route tree!Omar Rizwan
2018-11-11Tabs subfolder.Omar Rizwan
2018-11-11Can ls and see hello.txt.Omar Rizwan
2018-11-11Groundwork for response parsing.Omar Rizwan
2018-11-11WebSocket communication seems to work.Omar Rizwan