Skip to content
Open
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
5 changes: 5 additions & 0 deletions QuickMD/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to QuickMD will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed
- Table of Contents and Recent Documents moved from the Edit menu to View (shortcuts unchanged).

## [1.9.0] - 2026-08-17

A "native layout" release: the document body was rebuilt on an AppKit-backed virtualized list with exact, pre-measured heights, which retires the last SwiftUI lazy-stack estimation and makes scrolling, jumping and reading-position preservation exact for every document size. On top of that: Reading Mode, definition lists, a zoom indicator, typeset math in PDF/print, and the hover-pill fix contributed by [@Coriou](https://github.com/Coriou) (#20). Thank you!
Expand Down
4 changes: 2 additions & 2 deletions QuickMD/QuickMD/QuickMDApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ struct QuickMDApp: App {
}
CommandGroup(replacing: .textEditing) {
FindMenuCommand()
ToggleToCCommand()
ToggleDocumentListCommand()
Divider()
CopyMarkdownCommand()
}
CommandGroup(after: .toolbar) {
ZoomCommands()
ToggleToCCommand()
ToggleDocumentListCommand()
ReadingModeCommand()
}
CommandGroup(replacing: .help) {
Expand Down
Loading