diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e3bf140 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [1.0.5] - 2025-11-21 +### Added +- Include folder subfolders as hierarchical `Level1..LevelN` CSV columns. Folder segments under the configured `Customers` folder are now emitted as Level columns before the project filename and markdown headers. +- README examples updated to use generic placeholders (``, ``, ``, ``). + +### Changed +- CSV header format changed to: `CustomerName,Level1,Level2,...,Task` (project filename moved into `Level` columns to maintain consistent hierarchical ordering). +- CSV writer now uses a canonical `levels` array on parsed tasks which contains: folder segments, project filename, document headers, and parent task text. + +### Notes +- The plugin bundle (`main.js`) should be rebuilt after the version bump. Run `npm run build` locally before publishing. +- If you distribute the plugin via GitHub Releases, create a release tagged `v1.0.5` and attach the rebuilt `main.js`, `manifest.json`, and `styles.css`. + +--- + +## Previous releases +- See repository history for older versions. diff --git a/manifest.json b/manifest.json index c89f02d..0179325 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "task-export-to-csv", "name": "Task Export Tool", - "version": "1.0.4", + "version": "1.0.5", "minAppVersion": "1.0.0", "description": "Export outstanding tasks to CSV for time tracking integration (e.g. ManicTime).", "author": "Raoul Jacobs", diff --git a/package.json b/package.json index 93ccdff..270e77a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-task-export-plugin", - "version": "1.0.4", + "version": "1.0.5", "description": "Export outstanding tasks from Obsidian vault to CSV for ManicTime integration", "main": "main.js", "scripts": {