Skip to content

Commit 7858719

Browse files
committed
Add a new release v1.6
1 parent c879841 commit 7858719

4 files changed

+8
-8
lines changed

BmpHeaderViewer/BmpHeaderViewer.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
////////////////////////////////////////////////////////////////////////////////////////////////
2222
// Global Variables
2323

24-
#define VERSION TEXT("1.5")
24+
#define VERSION TEXT("1.6")
2525
#if defined(_WIN64)
2626
#define PLATFORM TEXT("64-bit")
2727
#else
@@ -1536,7 +1536,7 @@ BOOL PrintThumbnail(HWND hDlg, LPCTSTR lpszDocName)
15361536
LPCSTR lpbi = (LPCSTR)GlobalLock(hDib);
15371537
if (lpbi != NULL)
15381538
{
1539-
GetDIBDimensions(lpbi, &lWidth, &lHeight, TRUE);
1539+
GetDibDimensions(lpbi, &lWidth, &lHeight, TRUE);
15401540
GlobalUnlock(hDib);
15411541
}
15421542
}
@@ -1649,7 +1649,7 @@ BOOL OnDrawItem(const LPDRAWITEMSTRUCT lpDrawItem)
16491649
LONG lSrcWidth = 0;
16501650
LONG lSrcHeight = 0;
16511651

1652-
GetDIBDimensions((LPCSTR)lpbi, &lSrcWidth, &lSrcHeight, TRUE);
1652+
GetDibDimensions((LPCSTR)lpbi, &lSrcWidth, &lSrcHeight, TRUE);
16531653

16541654
if (lpDrawItem->itemState & ODS_SELECTED)
16551655
{

BmpHeaderViewer/BmpHeaderViewer.exe.manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3-
<assemblyIdentity type="win32" name="Electron.ImgTools.BmpHeaderViewer" version="1.5.0.6" processorArchitecture="x86"></assemblyIdentity>
3+
<assemblyIdentity type="win32" name="Electron.ImgTools.BmpHeaderViewer" version="1.6.0.7" processorArchitecture="x86"></assemblyIdentity>
44
<description>BMP Header Viewer</description>
55
<dependency>
66
<dependentAssembly>

BmpHeaderViewer/BmpHeaderViewer.rc

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ BEGIN
8686
MENUITEM SEPARATOR
8787
MENUITEM "&Open with...", IDC_THUMB_OPENWITH
8888
MENUITEM SEPARATOR
89-
MENUITEM "Color &Management...", IDC_THUMB_ICM
89+
MENUITEM "Color &management...", IDC_THUMB_ICM
9090
END
9191
END
9292

@@ -137,7 +137,7 @@ IDI_HEADERVIEWER ICON "BmpHeaderViewer.ico"
137137
//
138138

139139
VS_VERSION_INFO VERSIONINFO
140-
FILEVERSION 1,5,0,6
140+
FILEVERSION 1,6,0,7
141141
PRODUCTVERSION 1,0,0,0
142142
FILEFLAGSMASK 0x3fL
143143
#ifdef _DEBUG
@@ -156,7 +156,7 @@ BEGIN
156156
VALUE "Comments", "Windows Bitmap header viewer"
157157
VALUE "CompanyName", "Electron"
158158
VALUE "FileDescription", "BMP Header Viewer"
159-
VALUE "FileVersion", "1.5.0.6"
159+
VALUE "FileVersion", "1.6.0.7"
160160
VALUE "InternalName", "BmpHeaderViewer"
161161
VALUE "LegalCopyright", "Copyright � 2024 by W. Rolke"
162162
VALUE "OriginalFilename", "BmpHeaderViewer.exe"

BmpHeaderViewer/BmpHeaderViewer64.exe.manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3-
<assemblyIdentity type="win32" name="Electron.ImgTools.BmpHeaderViewer" version="1.5.0.6" processorArchitecture="amd64"></assemblyIdentity>
3+
<assemblyIdentity type="win32" name="Electron.ImgTools.BmpHeaderViewer" version="1.6.0.7" processorArchitecture="amd64"></assemblyIdentity>
44
<description>BMP Header Viewer</description>
55
<dependency>
66
<dependentAssembly>

0 commit comments

Comments
 (0)