Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | install target: check for clinte.json before copying | Ben Morrison | 2020-06-16 | 1 | -6/+1 |
| | | | | removed upgrade target since it's now redundant | ||||
* | removed tag checkout when building | Ben Morrison | 2020-06-09 | 1 | -6/+3 |
| | |||||
* | make test is now single-threaded | Ben Morrison | 2020-05-28 | 1 | -1/+1 |
| | |||||
* | extensive rewrite to use json for storage: | Ben Morrison | 2020-05-28 | 1 | -4/+19 |
| | | | | | | | | | | | | | | 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. | ||||
* | updated makefile to use printf instead of echo | Ben Morrison | 2020-05-26 | 1 | -33/+17 |
| | |||||
* | leave db intact on uninstall | Ben Morrison | 2020-01-20 | 1 | -1/+0 |
| | |||||
* | changed db perms | Ben Morrison | 2019-09-04 | 1 | -1/+2 |
| | |||||
* | fixed db dir perms | Ben Morrison | 2019-08-29 | 1 | -2/+1 |
| | |||||
* | tests in makefile, cleaned db test | Ben Morrison | 2019-08-28 | 1 | -0/+9 |
| | |||||
* | added makefile | Ben Morrison | 2019-08-28 | 1 | -0/+55 |