From 01dcaf882af3ed35d8847a51401b3e183d7b7baf Mon Sep 17 00:00:00 2001 From: adminoo Date: Tue, 3 Feb 2026 10:19:05 +0100 Subject: [PATCH] feat: VERSION bumb --- README.md | 7 +++++++ VERSION | 1 + internal/web/templates/noteList.tmpl | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 VERSION diff --git a/README.md b/README.md index 55eb4b5..c24d762 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,14 @@ # donniemarko +Version: 0.1.0 + Knowledge Management System over markdown notes. +## Release 0.1.0 +- Core web UI for browsing notes +- Tagging system (add/remove, filter, search) +- SQLite-backed storage with tests + `donniemarko` works as a read-only (for now) interface over a set of markdown notes. Its goals are: - Ensuring notes intented to be published online are correctly formatted - Rendering the notes in a printable-friendly format, taking advantage of HTML/CSS styling diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..6e8bf73 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.1.0 diff --git a/internal/web/templates/noteList.tmpl b/internal/web/templates/noteList.tmpl index 36bfedf..bc1b086 100644 --- a/internal/web/templates/noteList.tmpl +++ b/internal/web/templates/noteList.tmpl @@ -3,7 +3,7 @@

Donnie Marko

- +
@@ -22,7 +22,7 @@ {{ end }} {{ define "renderSearch" }} -{{ if ne .SearchTerm "" }}

Matching results for query '{{ .SearchTerm }}'

{{ end }} +{{ if ne .SearchTerm "" }}

Matching results for query '{{ .SearchTerm }}' (notes or tags)

{{ end }} {{ if ne .TagFilter "" }}

Filtered by tag '{{ .TagFilter }}'

{{ end }}
    {{ range .Notes }}