-
-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- About Dialog shows v1.3.6 instead of v1.3.7 - added 7-Zip ZS Homepage to About Dialog - also some headers needed to be fixed
- Loading branch information
Showing
7 changed files
with
34 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#define MY_VER_MAJOR 1 | ||
#define MY_VER_MINOR 3 | ||
#define MY_VER_BUILD 1 | ||
#define MY_VERSION_NUMBERS "1.3.2 R1" | ||
#define MY_VER_MAJOR 18 | ||
#define MY_VER_MINOR 05 | ||
#define MY_VER_BUILD 0 | ||
#define MY_VERSION_NUMBERS "1.3.7 R2" | ||
#define MY_VERSION MY_VERSION_NUMBERS | ||
#define MY_DATE "2017-10-31" | ||
#define MY_DATE "2018-10-25" | ||
#undef MY_COPYRIGHT | ||
#undef MY_VERSION_COPYRIGHT_DATE | ||
#define MY_AUTHOR_NAME "Tino Reichardt" | ||
#define MY_COPYRIGHT "Copyright (c) 2016 - 2017 Tino Reichardt" | ||
#define MY_COPYRIGHT "Copyright (c) 2016 - 2018 Tino Reichardt" | ||
#define MY_VERSION_COPYRIGHT_DATE MY_VERSION " : " MY_COPYRIGHT " : " MY_DATE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#include "../../../../C/7zVersionTr.h" | ||
#include "../../../../C/7zVersion.rc" | ||
|
||
MY_VERSION_INFO_DLL("7-Zip Zstandard Plugin v1.3.6", "zstd") | ||
MY_VERSION_INFO_DLL("7-Zip Zstandard Plugin v1.3.7", "zstd") | ||
|
||
101 ICON "../../Archive/Icons/zst.ico" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#include "../../../../C/7zVersionTr.h" | ||
#include "../../../../C/7zVersion.rc" | ||
|
||
MY_VERSION_INFO_DLL("7-Zip Zstandard Plugin v1.3.6", "zstd") | ||
MY_VERSION_INFO_DLL("7-Zip Zstandard Plugin v1.3.7", "zstd") | ||
|
||
101 ICON "../../Archive/Icons/zst.ico" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
#include <windows.h> | ||
#include <commctrl.h> | ||
#include <richedit.h> | ||
#include "AboutDialogRes.h" | ||
#include "../../GuiCommon.rc" | ||
#include "../../MyVersion.h" | ||
#include "..\..\GuiCommon.rc" | ||
#include "..\..\MyVersion.h" | ||
|
||
#define xc 144 | ||
#define yc 144 | ||
LANGUAGE LANG_ENGLISH,SUBLANG_ENGLISH_US | ||
|
||
#define y 93 | ||
IDI_LOGO ICON "7zipLogo.ico" | ||
|
||
IDI_LOGO ICON "../../UI/FileManager/7zipLogo.ico" | ||
|
||
#ifndef SS_REALSIZEIMAGE | ||
#define SS_REALSIZEIMAGE 0x800 | ||
#endif | ||
|
||
IDD_ABOUT DIALOG 0, 0, xs, ys MY_MODAL_DIALOG_STYLE MY_FONT | ||
IDD_ABOUT DIALOG DISCARDABLE 0, 0, 224, 132 | ||
STYLE WS_POPUP|DS_MODALFRAME|DS_CENTER|WS_CAPTION|WS_SYSMENU | ||
CAPTION "About 7-Zip" | ||
FONT 8, "MS Shell Dlg" | ||
{ | ||
DEFPUSHBUTTON "OK", IDOK, bx1, by, bxs, bys | ||
PUSHBUTTON "www.7-zip.org", IDB_ABOUT_HOMEPAGE, bx2, by, bxs, bys | ||
ICON IDI_LOGO, -1, m, m, 32, 32, SS_REALSIZEIMAGE, | ||
LTEXT "", IDT_ABOUT_VERSION, m, 54, xc, 8 | ||
LTEXT "", IDT_ABOUT_DATE, m, 67, xc, 8 | ||
LTEXT MY_COPYRIGHT, -1, m, 80, xc, 8 | ||
LTEXT "7-Zip is free software", IDT_ABOUT_INFO, m, y, xc, (by - y - 1) | ||
CONTROL "OK", IDOK, "Button", BS_DEFPUSHBUTTON|WS_TABSTOP, 4, 112, 64, 16 | ||
CONTROL "www.7-zip.org", IDB_ABOUT_HOMEPAGE, "Button", WS_TABSTOP, 72, 112, 64, 16 | ||
CONTROL IDI_LOGO, -1, "Static", SS_ICON|SS_REALSIZEIMAGE, 8, 8, 32, 32 | ||
CONTROL "", IDT_ABOUT_VERSION, "Static", WS_GROUP, 8, 54, 208, 8 | ||
CONTROL "", IDT_ABOUT_DATE, "Static", WS_GROUP, 8, 67, 208, 8 | ||
CONTROL MY_COPYRIGHT_CR, -1, "Static", WS_GROUP, 8, 80, 208, 8 | ||
CONTROL "7-Zip is free software", IDT_ABOUT_INFO, "Static", WS_GROUP, 8, 93, 208, 19 | ||
CONTROL "7-Zip ZS Homepage", IDB_ABOUT_HOMEPAGE2, "Button", WS_TABSTOP, 140, 112, 76, 16 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters