bump version, docker-compose update
This commit is contained in:
parent
0d7f36ca9b
commit
f007bb7cdd
6 changed files with 21 additions and 4 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
|
@ -2,6 +2,22 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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)
|
## [0.7.2] - Orm (2026-03-29)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ services:
|
||||||
- OBSIDIAN_VERSION=1.12.4
|
- OBSIDIAN_VERSION=1.12.4
|
||||||
volumes:
|
volumes:
|
||||||
- ./vaults:/vaults
|
- ./vaults:/vaults
|
||||||
|
- ./data:/app/data
|
||||||
- obsidian-app:/app/obsidian-app
|
- obsidian-app:/app/obsidian-app
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ignis",
|
"name": "ignis",
|
||||||
"version": "0.7.2",
|
"version": "0.7.4",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "An Electron shim and server bridge for running Obsidian in a browser.",
|
"description": "An Electron shim and server bridge for running Obsidian in a browser.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "ignis-bridge",
|
"id": "ignis-bridge",
|
||||||
"name": "Ignis Bridge",
|
"name": "Ignis Bridge",
|
||||||
"version": "0.7.2",
|
"version": "0.7.4",
|
||||||
"minAppVersion": "1.12.4",
|
"minAppVersion": "1.12.4",
|
||||||
"description": "Additional Ignis specific functionality and ignis plugin management.",
|
"description": "Additional Ignis specific functionality and ignis plugin management.",
|
||||||
"author": "Nystik",
|
"author": "Nystik",
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ module.exports = {
|
||||||
id: "headless-sync",
|
id: "headless-sync",
|
||||||
name: "Headless Sync",
|
name: "Headless Sync",
|
||||||
description: "Server-side vault sync via obsidian-headless CLI",
|
description: "Server-side vault sync via obsidian-headless CLI",
|
||||||
version: "0.1.0",
|
version: "0.3.0",
|
||||||
//TODO: add server plugin manifest
|
//TODO: add server plugin manifest
|
||||||
|
|
||||||
obsidianPlugin: path.join(__dirname, "plugin"),
|
obsidianPlugin: path.join(__dirname, "plugin"),
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "ignis-headless-sync",
|
"id": "ignis-headless-sync",
|
||||||
"name": "Ignis Headless Sync",
|
"name": "Ignis Headless Sync",
|
||||||
"version": "0.2.0",
|
"version": "0.3.0",
|
||||||
"minAppVersion": "1.12.4",
|
"minAppVersion": "1.12.4",
|
||||||
"description": "Client-side companion for server-side Obsidian Sync",
|
"description": "Client-side companion for server-side Obsidian Sync",
|
||||||
"author": "Ignis",
|
"author": "Ignis",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue