chore: release 1.0.1

Bump plugin and npm package version; add 1.0.1 to versions.json.
Update install script examples and docs to use RELEASE_TAG 1.0.1.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Nick 2026-05-15 11:50:19 +02:00
parent 57620c25b3
commit 0f5cb2d49c
9 changed files with 11 additions and 10 deletions

View file

@ -66,7 +66,7 @@ Curious how it works in practice? In this short clip, youll 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 vaults 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`

View file

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

4
package-lock.json generated
View file

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

View file

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

View file

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

View file

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

View file

@ -1,2 +1,2 @@
DEST_DIR=/Users/notes/.obsidian/plugins/daily-notes-sorter
RELEASE_TAG=1.0.0
RELEASE_TAG=1.0.1

View file

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

View file

@ -1,3 +1,4 @@
{
"1.0.0": "1.1.0"
"1.0.0": "1.1.0",
"1.0.1": "1.1.0"
}