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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to Lumo are documented here.
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]
## [0.2.0] - 2026-06-15

### Added

Expand All @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Markdown tables in results now render as a bordered grid instead of raw
`| --- |` pipe-and-dash text. All other output stays as plain, selectable,
copyable text.
- The translation window now grows to fit the result — up to 85% of the
screen — and only scrolls past that, so short answers no longer leave empty
space and long ones stay readable. The window animates as the result streams
in and settles to an exact fit once it finishes.

### Changed

Expand All @@ -26,6 +30,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Translation, polish, and summarize now preserve the source structure
(line breaks, lists, headings) in their results.

### Fixed

- Text-to-speech no longer reads markdown markers and table pipes aloud
(`*`, `#`, `|`, and similar symbols are stripped before speaking).

## [0.1.9] - 2026-06-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion mac-app/Lumo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.9</string>
<string>0.2.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down
4 changes: 2 additions & 2 deletions mac-app/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ packages:

settings:
base:
MARKETING_VERSION: "0.1.9"
MARKETING_VERSION: "0.2.0"
CURRENT_PROJECT_VERSION: "1"
SWIFT_VERSION: "5.0"
# Ad-hoc signed (identity "-"), no Developer ID / notarization. Signing is
Expand Down Expand Up @@ -71,7 +71,7 @@ targets:
# Build settings below are substituted by Xcode at "Process Info.plist".
CFBundleDisplayName: $(APP_DISPLAY_NAME)
CFBundleName: $(PRODUCT_NAME)
CFBundleShortVersionString: "0.1.9"
CFBundleShortVersionString: "0.2.0"
# Localizations the app ships. The UI is authored in English (base) and
# translated via Lumo/Localizable.xcstrings; the system picks the user's
# preferred match at runtime (falls back to English).
Expand Down
Loading