Skip to content
Merged

Test #20

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
6 changes: 6 additions & 0 deletions faststack.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"version": 2,
"last_index": 0,
"entries": {},
"stacks": []
}
16 changes: 11 additions & 5 deletions faststack/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# ChangeLog

Todo: Make it work on Linux / Mac. Create Windows .exe. Write better documentation / help. Add splash screen / icon. Add the ability to pull in images from a stack if they are taken with a camera with in-camera stacking.
Todo: Make it work on Linux / Mac. Create Windows .exe. Write better documentation / help. Add splash screen / icon.

# [1.2.0] - 2025-11-22
## [1.3.0] - 2025-11-23

- Added the ability to crop images, via the cr(O)p hotkey. It can be a freeform crop, or constrained to several popular aspect ratios.
- Sorts images by time.
- Added the Stack Source Raws feature in the Action menu - if you import your images with stackcopy.py --lightroomimport (https://github.com/AlanRockefeller/faststack) and you are viewing a photo stacked in-camera, this feature will open the raw images that made this stack in Helicon Focus.
- Some fixes to the image cache - it doesn't expire when it shouldn't, does expire when it should, and warns you when the cache is full so you can consider increassing the cache size in settings.


## [1.2.0] - 2025-11-22

- Fixed menus, they now work well and look cool.
- Updated auto white balance to make it better, and put some controls for it in the settings
Expand Down Expand Up @@ -77,9 +85,7 @@ Todo: Make it work on Linux / Mac. Create Windows .exe. Write better docum

### Features
- **JPG Fallback for Helicon:** Helicon Focus stacking now works with JPG-only workflows when RAW files absent.
- **Comprehensive Timing Instrumentation:** Added detailed decode timing logs in debug mode for performance analysis.
- **Added a Jump to Photo feature that can be activated by pressing the G key

- **Comprehensive Timing Instrumentation:** Added detailed decode timing logs in debug mode for performance analysis.- **Jump to Photo:** Press `G` to jump directly to any image (feature documented more fully in [1.0.0]).
## [0.8.0] - 2025-11-20

### Added
Expand Down
6 changes: 4 additions & 2 deletions faststack/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# FastStack

# Version 1.2 - November 22, 2025
# Version 1.3 - November 23, 2025
# By Alan Rockefeller

Ultra-fast, caching JPG viewer designed for culling and selecting RAW or JPG files for focus stacking and website upload.
Expand All @@ -9,10 +9,11 @@ This tool is optimized for speed, using `libjpeg-turbo` for decoding, aggressive

## Features

- **Instant Navigation:** Sub-10ms next/previous image switching, high performance decoding via `PyTurboJPEG`.
- **Crop:** Added the ability to crop images via the cr(O)p hotkey. It can be a freeform crop, or constrained to several popular aspect ratios.
- **Zoom & Pan:** Smooth zooming and panning.
- **Stack Selection:** Group images into stacks (`[`, `]`) and select them for processing (`S`).
- **Helicon Focus Integration:** Launch Helicon Focus with your selected RAW files with a single keypress (`Enter`).
- **Instant Navigation:** Sub-10ms next/previous image switching, high performance decoding via `PyTurboJPEG`.
- **Image Editor:** Built-in editor with exposure, contrast, white balance, sharpness, and more (E key)
- **Quick Auto White Balance:** Press A to apply auto white balance and save automatically with undo support (Ctrl+Z). For better white balance load the raw into Photoshop with the P key.
- **Photoshop Integration:** Edit current image in Photoshop (P key) - always uses RAW files when available, even for backup files
Expand Down Expand Up @@ -59,6 +60,7 @@ This tool is optimized for speed, using `libjpeg-turbo` for decoding, aggressive
- `Ctrl+Z`: Undo last action (delete or auto white balance)
- `A`: Quick auto white balance (saves automatically)
- `E`: Toggle Image Editor
- 'O': Crop image
- `Ctrl+C`: Copy image path to clipboard
- `Ctrl+0`: Reset zoom and pan
- `C`: Clear all stacks
6 changes: 3 additions & 3 deletions faststack/faststack.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Metadata-Version: 2.4
Name: faststack
Version: 1.1
Summary: Ultra-fast JPG Viewer for Focus Stacking Selection and website upload
Version: 1.3
Summary: Ultra-fast JPG Viewer for Focus Stacking Selection and website upload via drag and drop
Author-email: Alan Rockefeller <alanrockefeller@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Expand All @@ -20,7 +20,7 @@ Dynamic: license-file

# FastStack

# Version 1.1 - November 22, 2025
# Version 1.3 - November 23, 2025
# By Alan Rockefeller

Ultra-fast, caching JPG viewer designed for culling and selecting RAW or JPG files for focus stacking.
Expand Down
Loading