summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-05-04Upgrade to tui 0.9v2.6.0tui-react-v0.4.0Sebastian Thiel
2020-05-04Update dependenciesSebastian Thiel
2020-05-04Add '-x' flag to not cross filesystemsSebastian Thiel
Fixes #3
2020-05-04Fix cargo fmtSebastian Thiel
2020-05-04Add 'x' key to mark for deletion, without togglingSebastian Thiel
Fixes #45
2020-05-04mild refactorSebastian Thiel
2020-04-12fix clippy lintsSebastian Thiel
2020-04-12Link Rust badge to actionsSebastian Thiel
2020-04-12Add fmt and clippy lintsSebastian Thiel
2020-04-12Bye bye travis, we had a really good time…Sebastian Thiel
…but unfortunately your javascripts loads way too slowly in China. [skip CI]
2020-04-12update badgesSebastian Thiel
[skip CI]
2020-04-05bump minorv2.5.0Sebastian Thiel
2020-04-04Fix compile errors after porting commitSebastian Thiel
2020-04-04Add eighth sections to barLovecraftianHorror
2020-04-04update asciinema videoSebastian Thiel
[skip CI]
2020-04-03Bump tui-react version to 0.3tui-react-v0.3.0Sebastian Thiel
2020-04-03Minor bump for tui default features = falseSebastian Thiel
2020-04-03Disable default features for tui in tui-reactMichael
The only default feature in tui is the termion backend, but tui-react doesn't depend on any backend. With the termion backend enabled by default you can't change it to another backend in other crates.
2020-03-30clippySebastian Thiel
2020-03-30bump patchv2.4.1Sebastian Thiel
2020-03-30Update currently visible entries whenever we get the chance during scanningSebastian Thiel
Otherwise entries appear stale
2020-03-30Revert attempt to use tui-react's drawing…Sebastian Thiel
…as it is consistently slower. Don't know what to do there. Fair enough.
2020-03-30Revert "use tui-react to draw text…"Sebastian Thiel
This reverts commit e8c00b70
2020-03-30cleanupSebastian Thiel
2020-03-30use tui-react to draw text…Sebastian Thiel
…for a chance to get it to be faster. Right now, it isn't though, graphemes are killing it.
2020-03-29Remove roadmap, development is a bit more 'fluid' these daysSebastian Thiel
[skip CI]
2020-03-29Bump minor versionv2.4.0Sebastian Thiel
Fixes #47
2020-03-29Don't try to shutdown keyinput thread to not lose input eventsSebastian Thiel
2020-03-29first step towards support aync/channel based input eventsSebastian Thiel
2020-03-29Toggle help for entries and mark paneSebastian Thiel
2020-03-29navigation help for 'help' pane :DSebastian Thiel
2020-03-29auto-help which follows through the panesSebastian Thiel
2020-03-29Crossbeam channel is actually not needed in this caseSebastian Thiel
2020-03-29Import plenty of utilities from prodash into tui-reacttui-react-v0.2.2Sebastian Thiel
2020-03-29show 'scanning' message even without key presses.Sebastian Thiel
2020-03-29Allow initial scan to be interrupted properly…Sebastian Thiel
…which requires peeling through all the layers, but it's worth it.
2020-03-29Allow deletion of files while scanning, it should yield IOerrors only; ↵Sebastian Thiel
improve 'scanning' message
2020-03-29Fix crashbug - division by zero…Sebastian Thiel
…thanks to a screenrecording, a short flash of the error is enough :D. Should remember that. Besides, div by zero is by now the most common reason for a crash.
2020-03-29Now it's way more intuitive, and you can basically do everything…Sebastian Thiel
…even though it can still panic (and I don't see why due to the alternate screen), I think one should not delete things from disk while they are being added.
2020-03-29better state handling when 'peeking' during traversal…Sebastian Thiel
…even though it's far from intuitive. Ideally, we keep the selected node.
2020-03-29Properly shutdown dua with quick-exit - solves all problemsSebastian Thiel
Interesting, how unfit code is naturally hard to use, and fit code… just fits :D
2020-03-29Surprisingly complicated to get back to normal TTY without dropping the ↵Sebastian Thiel
terminal… Problem is that undoing the RAW mode is not possible with the current implementation. We can't just force it off it seems.
2020-03-29Now there could possibly be abortable and navigatable GUI while scanning…Sebastian Thiel
…even though it will be wonky at first
2020-03-29Assure we keep display state changesSebastian Thiel
2020-03-29remove now unused methodSebastian Thiel
2020-03-29phase one of refactoring nearly completeSebastian Thiel
2020-03-29Also exit quickly when ctrl+c is pressedSebastian Thiel
2020-03-29On the way to separating traversal from application stateSebastian Thiel
2020-03-29Revert "Asynchronous processing of keyboard events…"Sebastian Thiel
This reverts commit 7f32fb9a Won't be required after all.
2020-03-29Another step towards isolating the event loop from needing to own the ↵Sebastian Thiel
traversal tree… …and I think I got it now.