Version 0.5.2

This commit is contained in:
Mike Farr 2026-02-28 08:25:37 -05:00
parent aac53c74a3
commit 7fd371c2e3
No known key found for this signature in database
4 changed files with 34 additions and 21 deletions

View file

@ -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

View file

@ -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",

4
package-lock.json generated
View file

@ -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",

View file

@ -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": {