summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-15make URL writable (kinda). allow delete in by-title/. README updateOmar Rizwan
2020-12-13Add unlink support. Make by-title/ writable. Add . and .. entries.Omar Rizwan
Still haven't added the unlink handler to by-title/, though.
2020-12-13fromStringMaker -> defineFile; start adding write to defineFile.Omar Rizwan
also make write() actually work w/o errors. (return size)
2020-12-12scripts works! uses getScriptSourceOmar Rizwan
2020-12-12fix detach->attach flow. collect scripts/ entries and readdirOmar Rizwan
(but not providing attrs yet, so they don't actually show up in ls yet)
2020-12-12README additionsOmar Rizwan
2020-12-11make screenshot.png use fromStringMakerOmar Rizwan
2020-12-11more refactoring: standardize fromStringMaker to use arraysOmar Rizwan
resources and screenshot.png seem to still work
2020-12-11refactor to create fromStringMaker. text, title, url seem to workOmar Rizwan
with this, I think I can drastically simplify the synthetic file definition code
2020-12-11fence withTab and fromScript into scopeOmar Rizwan
2020-12-11refactor -> Cache, TabManager, BrowserState.Omar Rizwan
screenshot.png is consistent & fast-ish now! need to fixup resources
2020-12-04extension: improve debug attach reliabilityOmar Rizwan
(by forcing detach first for tabs that already have an attached debugger -- this crops up a lot if I reload the extension, the old extension ver stays hanging -- and by attaching before we open/getattr files too, not just when we open the dir) (it seems pretty solid now)
2020-12-04trying to fix resource read. fix releasedir call.Omar Rizwan
2020-12-04screenshot.png works! (when focused, when you kill old debugger)Omar Rizwan
2020-12-04fix text bugOmar Rizwan
2020-12-04extension: move toward unified base64-encoded utf8 bufsOmar Rizwan
title and url work, but not text?
2020-12-02base64 reads. start working on screenshot stuff.Omar Rizwan
2020-12-02fix write (base64-encoding)Omar Rizwan
2020-12-02introduce default ops. it still (mostly) works!Omar Rizwan
control is broken tho
2020-12-02fix bugs with error handling (Unix vs other Errors). add open stubsOmar Rizwan
now I actually will have to implement all the ops properly for every route...
2020-12-02fix readlink bugOmar Rizwan
2020-12-01fs: more cleanupOmar Rizwan
2020-12-01cut base64 and cJSON modules out. fix read!Omar Rizwan
this wasn't too bad
2020-12-01start refactor to use frozen instead of cJSON; I can list dirs, but can't ↵Omar Rizwan
read file yet also (... at the same time ...) more work on refactoring background.js to eliminate middle layer, I guess
2020-11-30start on refactor to eliminate layer of fs op handlingOmar Rizwan
2020-11-22read/write loops in case payload > 65536 (pipe buffer size)Omar Rizwan
2020-11-22fix base64-encoded reads!Omar Rizwan
2020-11-22track last-focused window by handOmar Rizwan
2020-11-22add last-focused to make testing easierOmar Rizwan
2020-11-22re-add (buggy) resource file supportOmar Rizwan
2020-11-22bring back debugging, resources dirOmar Rizwan
2020-11-05`close` should be `remove`. Make control allow arbitrary commands.Omar Rizwan
2020-11-03fs: remove out-of-date ws.c reference from commentOmar Rizwan
2020-10-30Add Finder stuff + more motivation to README.md.Omar Rizwan
2020-10-30check for 0 arguments in install.sh.Omar Rizwan
2020-10-30more improvement to README.md and install.sh.Omar Rizwan
2020-10-30More README improvements.Omar Rizwan
2020-10-29Specify extension id in install.sh & check usage. Improve README.Omar Rizwan
2020-10-29Manually set getattr op. Fixes text file.Omar Rizwan
2020-10-29fix file reads! (substr by offset/size). remove browser actionOmar Rizwan
2020-10-29Fix async bug on handler init. Can read url and title now! (kinda)Omar Rizwan
(they don't terminate properly, will fix that next)
2020-10-28ancestor-building kind of works.Omar Rizwan
2020-10-27working on refactor of fs spec. also Linux port and README stuff.Omar Rizwan
2020-10-23Tweak README and Makefile for new deps, Linux support.Omar Rizwan
2020-10-23Works in Chrome again! (had to make TabFS name lowercase)Omar Rizwan
Add install script to cover all the native messaging install cases.
2020-10-23text file works!Omar Rizwan
2020-10-23Switch to browser namespace so we can use Promises.Omar Rizwan
2020-10-22works on FF!! key thing was... to add indexedDB permission...Omar Rizwan
(I guess FF uses the DB in the backend? it makes async errors work...)
2020-10-22postMessage back from browser. Kill other instances of fs.Omar Rizwan
Currently stuck not getting response to a getattr...
2020-10-21fs: Attempt to switch to native messaging. It relays 1 message ok!Omar Rizwan