diff --git a/README.md b/README.md index 3cbdc4a..70ab4b2 100644 --- a/README.md +++ b/README.md @@ -6,46 +6,59 @@ Simple Archiver moves files or an entire folder to an archive folder that you co Archiving can be done via: -- `Simple Archive: Move to archive` command -- `Move to archive` file menu item -- `Move all to archive` multi-file menu item +- `Simple Archive: Move to archive` command +- `Move to archive` file menu item +- `Move all to archive` multi-file menu item Unarchiving can be done via: -- `Move out of archive` file menu item -- `Move all out of archive` multi-file menu item +- `Move out of archive` file menu item +- `Move all out of archive` multi-file menu item ## Planned Improvements -- Archiving a folder that already exists in the archive merges the contents -- Archiving a file that already exists in the archive gives the option to rename +- Archiving a folder that already exists in the archive merges the contents +- Archiving a file that already exists in the archive gives the option to rename + +## Contributing + +Contributions to this repo are welcome, **but**, please reach out by submitting an issue before submitting a massive PR for a feature that I might not be interested in maintaining. + +### AI Contributions + +AI-assisted contributions will be considered with discretion. Obviously vibe-coded contributions will receive little of my time and less of my patience. + +### Contributors + +- [nicholaslck](https://github.com/nicholaslck) +- [ggfevans](https://github.com/ggfevans) ## Release Notes +### v0.5.2 + +- **Fix**: Resolve issue when archiving files from folders with leading 0s. Thanks [ggfevans](https://github.com/ggfevans)! + ### v0.5.1 -- **New**: Add `Move out of archive` functionality to files/folders that exist in the archive. Items will be moved out of the archive into their original location (issue #5). Thank you to [nicholaslck](https://github.com/nicholaslck)! +- **New**: Add `Move out of archive` functionality to files/folders that exist in the archive. Items will be moved out of the archive into their original location (issue #5). Thank you to [nicholaslck](https://github.com/nicholaslck)! ### v0.4.0 -- **New**: Add "replace" option when attempting to archive a file or folder when an item with the same name and path already exists in the archive. +- **New**: Add "replace" option when attempting to archive a file or folder when an item with the same name and path already exists in the archive. ### v0.3.1 -- **Fix**: Unable to archive files/folders in the vault root +- **Fix**: Unable to archive files/folders in the vault root ### v0.3.1 -- **New**: Validate archive folder name setting before saving +- **New**: Validate archive folder name setting before saving ### v0.2.0 -- **New**: Allow multiple files to be archived +- **New**: Allow multiple files to be archived ### v0.1.0 -- **New**: Basic archive functionality - -## Contributors - -- [nicholaslck](https://github.com/nicholaslck) +- **New**: Basic archive functionality diff --git a/manifest.json b/manifest.json index 85ce9f8..00f3ec5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "simple-archiver", "name": "Simple Archiver", - "version": "0.5.1", + "version": "0.5.2", "minAppVersion": "1.8.0", "description": "Move old, stinky notes and folders to an archive, where they belong.", "author": "Mike Farr", diff --git a/package-lock.json b/package-lock.json index 9b33527..570b2f6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "simple-archiver", - "version": "0.5.1", + "version": "0.5.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "simple-archiver", - "version": "0.5.1", + "version": "0.5.2", "license": "GPL-3.0-only", "devDependencies": { "@types/node": "^16.11.6", diff --git a/package.json b/package.json index cda0496..50aef0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-archiver", - "version": "0.5.1", + "version": "0.5.2", "description": "Send old, stinky notes to the archive, where they belong.", "main": "main.js", "scripts": {