Finalize for v1.2.0

This commit is contained in:
Grol Grol 2025-08-08 13:15:01 +03:00
parent 9755034870
commit e701cd6828
4 changed files with 7 additions and 5 deletions

View file

@ -4,12 +4,14 @@ nav_order: 3
--- ---
# Changelog # Changelog
## [1.2.0] - 2025-XX-XX ## [1.2.0] - 2025-08-08
### Added ### Added
- Added Feature: **Logging Toggle:** Add a setting to enable/disable detailed logging for debugging purposes. - Added Feature: **Logging Toggle:** Add a setting to enable/disable detailed logging for debugging purposes.
- Added Feature **File/Folder Scope Filter:** Implement settings to include or exclude specific files or folders where the plugin should be active. - Added Feature **File/Folder Scope Filter:** Implement settings to include or exclude specific files or folders where the plugin should be active.
- Added Feature: **Support Non-Checkbox Nodes:** Added support for list-item and plain text inside the checkbox tree - Added Feature: **Support Non-Checkbox Nodes:** Added support for list-item and plain text inside the checkbox tree
- Added [Integration with Tasks plugin]("Integration with Tasks plugin.md") - Added [Integration with Tasks plugin]("Integration with Tasks plugin.md")
### Changed
- Transition to tree structure
## [1.1.0] - 2025-05-05 ## [1.1.0] - 2025-05-05
### Added ### Added

View file

@ -1,7 +1,7 @@
{ {
"id": "checkbox-sync", "id": "checkbox-sync",
"name": "Checkbox Sync", "name": "Checkbox Sync",
"version": "1.1.0", "version": "1.2.0",
"minAppVersion": "0.12.0", "minAppVersion": "0.12.0",
"description": "Automatically checks the parent checkbox if all child checkboxes are completed, and unchecks it otherwise.", "description": "Automatically checks the parent checkbox if all child checkboxes are completed, and unchecks it otherwise.",
"author": "Grol", "author": "Grol",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "checkbox-sync", "name": "checkbox-sync",
"version": "1.0.0", "version": "1.2.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "checkbox-sync", "name": "checkbox-sync",
"version": "1.0.0", "version": "1.2.0",
"license": "0BSD", "license": "0BSD",
"dependencies": { "dependencies": {
"async-mutex": "^0.5.0", "async-mutex": "^0.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "checkbox-sync", "name": "checkbox-sync",
"version": "1.0.0", "version": "1.2.0",
"description": "Automatically checks the parent checkbox if all child checkboxes are completed, and unchecks it otherwise", "description": "Automatically checks the parent checkbox if all child checkboxes are completed, and unchecks it otherwise",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {