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
25 changes: 25 additions & 0 deletions docs/release-notes/v1.7.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# v1.7.2

v1.7.2 is a stability patch for updater downloads, file watching, Linux startup, and preview workflows.

## fixed

- Rewrote generated updater manifest URLs to public GitHub release download URLs so update downloads do not depend on unauthenticated REST API quota (#124, #126).
- Kept active-file reloads responsive by using immediate watcher events with JavaScript-side coalescing and stale watcher cleanup (#125, #127).
- Avoided the Tauri AppImage X11 backend default on Wayland sessions and kept the WebKit DMA-BUF fallback for affected Linux systems (#107, #128).

## improved

- Added local-asset HTML rendering to quick previews (#130).
- Documented Arch Linux AUR installation (#131).
- Updated markdown-it to 15.0.0 (#129).

## thanks

- Thanks to @11suixing11 for the updater, watcher, and Linux fixes.
- Thanks to the contributors behind the preview and documentation improvements.

## notes

- Signed updater artifacts remain enabled.
- The release workflow normalizes `latest.json` platform URLs before publishing.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "marka-md",
"private": true,
"version": "1.7.1",
"version": "1.7.2",
"type": "module",
"scripts": {
"dev": "vite",
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
@@ -1,6 +1,6 @@
[package]
name = "marka"
version = "1.7.1"
version = "1.7.2"
description = "marka.md — a local markdown editor for the notes you share with ai"
authors = ["Matt Enarle"]
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
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schema.tauri.app/config/2",
"productName": "marka.md",
"mainBinaryName": "marka.md",
"version": "1.7.1",
"version": "1.7.2",
"identifier": "com.mattenarle.markamd",
"build": {
"beforeDevCommand": "bun run dev",
Expand Down