From 8f787b9bff5d8f30f224df3a15b4012f3f008750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Fr=C4=85tczak?= Date: Sat, 17 Feb 2024 17:00:23 +0100 Subject: [PATCH] add changelog --- notescriber/changelog.md | 25 +++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 notescriber/changelog.md diff --git a/notescriber/changelog.md b/notescriber/changelog.md new file mode 100644 index 0000000..5dac020 --- /dev/null +++ b/notescriber/changelog.md @@ -0,0 +1,25 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +### Added + +- Filtering of files to be "picked" based on a regex, preventing errors when creating datetime objects + +### Changed + +### Removed + +## [0.0.4] - 2024-02-17 + +### Added + +- Basic project structure, makefile, notescriber module and test files +- Working file picker that triggers a callback function based on certain file names making an appearance in the watched directory +- Working transcription functionality based on the openai-whisper library +- Working notetaker, formatting the transcriptions and pushing them as notes into a nextcloud instance of choice \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index d7e2c3c..5832d12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "notescriber" -version = "0.0.1" +version = "0.0.4" authors = [ { name="Tomasz FrÄ…tczak", email="accidentallycompetent@octopusx.de" }, ]