Browse Source

Declare support for Inno Setup 5.6.0

Format matches our preliminary support.
coverity_scan
Daniel Scharrer 8 years ago
parent
commit
565012f8b0
  1. 2
      CHANGELOG
  2. 2
      README.md
  3. 2
      VERSION
  4. 3
      src/setup/version.cpp

2
CHANGELOG

@ -1,6 +1,6 @@
innoextract 1.7 (TDB)
- Added (preliminary) support for Inno Setup 5.6.0 installers
- Added support for Inno Setup 5.6.0 installers
- Added support for new GOG installers with GOG Galaxy file parts
- Added support for encrypted installers with the --password and --password-file options
- Added a --show-password option to print password check information

2
README.md

@ -1,7 +1,7 @@
# innoextract - A tool to unpack installers created by Inno Setup
[Inno Setup](http://www.jrsoftware.org/isinfo.php) is a tool to create installers for Microsoft Windows applications. innoextract allows to extract such installers under non-Windows systems without running the actual installer using wine. innoextract currently supports installers created by Inno Setup 1.2.10 to 5.5.5.
[Inno Setup](http://www.jrsoftware.org/isinfo.php) is a tool to create installers for Microsoft Windows applications. innoextract allows to extract such installers under non-Windows systems without running the actual installer using wine. innoextract currently supports installers created by Inno Setup 1.2.10 to 5.6.0.
In addition to standard Inno Setup installers, innoextract also supports some modified Inno Setup variants including Martijn Laan's My Inno Setup Extensions 3.0.6.1 as well as GOG.com's Inno Setup-based game installers.

2
VERSION

@ -1,7 +1,7 @@
innoextract 1.7-dev
Known working Inno Setup versions:
Inno Setup 1.2.10 to 5.5.9
Inno Setup 1.2.10 to 5.6.0
Bug tracker:
http://innoextract.constexpr.org/issues

3
src/setup/version.cpp

@ -151,7 +151,8 @@ static const known_version versions[] = {
{ "Inno Setup Setup Data (5.5.6) (u)", INNO_VERSION_EXT(5, 5, 6, 0), true },
{ "Inno Setup Setup Data (5.5.7)", INNO_VERSION_EXT(5, 5, 7, 0), false },
{ "Inno Setup Setup Data (5.5.7) (u)", INNO_VERSION_EXT(5, 5, 7, 0), true },
{ "!!! Inno Setup 5.6-dev", INNO_VERSION_EXT(5, 6, 0, 0), true },
{ "Inno Setup Setup Data (5.6.0)", INNO_VERSION_EXT(5, 6, 0, 0), false },
{ "Inno Setup Setup Data (5.6.0) (u)", INNO_VERSION_EXT(5, 6, 0, 0), true },
};
} // anonymous namespace

Loading…
Cancel
Save