From f007bb7cdd7252aa54299bae785ec9b7c3e014ec Mon Sep 17 00:00:00 2001 From: Nystik <236107-Nystik@users.noreply.gitlab.com> Date: Mon, 30 Mar 2026 22:23:42 +0200 Subject: [PATCH] bump version, docker-compose update --- CHANGELOG.md | 16 ++++++++++++++++ docker-compose.yml | 1 + package.json | 2 +- plugin/manifest.json | 2 +- server/plugins/headless-sync/index.js | 2 +- .../plugins/headless-sync/plugin/manifest.json | 2 +- 6 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 388a252..3401a91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. +## [0.7.4] - Orm (2026-03-30) + +### Added + +- guards against running Obsidian sync and headless sync simultaneously + +### Changed + +- improved status indicator for headless sync + +## [0.7.3] - Orm (2026-03-30) + +### Added + +- status bar indicator for headless sync + ## [0.7.2] - Orm (2026-03-29) ### Added diff --git a/docker-compose.yml b/docker-compose.yml index feccb34..a20207b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,6 +7,7 @@ services: - OBSIDIAN_VERSION=1.12.4 volumes: - ./vaults:/vaults + - ./data:/app/data - obsidian-app:/app/obsidian-app restart: unless-stopped diff --git a/package.json b/package.json index 1db8baf..2e0f8c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ignis", - "version": "0.7.2", + "version": "0.7.4", "private": true, "description": "An Electron shim and server bridge for running Obsidian in a browser.", "scripts": { diff --git a/plugin/manifest.json b/plugin/manifest.json index dd1ec3f..6c16386 100644 --- a/plugin/manifest.json +++ b/plugin/manifest.json @@ -1,7 +1,7 @@ { "id": "ignis-bridge", "name": "Ignis Bridge", - "version": "0.7.2", + "version": "0.7.4", "minAppVersion": "1.12.4", "description": "Additional Ignis specific functionality and ignis plugin management.", "author": "Nystik", diff --git a/server/plugins/headless-sync/index.js b/server/plugins/headless-sync/index.js index e601a0d..55b45a0 100644 --- a/server/plugins/headless-sync/index.js +++ b/server/plugins/headless-sync/index.js @@ -8,7 +8,7 @@ module.exports = { id: "headless-sync", name: "Headless Sync", description: "Server-side vault sync via obsidian-headless CLI", - version: "0.1.0", + version: "0.3.0", //TODO: add server plugin manifest obsidianPlugin: path.join(__dirname, "plugin"), diff --git a/server/plugins/headless-sync/plugin/manifest.json b/server/plugins/headless-sync/plugin/manifest.json index 5809e05..60ab4c4 100644 --- a/server/plugins/headless-sync/plugin/manifest.json +++ b/server/plugins/headless-sync/plugin/manifest.json @@ -1,7 +1,7 @@ { "id": "ignis-headless-sync", "name": "Ignis Headless Sync", - "version": "0.2.0", + "version": "0.3.0", "minAppVersion": "1.12.4", "description": "Client-side companion for server-side Obsidian Sync", "author": "Ignis",