aboutsummaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* fix(rest-api): move GET /tag/{tags} to GET /tags/{tags}HEADv0.2.0masterFederico Igne2022-08-241-4/+4
|
* feat(cli): add customizable parameters through CLIFederico Igne2022-08-241-15/+104
|
* feat(GET /tag/{tags}): reenable querying by tag(s)Federico Igne2022-08-221-11/+58
| | | | | This reintroduces the feature that allows to query the database by tag(s); this time the feature is implemented using the `LIKE` operator of SQL.
* refactor: rework structureFederico Igne2022-08-061-119/+89
|
* feat(sqlite): move from file to SQLite backendFederico Igne2022-08-051-57/+192
|
* feat(GET /tag/{tags}): add ability to retrieve notes by tag(s)Federico Igne2022-07-291-5/+36
| | | | | Placeholder `{tags}` is substituted with one or more tags separated by a plus sign `+`.
* feat(POST /notes): add ability to add new notes.Federico Igne2022-07-271-21/+96
| | | | | Notes are stored in a simple json file for now. Will implement a proper backend later on (most likely SQLite).
* feat(GET /notes): add first implementation for notes retrievalFederico Igne2022-07-261-0/+196