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
9 changes: 9 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

Todo: More testing Linux / Mac. Create Windows .exe. Write better documentation / help. Add splash screen / icon. Fix raw image support.

## 1.6.1 (2026-03-13)

- Added a slim custom title bar with hover-revealed menus.
- Added custom minimize, maximize, and close buttons for the frameless window.
- Added a zoom indicator in the title bar and the current directory path in the status bar.
- Moved menu activation from hovering over the image to hovering over the title bar.
- Expand the default prefetch window from a radius of 4 to 12 images.
- Introduce directional awareness to task cancellation logic, making the prefetcher a lot faster.

## 1.6.0 (2026-03-06)

- Added a "Todo" flag: toggle with D, filterable in Filter dialog, shown on thumbnails (badge, tile visuals, red on sparkline), and displayed as "Todo since {date}" in the UI.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# FastStack

# Version 1.6.0 - March 6, 2026
# Version 1.6.1 - March 13, 2026
# By Alan Rockefeller

Ultra-fast, caching JPG viewer designed for culling and selecting RAW or JPG files for focus stacking and website upload.
Expand Down
4 changes: 4 additions & 0 deletions faststack/qml/Components.qml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Item {

// Height of the status bar footer in Main.qml
property int footerHeight: 60

// Expose zoom state to parent (Main.qml title bar)
readonly property real currentZoomScale: imageRotator.zoomScale
readonly property real currentFitScale: imageRotator.fitScale

Connections {
target: uiState
Expand Down
Loading
Loading