diff --git a/CHANGELOG.md b/CHANGELOG.md index c2fe537..9b3888f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,26 @@ uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.7.0] - 2026-07-06 + +### Added +- Windows and Linux support: InstantNotes now ships an installer for Windows + (x64) and an AppImage for Linux (x64) alongside the macOS build, all with + in-app updates. On Windows and Linux the capture panel is summoned with + `Ctrl+Shift+Space`, Settings and Quit live in the File menu, and shortcut + labels show `Ctrl+` combinations instead of mac glyphs. +- Settings is now a small wiki: a landing grid of category cards opening + focused sub-pages with a breadcrumb back, including the new Contexting page. +- Contexting: a template that shapes what "Copy note as context" hands to + other tools and AI models, with a live preview. +- List editing: Tab and Shift+Tab nest and un-nest list items in the editor. +- The native window titlebar follows the in-app light or dark theme instead of + the launch-time system setting. + +### Fixed +- Command palette rows keep the action label readable when a note title is + long. + ## [0.6.2] - 2026-06-17 ### Added diff --git a/package.json b/package.json index b6b5335..c34b7ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "instantnotes", - "version": "0.6.2", + "version": "0.7.0", "description": "InstantNotes — instant capture, organized knowledge", "type": "module", "engines": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index b4dfbc9..b7cbe08 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1856,7 +1856,7 @@ dependencies = [ [[package]] name = "instantnotes" -version = "0.6.2" +version = "0.7.0" dependencies = [ "instantnotes-core", "serde", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index af375b7..333d1a8 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "instantnotes" -version = "0.6.2" +version = "0.7.0" description = "InstantNotes — instant capture, organized knowledge" edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9daa115..316583e 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "InstantNotes", - "version": "0.6.2", + "version": "0.7.0", "identifier": "com.instantnotes.app", "build": { "beforeDevCommand": "npm run dev",