Skip to content

Commit

Permalink
Updates for final 1.1.42 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sylikc committed Jan 27, 2023
1 parent 57d2a71 commit fa88b71
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 5 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
JPEGView Changelog
******************

[1.1.42] 2023-01-26
New features:
- JPEG XL support, with animation
(NOTE: Microsoft Visual C++ Runtime vcruntime140.dll required when opening
JPEG XL files. Most Windows 10+ systems have this installed already.
Otherwise, download it for free from Microsoft.)
PR #99, thanks qbnu (GH https://github.com/qbnu)
- Add a new command "Hide window title bar"
Default shortcut key: "SHIFT+F11"
This toggles JPEGView window to show or hide title bar.
NOTE: in this mode, you cannot resize the window (although full screen is still supported)
- Add a new mouse gesture to move the JPEGView window at any time: ALT+LeftClick
This allows moving the window without directly clicking on the title bar (or if title bar is hidden).
- Add a new command "Always on Top"
Default shortcut key: "SHIFT+F12"
This toggles the JPEGView window to display above all other windows, even when not in focus
- Add new command "Copy file path"
Default shortcut key: "CTRL+SHIFT+C"
This copies file path of the image to clipboard
PR #62, thanks Trevor Kropp (GH https://github.com/kropptrevor)
Changed behavior:
- Animated formats: frame durations <= 10ms are set to 100ms
(Matches behavior of most web browers)
PR #108, thanks qbnu (GH https://github.com/qbnu)
Other changes:
- New INI file setting: "ShowFullPathInTitle"
Show full file path and name in the window title
(shows only file name by default)
- New INI file setting: "DefaultSelectionMode"
Allows for disabling the default selection mode behavior when clicking on an image in JPEGView.
Set to false to use selection mode only when CTRL is pressed, to prevent unintended cropping/zooming.
(CTRL+LeftClick always results in selection, regardless of image zoom)
- New KeyMap.txt entry to allow a keybind for IDM_CHANGESIZE
This allows binding a key to the "Transform image > Change size..." popup dialog

[1.1.41.1] 2023-01-03
Bugs fixed:
- Fixed regression introduced in 1.1.41 which caused CR2 and DNG files
Expand Down
8 changes: 4 additions & 4 deletions src/JPEGView/JPEGView.rc
Original file line number Diff line number Diff line change
Expand Up @@ -493,8 +493,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,41,1
PRODUCTVERSION 1,1,41,1
FILEVERSION 1,1,42,0
PRODUCTVERSION 1,1,42,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -511,12 +511,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Kevin M (sylikc)"
VALUE "FileDescription", "JPEGView"
VALUE "FileVersion", "1.1.41.1"
VALUE "FileVersion", "1.1.42.0"
VALUE "InternalName", "JPEGView"
VALUE "LegalCopyright", "Copyright 2020-2023 Kevin M (sylikc), 2006-2018 David Kleiner"
VALUE "OriginalFilename", "JPEGView.exe"
VALUE "ProductName", "JPEGView Application"
VALUE "ProductVersion", "1.1.41.1"
VALUE "ProductVersion", "1.1.42.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/JPEGView/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Used by JPEGView.RC
//

#define JPEGVIEW_VERSION "1, 1, 41, 1\0"
#define JPEGVIEW_VERSION "1, 1, 42, 0\0"
// title for main window and msgbox so it can be change via actions
#define JPEGVIEW_TITLE "JPEGView"

Expand Down

0 comments on commit fa88b71

Please sign in to comment.