Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bumped version in Cargo.toml | Ben Morrison | 2020-05-28 | 1 | -1/+1 |
| | |||||
* | extensive rewrite to use json for storage: | Ben Morrison | 2020-05-28 | 1 | -1/+3 |
| | | | | | | | | | | | | | | sqlite3 requires the directory where the database resides to be writeable by the user. This presents a problem on multiuser UNIX systems where they may want to limit areas where users have write access. This rewrite totally scraps the sqlite3 database in favor of a pretty simple json file consisting of an array of posts. flock(2) locking is used to synchronize access to the file and make sure two clients aren't trying to write to it at once. The locking is fairly granular right now, but later I may change it to using a single lock for the duration of execution since race conditions are *possible*, if unlikely for the purposes of clinte's intended use. | ||||
* | version bump v1.0.0 | Ben Morrison | 2020-05-27 | 1 | -1/+1 |
| | |||||
* | updated travis cfg; setup Cargo.toml for crates.io v0.4.4 | Ben Morrison | 2020-05-26 | 1 | -2/+11 |
| | | | | | | | | Added pertinent fields to Cargo.toml to publish on crates.io and lib.rs Updated .travis.yml - using bionic for build, tarpaulin binary can now be pulled rather than built in-place. | ||||
* | version bump | Ben Morrison | 2020-01-20 | 1 | -1/+1 |
| | |||||
* | version bump | Ben Morrison | 2020-01-20 | 1 | -1/+1 |
| | |||||
* | updated deps + added release profile to Cargo.toml | Ben Morrison | 2020-01-20 | 1 | -1/+10 |
| | |||||
* | fixed subcommands v0.4.1 | Ben Morrison | 2019-09-04 | 1 | -1/+1 |
| | |||||
* | now opens $EDITOR to write post body | Ben Morrison | 2019-09-04 | 1 | -1/+1 |
| | |||||
* | logging reflects executing username v0.3.4 | Ben Morrison | 2019-09-04 | 1 | -0/+1 |
| | |||||
* | moved some functionality to module, added tests | Ben Morrison | 2019-08-30 | 1 | -1/+1 |
| | |||||
* | moved display to 15 posts v0.3.2 | Ben Morrison | 2019-08-30 | 1 | -1/+1 |
| | |||||
* | ensure submitted posts are utf8 | Ben Morrison | 2019-08-30 | 1 | -1/+1 |
| | |||||
* | enabled deletion of posts v0.3.0 | Ben Morrison | 2019-08-30 | 1 | -1/+1 |
| | |||||
* | added functionality to update posts v0.2.0 | Ben Morrison | 2019-08-30 | 1 | -1/+1 |
| | |||||
* | version bump v0.1.2 | Ben Morrison | 2019-08-30 | 1 | -1/+1 |
| | |||||
* | version bump v0.1.1 | Ben Morrison | 2019-08-30 | 1 | -1/+1 |
| | |||||
* | enabled hints for cli args, changed db location | Ben Morrison | 2019-08-28 | 1 | -2/+6 |
| | |||||
* | finished posting and display | Ben Morrison | 2019-08-27 | 1 | -2/+2 |
| | |||||
* | added subtype to db::Cmd. Fleshed out cli args. | Ben Morrison | 2019-08-27 | 1 | -0/+1 |
| | |||||
* | db connected, logging up | Ben Morrison | 2019-08-27 | 1 | -1/+5 |
| | |||||
* | fleshing out types | Ben Morrison | 2019-08-27 | 1 | -0/+1 |
| | |||||
* | init | Ben Morrison | 2019-08-27 | 1 | -0/+9 |