From 2d0e15754db2a1d298753a173251c530f076433f Mon Sep 17 00:00:00 2001 From: Mike Farr Date: Sun, 29 Jun 2025 06:44:31 -0400 Subject: [PATCH] Version 0.5.0 --- README.md | 16 ++++++++++++++-- manifest.json | 2 +- package-lock.json | 8 ++++---- package.json | 2 +- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 23a4df3..a472a92 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ > _Move old, stinky notes and folders to an archive, where they belong!_ -Simple Archiver moves files or an entire folder to an archive folder that you configure. The items are moved to the same relative path in the archive folder. +Simple Archiver moves files or an entire folder to an archive folder that you configure. The items are moved to the same relative path in the archive folder. Conversely, items that have been archived can be moved out of the archive to their original location. Archiving can be done via: @@ -10,14 +10,22 @@ Archiving can be done via: - `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 + ## 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 -- Unarchive a file or folder ## Release Notes +### v0.5.0 + +- **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. @@ -37,3 +45,7 @@ Archiving can be done via: ### v0.1.0 - **New**: Basic archive functionality + +## Contributors + +- [nicholaslck](https://github.com/nicholaslck) diff --git a/manifest.json b/manifest.json index ed9315d..497436a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "simple-archiver", "name": "Simple Archiver", - "version": "0.4.0", + "version": "0.5.0", "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 f77e62a..237a389 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "obsidian-simple-archiver", - "version": "0.0.1", + "name": "simple-archiver", + "version": "0.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "obsidian-simple-archiver", - "version": "0.0.1", + "name": "simple-archiver", + "version": "0.5.0", "license": "GPL-3.0-only", "devDependencies": { "@types/node": "^16.11.6", diff --git a/package.json b/package.json index 9abb1d9..b6bf0a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-archiver", - "version": "0.4.0", + "version": "0.5.0", "description": "Send old, stinky notes to the archive, where they belong.", "main": "main.js", "scripts": {