mirror of
https://github.com/mfarr/obsidian-archive.git
synced 2026-07-22 05:41:33 +00:00
Version 0.5.0
This commit is contained in:
parent
1f3fa3a026
commit
2d0e15754d
4 changed files with 20 additions and 8 deletions
16
README.md
16
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)
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
8
package-lock.json
generated
8
package-lock.json
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue