Version: 1.36
This commit is contained in:
parent
7236230228
commit
d287a8e1d2
|
@ -10,7 +10,7 @@
|
|||
# - win_installer/cppcheck.iss
|
||||
|
||||
# Tag to use
|
||||
tag=1.35
|
||||
tag=1.36
|
||||
|
||||
# Name of release
|
||||
releasename=cppcheck-$tag
|
||||
|
|
|
@ -80,7 +80,7 @@ std::string CppCheck::parseFromArgs(int argc, const char* const argv[])
|
|||
for (int i = 1; i < argc; i++)
|
||||
{
|
||||
if (strcmp(argv[i], "--version") == 0)
|
||||
return "Cppcheck 1.35\n";
|
||||
return "Cppcheck 1.36\n";
|
||||
|
||||
// Flag used for various purposes during debugging
|
||||
if (strcmp(argv[i], "--debug") == 0)
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
/**
|
||||
*
|
||||
* @mainpage Cppcheck
|
||||
* @version 1.35
|
||||
* @version 1.36
|
||||
*
|
||||
* @section overview_sec Overview
|
||||
* Cppcheck is a simple tool for static analysis of C/C++ code.
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
|
||||
#define MyAppName "cppcheck"
|
||||
#define AppVersion "1.35"
|
||||
#define AppVersion "1.36"
|
||||
#define MyAppURL "http://cppcheck.wiki.sourceforge.net/"
|
||||
#define MyAppExeName "cppcheck.exe"
|
||||
#define QTGuiExe "gui.exe"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?xml version='1.0' encoding='windows-1252'?>
|
||||
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
|
||||
|
||||
<Product Name='Cppcheck 1.35' Id='88DE59C3-7640-47A2-A047-7289807AE3BA' UpgradeCode='DDB850E4-F8DE-4290-BDF1-AC12475DEE80'
|
||||
Language='1033' Codepage='1252' Version='1.35' Manufacturer='The Cppcheck team'>
|
||||
<Product Name='Cppcheck 1.36' Id='88DE59C3-7640-47A2-A047-7289807AE3BA' UpgradeCode='DDB850E4-F8DE-4290-BDF1-AC12475DEE80'
|
||||
Language='1033' Codepage='1252' Version='1.36' Manufacturer='The Cppcheck team'>
|
||||
|
||||
<Package Id='*' Keywords='Installer' Description="Cppcheck 1.35 Installer"
|
||||
<Package Id='*' Keywords='Installer' Description="Cppcheck 1.36 Installer"
|
||||
Comments='Cppcheck is a tool for static analysis of C/C++ code' Manufacturer='The Cppcheck team'
|
||||
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
|
||||
|
||||
|
@ -13,13 +13,13 @@
|
|||
|
||||
<Directory Id='TARGETDIR' Name='SourceDir'>
|
||||
<Directory Id='ProgramFilesFolder' Name='PFiles'>
|
||||
<Directory Id='INSTALLDIR' Name='Cppcheck 1.35'>
|
||||
<Directory Id='INSTALLDIR' Name='Cppcheck 1.36'>
|
||||
<Component Id='MainExecutable' Guid='E1435616-5041-4079-BC4B-C4805BEEDAF9'>
|
||||
<File Id='cppcheckexe' Name='cppcheck.exe' DiskId='1' Source='cppcheck.exe' KeyPath='yes' />
|
||||
</Component>
|
||||
<Component Id='GuiExecutable' Guid='2BDB0B5A-BFD8-4DFC-8803-97D476CAB7FB'>
|
||||
<File Id='guiexe' Name='gui.exe' DiskId='1' Source='gui.exe' KeyPath='yes'>
|
||||
<Shortcut Id='startmenuGui' Directory='ProgramMenuDir' Name='Cppcheck 1.35'
|
||||
<Shortcut Id='startmenuGui' Directory='ProgramMenuDir' Name='Cppcheck 1.36'
|
||||
WorkingDirectory='INSTALLDIR' Icon='gui.exe' IconIndex='0' Advertise='yes' />
|
||||
</File>
|
||||
</Component>
|
||||
|
@ -27,7 +27,7 @@
|
|||
</Directory>
|
||||
|
||||
<Directory Id='ProgramMenuFolder' Name="Programs">
|
||||
<Directory Id='ProgramMenuDir' Name="Cppcheck 1.35">
|
||||
<Directory Id='ProgramMenuDir' Name="Cppcheck 1.36">
|
||||
<Component Id='ProgramMenuDir' Guid='5F946988-B6A7-49FD-8D24-18C1AA116BD0'>
|
||||
<RemoveFolder Id='ProgramMenuDir' On='uninstall' />
|
||||
<RegistryValue Root='HKCU' Key='Software\[Manufacturer]\[ProductName]' Type='string' Value='' KeyPath='yes' />
|
||||
|
|
Loading…
Reference in New Issue