diff --git a/README.md b/README.md index 26b1234..f036d79 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Curious how it works in practice? In this short clip, you’ll see how to add a 3. From the unpacked archive, move `scripts/install/env-example/install-config.env` into the root of the plugin folder (next to `README.md`). 4. Open `install-config.env` and set: - `DEST_DIR` — absolute path to your vault’s plugin folder, e.g. `/path/to/YourVault/.obsidian/plugins/daily-notes-sorter` - - `RELEASE_TAG` — the release tag you want to install (e.g. `1.0.0`) + - `RELEASE_TAG` — the release tag you want to install (e.g. `1.0.1`) 5. Run the installer for your platform: - macOS: `bash scripts/install/install.sh` (make executable if needed: `chmod +x scripts/install/install.sh scripts/install/install.command`) - Windows: `scripts\install\install.bat` diff --git a/manifest.json b/manifest.json index 6b0a530..6c43f73 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "daily-notes-sorter", "name": "Daily notes sorter", - "version": "1.0.0", + "version": "1.0.1", "minAppVersion": "1.1.0", "description": "Automatically sort daily notes and files by date in the file explorer. Supports multiple date formats and flexible folder configuration.", "author": "Nick", diff --git a/package-lock.json b/package-lock.json index cd43af4..103ebc7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "daily-notes-sorter", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "daily-notes-sorter", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "archiver": "^7.0.1", diff --git a/package.json b/package.json index 5cb6a93..323091e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "daily-notes-sorter", - "version": "1.0.0", + "version": "1.0.1", "description": "Obsidian plugin for automatically sorting daily notes by date in the file explorer", "main": "main.js", "scripts": { diff --git a/scripts/install/download/download.bat b/scripts/install/download/download.bat index aff1b32..e4fd010 100644 --- a/scripts/install/download/download.bat +++ b/scripts/install/download/download.bat @@ -11,7 +11,7 @@ echo [info] Config: %CONFIG_FILE% if not exist "%CONFIG_FILE%" ( echo [error] Config file not found: %CONFIG_FILE% echo Create it with lines like: - echo RELEASE_TAG=1.0.0 + echo RELEASE_TAG=1.0.1 echo DEST_DIR=C:\path\to\Obsidian\.obsidian\plugins\daily-notes-sorter exit /b 1 ) diff --git a/scripts/install/download/download.sh b/scripts/install/download/download.sh index 3c064c3..114afff 100755 --- a/scripts/install/download/download.sh +++ b/scripts/install/download/download.sh @@ -12,7 +12,7 @@ echo "[info] Config: $CONFIG_FILE" if [[ ! -f "$CONFIG_FILE" ]]; then echo "[error] Config file not found: $CONFIG_FILE" echo "Create it with lines like:" - echo " RELEASE_TAG=1.0.0" + echo " RELEASE_TAG=1.0.1" echo " DEST_DIR=/path/to/Obsidian/.obsidian/plugins/daily-notes-sorter" exit 1 fi diff --git a/scripts/install/env-example/install-config.env b/scripts/install/env-example/install-config.env index f82c6c3..cb9c5fa 100644 --- a/scripts/install/env-example/install-config.env +++ b/scripts/install/env-example/install-config.env @@ -1,2 +1,2 @@ DEST_DIR=/Users/notes/.obsidian/plugins/daily-notes-sorter -RELEASE_TAG=1.0.0 +RELEASE_TAG=1.0.1 diff --git a/src/README.md b/src/README.md index 186b0ba..cc4f79a 100644 --- a/src/README.md +++ b/src/README.md @@ -267,7 +267,7 @@ Configuration: # Required for any install DEST_DIR=/absolute/path/to/YourVault/.obsidian/plugins/daily-notes-sorter # Required only for download-and-install mode - RELEASE_TAG=1.0.0 + RELEASE_TAG=1.0.1 ``` Usage: diff --git a/versions.json b/versions.json index 082dfb1..23033fc 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,4 @@ { - "1.0.0": "1.1.0" + "1.0.0": "1.1.0", + "1.0.1": "1.1.0" }