Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "instantnotes",
"version": "0.6.2",
"version": "0.7.0",
"description": "InstantNotes — instant capture, organized knowledge",
"type": "module",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading