From 4cc9a7bcf490e7a5e89b3049e90f90cc0f5abd16 Mon Sep 17 00:00:00 2001 From: Oliver Jakoubek Date: Wed, 14 Jan 2026 19:07:59 +0100 Subject: [PATCH] =?UTF-8?q?docs(readme):=20Badges,=20Autor=20und=20Contrib?= =?UTF-8?q?uting-Sektion=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Badges für GitHub-Mirror, Go Reference, Go Report Card und Lizenz ergänzt - Veraltete DueDate-Konstanten (DueNextWeek, DueNextMonth) aus Beispielen entfernt - DueString-Beispiel korrigiert (ohne ^-Präfix) - Contributing-Sektion und Autor-Information am Ende hinzugefügt --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5541847..b11740f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # checkvist-api +[![Mirror on GitHub](https://img.shields.io/badge/mirror-GitHub-blue)](https://github.com/jakoubek/checkvist-api) +[![Go Reference](https://pkg.go.dev/badge/code.beautifulmachines.dev/jakoubek/checkvist-api.svg)](https://pkg.go.dev/code.beautifulmachines.dev/jakoubek/checkvist-api) +[![Go Report Card](https://goreportcard.com/badge/code.beautifulmachines.dev/jakoubek/checkvist-api)](https://goreportcard.com/report/code.beautifulmachines.dev/jakoubek/checkvist-api) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) + A type-safe, idiomatic Go client library for the [Checkvist](https://checkvist.com/) API. ## Installation @@ -133,8 +138,6 @@ The library provides convenient due date helpers: // Predefined constants checkvist.DueToday checkvist.DueTomorrow -checkvist.DueNextWeek -checkvist.DueNextMonth // From time.Time checkvist.DueAt(time.Now().AddDate(0, 0, 7)) @@ -143,7 +146,7 @@ checkvist.DueAt(time.Now().AddDate(0, 0, 7)) checkvist.DueInDays(5) // Raw smart syntax -checkvist.DueString("^friday") +checkvist.DueString("friday") ``` ## Error Handling @@ -233,3 +236,11 @@ Full API documentation is available on [pkg.go.dev](https://pkg.go.dev/code.beau ## License MIT License - see [LICENSE](LICENSE) file for details. + +## Contributing + +Contributions are welcome! Please feel free to submit issues or pull requests. + +## Author + +Oliver Jakoubek ([info@jakoubek.net](mailto:info@jakoubek.net))