Skip to content

Commit

Permalink
bump 0.7.0
Browse files Browse the repository at this point in the history
Signed-off-by: BlackEagle <[email protected]>
  • Loading branch information
BlackIkeEagle committed Apr 17, 2017
1 parent 3ebf10e commit 02793cb
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 22 deletions.
35 changes: 20 additions & 15 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
FOR FURTHER CHANGELOG INFORMATION:
https://github.com/BlackIkeEagle/par2cmdline/commits/master
17 April 2017 Ike Devolder
* release: 0.7.0
* Merged OpenMP version and so enabled multithreading
* added -t flag to set the number of threads (all possible threads
used by default)
* Added -B flag to set the basepath for difficult to guess situations
* bugfixes

27 February 2014 Ike Devolder
* release: 0.6.5
Expand Down Expand Up @@ -174,7 +179,7 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master
recovery file size to be limited so that the largest will have
just enough recovery data to reconstruct the larget source file.

* par2creator.h, par2creator.cpp: Use the recovery block count
* par2creator.h, par2creator.cpp: Use the recovery block count
specified via the command line instead of the redundancy % if
given. Allocate the sizes of recovery files so the are limited
if requested.
Expand All @@ -201,11 +206,11 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master
and repair to work with large file sets on OS's with a limit
on the number of files that can be open simultaneously.

* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
depcomp, install-sh, missing, mkinstalldirs: Updated Automake to
* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
depcomp, install-sh, missing, mkinstalldirs: Updated Automake to
version 1.8.3 and Autoconf to version 2.59.

* configure.ac, config.h.in, configure: Check for getopt() and
* configure.ac, config.h.in, configure: Check for getopt() and
getopt_long().

19 August 2003 Peter B Clements
Expand All @@ -228,11 +233,11 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master
* Updated par2repairer.cpp: When a good packet is found after bad
data, use memcpy to copy the packet header. Don't attempt to get
the block count directly from the verification packet (which
might be missing).
might be missing).

* Updated par2repairersourcefile.cpp: Add function to set the block
count when the verification packet is missing.

1 August 2003 Peter B Clements

* Updated par2cmdline.h: Included <iomanip>.
Expand All @@ -243,7 +248,7 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master

29 July 2003 Peter B Clements

* Updated galois.h: Use typename when refering to a typedef
* Updated galois.h: Use typename when refering to a typedef
in another class.

* Updated par1repairer.cpp: Cast size of fileentry in memcpy.
Expand Down Expand Up @@ -313,7 +318,7 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master
* Release: Version 0.2.

* Added config.h.in, configure, configure.ac, depcomp, missing,
mkinstalldirs, stamp-h.in: Autoconf configuration files.
mkinstalldirs, stamp-h.in: Autoconf configuration files.
* Added NEWS

* Added par1fileformat.h, par1fileformat.cpp: Specifies the
Expand All @@ -322,21 +327,21 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master
* Added par1repairer.h, par1repairer.cpp: Encapsulates the details
of repairing using PAR 1.0 files.

* Added par1repairersourcefile.h, par1repairersourcefile.cpp:
* Added par1repairersourcefile.h, par1repairersourcefile.cpp:
Stores details of a source file.

* Added test1, test2, test3, test4, test5, test6, testdata.tar.gz:
Test files for "make check".

* Changed commandline.cpp, commandline.h: Add "version" member
* Changed commandline.cpp, commandline.h: Add "version" member
and set it according to whether the recovery file is a .PAR file
or a .PAR2 file. Rename "par2filename" member to "parfilename".

* Changed creatorpacket.cpp: Made "string creator" a local variable
in CreatorPacket::Create instead of a global. Commented out code
that does nothing.

* Changed criticalpacket.h: Corrected bug in
* Changed criticalpacket.h: Corrected bug in
CriticalPacketEntry::operator= which failed to return *this.

* Changed descriptionpacket.cpp: Commented out code which does
Expand All @@ -354,7 +359,7 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master
* Changed galois.cpp: Move the constructors for GaloisTable and
GaloisLongMultiplyTable to galois.h.

* Changed galois.h: Changed GaloisTable, Galois, and
* Changed galois.h: Changed GaloisTable, Galois, and
GaloisLongMultipleTable into templates. Corrected bug in
Galois::pow and Galois::operator^ which incorrectly returned 0
for x^0 when it should always return 1. Added Galois8 and
Expand Down Expand Up @@ -410,7 +415,7 @@ https://github.com/BlackIkeEagle/par2cmdline/commits/master

* Changed verificationhashtable.cpp: Removed unused code.

* Changed verificationpacket.cpp: Commented out code that does
* Changed verificationpacket.cpp: Commented out code that does
nothing.

7 May 2003 Peter B Clements
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dnl -*- Autoconf -*-
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.62)
AC_INIT([par2cmdline], [0.6.14], [[email protected]])
AC_INIT([par2cmdline], [0.7.0], [[email protected]])
AC_CONFIG_SRCDIR([src/par2cmdline.cpp])

AC_CANONICAL_HOST
Expand Down
2 changes: 1 addition & 1 deletion man/par2.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for par2
.\" Contact [email protected] for mistakes.
.TH par2 1 "apr 2017" "0.6.14" "Parity archive utils"
.TH par2 1 "apr 2017" "0.7.0" "Parity archive utils"
.SH NAME
par2 \- PAR 2.0 compatible file verification and repair tool.
.SH SYNOPSIS
Expand Down
10 changes: 5 additions & 5 deletions par2cmdline.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.6.14";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.7.0";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Expand All @@ -108,7 +108,7 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.6.14";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.7.0";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<OpenMPSupport>true</OpenMPSupport>
Expand All @@ -131,7 +131,7 @@
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<OmitFramePointers>true</OmitFramePointers>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.6.14";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.7.0";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
Expand All @@ -157,7 +157,7 @@
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<OmitFramePointers>true</OmitFramePointers>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.6.14";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;PACKAGE="par2cmdline";VERSION="0.7.0";%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
Expand Down Expand Up @@ -253,4 +253,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>

0 comments on commit 02793cb

Please sign in to comment.