Skip to content

Commit

Permalink
Version info, UI bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
conor42 committed Jan 30, 2018
1 parent 1681fa3 commit d9d1447
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions C/7zVersion.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define MY_VER_MAJOR 18
#define MY_VER_MINOR 01
#define MY_VER_BUILD 0
#define MY_VERSION_NUMBERS "18.01"
#define MY_VERSION_NUMBERS "18.01 FL2 0.9.0"
#define MY_VERSION MY_VERSION_NUMBERS

#ifdef MY_CPU_NAME
Expand All @@ -10,10 +10,10 @@
#define MY_VERSION_CPU MY_VERSION
#endif

#define MY_DATE "2018-01-28"
#define MY_DATE "2018-01-30"
#undef MY_COPYRIGHT
#undef MY_VERSION_COPYRIGHT_DATE
#define MY_AUTHOR_NAME "Igor Pavlov"
#define MY_AUTHOR_NAME "Igor Pavlov, Conor McCarthy"
#define MY_COPYRIGHT_PD "Igor Pavlov : Public domain"
#define MY_COPYRIGHT_CR "Copyright (c) 1999-2018 Igor Pavlov"

Expand Down
4 changes: 2 additions & 2 deletions C/7zVersion.rc
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ BEGIN \
BEGIN \
BLOCK "040904b0" \
BEGIN \
VALUE "CompanyName", "Igor Pavlov" \
VALUE "CompanyName", "Igor Pavlov, Conor McCarthy" \
VALUE "FileDescription", descr \
VALUE "FileVersion", MY_VERSION \
VALUE "InternalName", intName \
VALUE "LegalCopyright", MY_COPYRIGHT \
VALUE "OriginalFilename", origName \
VALUE "ProductName", "7-Zip" \
VALUE "ProductName", "7-Zip Fast-LZMA2" \
VALUE "ProductVersion", MY_VERSION \
END \
END \
Expand Down
Binary file modified CPP/7zip/Bundles/Format7z/AMD64/7za.exp
Binary file not shown.
Binary file modified CPP/7zip/Bundles/Format7z/AMD64/7za.lib
Binary file not shown.
Binary file modified CPP/7zip/Bundles/Format7z/O/7za.exp
Binary file not shown.
Binary file modified CPP/7zip/Bundles/Format7z/O/7za.lib
Binary file not shown.
Binary file modified CPP/7zip/Compress/libflzma2-x64.lib
Binary file not shown.
2 changes: 1 addition & 1 deletion CPP/7zip/UI/GUI/CompressDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ void CCompressDialog::SetMethod(int keepMethodId)
{
const NCompression::CFormatOptions &fo = m_RegistryInfo.Formats[index];
defaultMethod = fo.Method;
if(fo.Method.IsEqualTo_Ascii_NoCase(kMethodsNames[kLZMA2]) == 0 && fo.Options.Find(L"mf=HC") < 0 && fo.Options.Find(L"mf=BT") < 0)
if(fo.Method.IsEqualTo_Ascii_NoCase(kMethodsNames[kLZMA2]) && fo.Options.Find(L"mf=HC") < 0 && fo.Options.Find(L"mf=BT") < 0)
defaultMethod = kFastLzma2Name;
}
bool isSfx = IsSFX();
Expand Down

0 comments on commit d9d1447

Please sign in to comment.