Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | try to unconditionally save after s.run() completes | nc | 2020-08-08 | 1 | -0/+7 |
| | |||||
* | Revert "include only minimal code changes to add ctrl-c capturing functionality" | nc | 2020-08-06 | 2 | -8/+0 |
| | | | | This reverts commit 9777930868591abdf4a533e4059cc4fd08898521. | ||||
* | include only minimal code changes to add ctrl-c capturing functionality | nc | 2020-08-06 | 2 | -0/+8 |
| | |||||
* | revert | nc | 2020-08-06 | 4 | -22/+10 |
| | |||||
* | Override Ctrl-C by disabling callback in Cursive | nc | 2020-08-06 | 3 | -8/+5 |
| | | | | | | | Thanks to @gyscos for the explanation in #22! Also removed extraneous code that's no longer needed. | ||||
* | add ctrlc to on_event trigger | nc | 2020-07-29 | 1 | -0/+4 |
| | |||||
* | remove debug code, add cargo.lock | nc | 2020-07-20 | 1 | -1/+1 |
| | |||||
* | Add RwLock around messages. Catch SIGINT and print that :q is the way to quit. | nc | 2020-07-20 | 4 | -11/+22 |
| | | | | | Note that this doesn't actually capture Ctrl-C. I'm not sure how it works but termion somehow swollows Ctrl-C so and circumvents the signal handler... | ||||
* | allow "untracking" of habits, closes #18 | Akshay | 2020-07-20 | 3 | -5/+20 |
| | |||||
* | Merge https://github.com/Youx/dijo into fix/macos-watcher | Akshay | 2020-07-20 | 1 | -2/+2 |
|\ | |||||
| * | use cross-platform file watcher | Hugo Camboulive | 2020-07-19 | 1 | -2/+2 |
| | | | | | | | | Allows running on OSX. | ||||
* | | fix divide by zero for #5 | nc | 2020-07-20 | 1 | -2/+2 |
|/ | |||||
* | add startup hint, fix watcher panics | Akshay | 2020-07-19 | 4 | -26/+24 |
| | |||||
* | stop habits from consuming global events | Akshay | 2020-07-19 | 2 | -16/+20 |
| | |||||
* | being adding command eval error messages | Akshay | 2020-07-19 | 1 | -0/+9 |
| | |||||
* | improve command mode positioning/ux | Akshay | 2020-07-19 | 4 | -48/+60 |
| | |||||
* | fix reexports | Akshay | 2020-07-18 | 1 | -0/+3 |
| | |||||
* | add smooth error handling | Akshay | 2020-07-18 | 4 | -69/+140 |
| | |||||
* | add message type | Akshay | 2020-07-18 | 1 | -0/+50 |
| | |||||
* | refactor app.rs into module: app | Akshay | 2020-07-18 | 3 | -186/+210 |
| | |||||
* | switch to termion backend for strikethrough and stable refresh rate | Akshay | 2020-07-18 | 2 | -7/+9 |
| | |||||
* | add file watcher for auto habits | Akshay | 2020-07-18 | 1 | -2/+30 |
| | |||||
* | begin work on command line interface | Akshay | 2020-07-16 | 2 | -9/+34 |
| | |||||
* | add track commands | Akshay | 2020-07-16 | 2 | -10/+40 |
| | |||||
* | make `add` command easier to use | Akshay | 2020-07-15 | 2 | -10/+6 |
| | |||||
* | add utils for auto habits | Akshay | 2020-07-15 | 2 | -31/+55 |
| | | | | auto trackable habits can be added, but not tracked as of this commit | ||||
* | display view mode in statusline | Akshay | 2020-07-15 | 3 | -16/+45 |
| | |||||
* | more boilerplate for auto-trackable habits | Akshay | 2020-07-14 | 7 | -19/+55 |
| | | | | add funding.yml also :^) | ||||
* | prep for autohabits, impl Default for App, bugfix file writing | Akshay | 2020-07-12 | 1 | -11/+20 |
| | |||||
* | remove unused imports, upgrade to cursive v0.15 | Akshay | 2020-07-12 | 4 | -46/+5 |
| | |||||
* | refactor habit.rs into habit module | Akshay | 2020-07-12 | 6 | -319/+353 |
| | |||||
* | improve spacing, line counting; add Week mode to enums | Akshay | 2020-07-12 | 3 | -8/+11 |
| | |||||
* | rename `Habit::total` to `Habit::goal` | Akshay | 2020-07-12 | 1 | -6/+6 |
| | |||||
* | add new mode: week view mode | Akshay | 2020-07-12 | 2 | -32/+82 |
| | | | | | | accessible via 'v' (single habit week mode toggle) and 'V' (bulk week mode) from any mode, press 'esc' to go back to day mode (this is probably the 'normal' mode of dijo) | ||||
* | fix trait bounds bug, prep for view modes | Akshay | 2020-07-12 | 2 | -28/+29 |
| | |||||
* | misc modules | Akshay | 2020-07-11 | 1 | -1/+1 |
| | |||||
* | begin work on month mode | Akshay | 2020-07-11 | 3 | -46/+87 |
| | |||||
* | i dun an oopsie | Akshay | 2020-07-10 | 1 | -0/+2 |
| | |||||
* | add directories crate, simplify done status | Akshay | 2020-07-10 | 1 | -2/+2 |
| | |||||
* | follow XDG_DATA_DIR spec for app data | Akshay | 2020-07-10 | 2 | -13/+37 |
| | |||||
* | use strikethrough for completion | Akshay | 2020-07-10 | 1 | -16/+18 |
| | |||||
* | move config management to utils.rs | Akshay | 2020-07-10 | 1 | -0/+32 |
| | |||||
* | redo quit command | Akshay | 2020-07-10 | 2 | -11/+26 |
| | |||||
* | move to crossterm backend | Akshay | 2020-07-10 | 1 | -45/+14 |
| | |||||
* | add quit command | Akshay | 2020-07-04 | 2 | -5/+10 |
| | |||||
* | new 'delete' command | Akshay | 2020-07-04 | 3 | -5/+45 |
| | |||||
* | add boilerplate onto traits for month sifting | Akshay | 2020-07-02 | 1 | -0/+30 |
| | |||||
* | add today status to top of each grid item | Akshay | 2020-07-02 | 1 | -5/+12 |
| | |||||
* | add month sifting commands | Akshay | 2020-07-02 | 1 | -0/+4 |
| | |||||
* | fix focus-on-delete bug | Akshay | 2020-07-02 | 1 | -10/+1 |
| |