Files
ignis/CHANGELOG.md

116 lines
3.5 KiB
Markdown
Raw Normal View History

2026-03-20 23:50:00 +01:00
# Changelog
All notable changes to this project will be documented in this file.
2026-03-29 20:02:22 +02:00
## [0.7.2] - Orm (2026-03-29)
### Added
- utils shim
### Fixed
- right sidebar toggle with css overrides
- clipboard functionality
2026-03-29 17:53:07 +02:00
## [0.7.1] - Orm (2026-03-29)
### Added
- Server plugin system
- obsidian-headless integration via server plugin
2026-03-25 21:23:59 +01:00
## [0.6.4] - Slifer (2026-03-24)
### Added
- Context menu items for downloading files and folders
2026-03-24 21:54:53 +01:00
## [0.6.3] - Slifer (2026-03-24)
### Changed
- Use stack fingerprinting to identify caller context for file staging registry
2026-03-24 02:42:31 +01:00
## [0.6.2] - Slifer (2026-03-24)
### Added
- File watcher system with WebSocket-based live sync for external vault changes
- Real-time detection of file create, modify, delete, and rename operations
- Echo guard to suppress events from local operations (prevents feedback loops)
- Automatic reconnection with exponential backoff for WebSocket client
## [0.6.1] - Slifer (2026-03-24)
### Added
- `fetch()` shim that proxies cross-origin requests through `/api/proxy` to bypass CORS restrictions
- Automatic `Origin: app://obsidian.md` header injection for cross-origin requests to match Obsidian desktop app
- User-Agent forwarding from browser to proxy for cross-origin requests
### Fixed
- Obsidian Sync API authentication now works in browser (was blocked by CORS)
- Proxy response headers cleaned to exclude hop-by-hop headers (`content-encoding`, `transfer-encoding`, `content-length`, `connection`)
2026-03-23 23:22:14 +01:00
## [0.6.0] - Slifer (2026-03-23)
### Added
- `zlib` shim using `pako` library for compression/decompression operations (deflate, inflate, gzip, gunzip, etc.)
- File descriptor operations: `fs.open()`, `fs.read()`, `fs.close()`, `fs.fstat()` and sync variants
- `fs.promises.open()` returning FileHandle objects with `stat()`, `read()`, `close()` methods
- `showOpenDialog` electron dialog shim with browser file picker and vault upload
- `showOpenDialogSync` hacky workaround using file staging registry and two-step upload flow
- Enhanced `Buffer` shim with `alloc()`, `allocUnsafe()`, `byteLength()`, and `isEncoding()` methods
### Fixed
- `MessageDialog` modal dismiss error when confirm button clicked
- Dialog shim modal event ordering to prevent null reference errors
## [0.5.0] - Scatha (2026-03-22)
2026-03-23 13:04:35 +01:00
### Added
- Compression middleware (gzip/brotli) for API responses to reduce bandwidth
- Plugin installation prompt system with per-vault trust flags
- Versioning system with cache-busting query parameters on script URLs
- Option to install ignis-bridge plugin to vaults imported at runtime
### Changed
- Auto-creation of default vault now requires `AUTO_CREATE_DEFAULT=true` environment variable
- Script URLs (`ignis-ui.js`, `shim-loader.js`) now include version query params for automatic cache invalidation
- Cache headers: versioned assets cached for 1 year, non-versioned for 5 minutes
### Fixed
- Vault manager not displaying when no vaults exist
- `window.close()` now shows vault manager when no vault is configured
### Removed
- Unused `VAULT_PATH` environment variable fallback logic
2026-03-23 23:22:14 +01:00
## [0.4.0] - Gostir (2026-03-18)
2026-03-20 23:50:00 +01:00
### Added
- Vault management: create, rename, delete vaults
- Last active vault persistence: remembers which vault was open
- Plugin trust preservation: keeps plugin trust status when renaming vaults
### Changed
- Refactored vault operations into shared service
### Fixed
- Issues with dialogs and vault rename operations
---
_Changelog tracking started at version 0.4.0. For earlier versions, please refer to commit history._