feat: VERSION bumb

This commit is contained in:
2026-02-03 10:19:05 +01:00
parent 229223f77a
commit 01dcaf882a
3 changed files with 10 additions and 2 deletions

View File

@ -1,7 +1,14 @@
# donniemarko # donniemarko
Version: 0.1.0
Knowledge Management System over markdown notes. 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: `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 - Ensuring notes intented to be published online are correctly formatted
- Rendering the notes in a printable-friendly format, taking advantage of HTML/CSS styling - Rendering the notes in a printable-friendly format, taking advantage of HTML/CSS styling

1
VERSION Normal file
View File

@ -0,0 +1 @@
0.1.0

View File

@ -3,7 +3,7 @@
<header> <header>
<h1 class="main-logo"><a href="/">Donnie Marko</a></h1> <h1 class="main-logo"><a href="/">Donnie Marko</a></h1>
<form method="GET" action="/" class="search-form"> <form method="GET" action="/" class="search-form">
<input type="text" name="search" class="search-bar" placeholder="Search... (empty query to clear)"> <input type="text" name="search" class="search-bar" placeholder="Search notes or tags... (empty query to clear)">
<input type="submit" value="ok"/> <input type="submit" value="ok"/>
</form> </form>
<form method="GET" action="/"> <form method="GET" action="/">
@ -22,7 +22,7 @@
{{ end }} {{ end }}
{{ define "renderSearch" }} {{ define "renderSearch" }}
{{ if ne .SearchTerm "" }}<h2>Matching results for query '{{ .SearchTerm }}'</h2>{{ end }} {{ if ne .SearchTerm "" }}<h2>Matching results for query '{{ .SearchTerm }}' (notes or tags)</h2>{{ end }}
{{ if ne .TagFilter "" }}<h2>Filtered by tag '{{ .TagFilter }}'</h2>{{ end }} {{ if ne .TagFilter "" }}<h2>Filtered by tag '{{ .TagFilter }}'</h2>{{ end }}
<ul class="search-results"> <ul class="search-results">
{{ range .Notes }} {{ range .Notes }}