Compare commits
62 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e0ed7076ba | ||
|
|
051bc1be15 | ||
|
|
79e6ebbd55 | ||
|
|
f3f8d653e5 | ||
|
|
2b15cff5dc | ||
|
|
15b963fab4 | ||
|
|
a62dbe44d7 | ||
|
|
147ffaaac8 | ||
|
|
f17d75f1bd | ||
|
|
a1d042bb38 | ||
|
|
895b3282dc | ||
|
|
1287e9f938 | ||
|
|
9eeb820391 | ||
|
|
73690179fd | ||
|
|
c98ecc7365 | ||
|
|
b4bfc1181f | ||
|
|
0c9ba771e4 | ||
|
|
c6610f55b9 | ||
|
|
de8b6784d8 | ||
|
|
3f7969d8a2 | ||
|
|
1877038b93 | ||
|
|
2869f18bc5 | ||
|
|
c1b1f09d85 | ||
|
|
be43c340b2 | ||
|
|
71573c0149 | ||
|
|
9f5d97933b | ||
|
|
3ffc9d484b | ||
|
|
c9705d6cee | ||
|
|
7fbac2be16 | ||
|
|
b24afc1a24 | ||
|
|
95f35b14ac | ||
|
|
2189612c65 | ||
|
|
59d062ed77 | ||
|
|
5870f732c9 | ||
|
|
c0239c578c | ||
|
|
03e8567358 | ||
|
|
774d716f23 | ||
|
|
20066306c8 | ||
|
|
1ad52701fd | ||
|
|
6e76cc44ac | ||
|
|
e5f9b0db4d | ||
|
|
6956f295d3 | ||
|
|
d8999fce08 | ||
|
|
e5fbb74426 | ||
|
|
9136580dd8 | ||
|
|
6e67e9f64e | ||
|
|
a896e06973 | ||
|
|
a5127000a8 | ||
|
|
5455430856 | ||
|
|
fafae1f0bd | ||
|
|
db5d41fedc | ||
|
|
6bc59496b1 | ||
|
|
b963271353 | ||
|
|
85d79db345 | ||
|
|
1404cf758b | ||
|
|
bc96c87fa3 | ||
|
|
9eeb2e3af0 | ||
|
|
81e5bb6985 | ||
|
|
d1c959d280 | ||
|
|
416087003c | ||
|
|
5b344fe7ae | ||
|
|
32ec4c06f6 |
125
README.md
125
README.md
@@ -1,73 +1,104 @@
|
|||||||
# MultiPar
|
# MultiPar
|
||||||
|
|
||||||
v1.3.1.7 is public
|
### v1.3.2.6 is public
|
||||||
|
|
||||||
This is minor update version.
|
I added a new feature and changed some default behavior in this version.
|
||||||
I changed some for new environments, Windows 10 and Visual Studio 2019.
|
I explain the difference below.
|
||||||
If there is no serious problem, next version will be the last of v1.3.1 tree.
|
Be careful to use them.
|
||||||
When you see a bug, odd incident, or strange behavior, please let me know.
|
If you see a strange, odd, or wrong behavior, please report with ease.
|
||||||
I will fix before releasing a stable version.
|
I will fix as possible as I can.
|
||||||
|
|
||||||
Because Visual Studio 2019 supports new CPUs, I removed some obsolate code.
|
I saw [a question](https://github.com/Yutaka-Sawada/MultiPar/discussions/64) about number of recovery files.
|
||||||
It doesn't require par2j_extra.dll or par2j64_extra.dll to use AVX2 feature.
|
Max number of recovery blocks was limited to the max source file size.
|
||||||
It may not require extra memory barrier (_mm_sfence) for multi-threading.
|
At old time, this limit was made to be similar to QuickPar.
|
||||||
But, I'm not sure about the memory barrier.
|
I changed the default setting from this version.
|
||||||
Visual Studio 2008 required them to support new age multi-core CPUs.
|
In old versions, recovery file size was limited by default.
|
||||||
I think that Visual Studio 2019 should treat those recent CPUs well.
|
If you wanted to disable the limit, you needed to set larger limit size at `Limit Size to` option.
|
||||||
Though I tested with Intel i5 CPU on my PC, I don't know other CPUs.
|
In new version, recovery file size isn't limited by default.
|
||||||
If you see "chacksum mismatch" error, please report the incident.
|
If you want to limit, you need to set the limit size at `Limit Size to` option.
|
||||||
|
I added an option `RecoveryFileLimit` on `MultiPar.ini`.
|
||||||
|
If you want to limit recovery file size by the max source file size as same as old versions,
|
||||||
|
add a new line `RecoveryFileLimit=1` in the .INI file.
|
||||||
|
|
||||||
|
While reviewing my old source code, I found an obsolate point.
|
||||||
|
I omitted one step in verification for speed ago.
|
||||||
|
Because recent CPUs are much faster than before,
|
||||||
|
I enabled searching duplicated blocks at simple verification.
|
||||||
|
When you select `Simple verification` at `Verification level`,
|
||||||
|
it may become slightly slow.
|
||||||
|
Most users won't see any difference.
|
||||||
|
|
||||||
|
I implemented [a new feature](https://github.com/Yutaka-Sawada/MultiPar/issues/74).
|
||||||
|
It tries to repair damaged files by over writing recovered blocks directly.
|
||||||
|
It doesn't make temporary files.
|
||||||
|
To enable the feature, select `Aligned verification` at `Verification level` option.
|
||||||
|
You must understand good and bad points of this mode.
|
||||||
|
Becasue it's testing period still, I may change the behavior in future.
|
||||||
|
|
||||||
|
Pros:
|
||||||
|
- Fast verification.
|
||||||
|
- Fast recovery.
|
||||||
|
- Less disk space.
|
||||||
|
|
||||||
|
Cons:
|
||||||
|
- Backup of damaged files is disabled.
|
||||||
|
- Less finding available source blocks.
|
||||||
|
- Cannot treat splited source files.
|
||||||
|
- Cannot treat additional source files.
|
||||||
|
- Cannot treat external source files.
|
||||||
|
- Risk of more data loss at failed recovery.
|
||||||
|
|
||||||
|
|
||||||
[ Changes from 1.3.1.6 to 1.3.1.7 ]
|
[ Changes from 1.3.2.5 to 1.3.2.6 ]
|
||||||
|
|
||||||
|
Installer update
|
||||||
|
- Inno Setup was updated from v6.2.0 to v6.2.1.
|
||||||
|
|
||||||
GUI update
|
GUI update
|
||||||
- Change
|
- Change
|
||||||
- Help documents are not compiled, but consist of plain html files.
|
- It won't limit size of Recovery Files by default.
|
||||||
- More large icons are added for High DPI.
|
- Aligned verification is available for test.
|
||||||
- The installer will send MultiPar.ini to the recycle bin at uninstallation.
|
|
||||||
|
|
||||||
PAR2 client update
|
All clients update
|
||||||
- Change
|
- Change
|
||||||
- AVX2 feature is implemented internally.
|
- Original filename item was removed from version information.
|
||||||
- Additional memory barrier is removed.
|
|
||||||
|
|
||||||
|
|
||||||
[ Hash value ]
|
[ Hash value ]
|
||||||
|
|
||||||
MultiPar1317.zip
|
MultiPar1326.zip
|
||||||
MD5: DFC81D79AA0EBF27DA8945C1EECB2019
|
MD5: 9CD095ABF31A2A9978A2FF79EDC47C6D
|
||||||
SHA1: AAED4AEF23A8C9643032A3E8D5B652C52AF081C4
|
SHA1: 7FDDB03B68CFAE404F54A67559BE0DA29CEE5374
|
||||||
|
|
||||||
MultiPar1317_setup.exe
|
MultiPar1326_setup.exe
|
||||||
MD5: 16BC2DF7DF0033EDADF39D6D9F3BD2FE
|
MD5: 36AB1A803538D4CC60EF2D9E30ABEC7B
|
||||||
SHA1: FFAA6C11912164F2A8C0305DE6231B7DFD409E56
|
SHA1: 3E7A2ED2D2ED01F80964D865F7616EE4E3CA2D5E
|
||||||
|
To install under "Program Files" or "Program Files (x86)" directory,
|
||||||
|
you must start the installer with administrative privileges by selecting
|
||||||
|
"Run as administrator" on right-click menu.
|
||||||
|
|
||||||
|
|
||||||
[ Hash value of other source code packages ]
|
[ Hash value of other source code packages ]
|
||||||
Old versions and source code packages are available at
|
Old versions and source code packages are available at
|
||||||
[GitHub](https://github.com/Yutaka-Sawada/MultiPar/releases) or
|
[GitHub](https://github.com/Yutaka-Sawada/MultiPar/releases) or
|
||||||
[OneDrive](https://1drv.ms/u/s!AtGhNMUyvbWOaSo1n_R8awJ_hg0?e=4V0gXu).
|
[OneDrive](https://1drv.ms/u/s!AtGhNMUyvbWOaSo1n_R8awJ_hg0?e=4V0gXu).
|
||||||
|
|
||||||
MultiPar_par2j_1317.7z
|
MultiPar_par2j_1326.7z
|
||||||
MD5: B46EDD4E3789E65712D50E6B59E355FB
|
MD5: 2BC1FF60C2470119D0C2F1956260BF70
|
||||||
SHA1: D951E582EC2B7B6BA6947AA95F4176D816A18044
|
SHA1: 4554C5C01B9F8C4B14D23BE010A8866AF447B5BC
|
||||||
|
|
||||||
MultiPar_par1j_1314.7z
|
MultiPar_par1j_1326.7z
|
||||||
MD5: E082D8A598A262E64CBAE2C42283488A
|
MD5: 72C640381C56373CA56A73157A5AA026
|
||||||
SHA1: F706A3C1FCCAFCE225677BA0785CDB39870206A1
|
SHA1: EEC159984A7A9C3E5BCCAB31090D33984331D412
|
||||||
|
|
||||||
MultiPar_sfv_md5_1314.7z
|
MultiPar_sfv_md5_1326.7z
|
||||||
MD5: 355B0CC6B9613B422126EF9EDAC15F87
|
MD5: EAEA85745126E8393CFFFFC6C8A0AB8E
|
||||||
SHA1: EFD2CF25C47851B86EB12FD5B709BFEEC73AC36D
|
SHA1: C52A6F39566E04E42F03B347A0E5E97E2CE029BA
|
||||||
|
|
||||||
MultiPar_ShlExt_1298.7z
|
MultiPar_ShlExt_1326.7z
|
||||||
MD5: BE0F04DF1A6B936F23F6F01930562248
|
MD5: CD1A7DA095C61DF143E1630C487FDF67
|
||||||
SHA1: 52818266B45ECE135EECFF12D8DA2640A6AD5075
|
SHA1: 10F5A2A2A081D735A504E88442587102107749CD
|
||||||
|
|
||||||
MultiPar_ResUI_1315.7z
|
MultiPar_ResUI_1326.7z
|
||||||
MD5: B8B6A9DA4BD9D418CFA90FD01CCC615A
|
MD5: 4E9BCF5F0078F45C93BA44C848A1CF28
|
||||||
SHA1: E5B4B16DBCAECACA2095A64006C117E04D3C9E74
|
SHA1: 1284A50274DB1EBB496FFA5313C49683975BA318
|
||||||
|
|
||||||
MultiPar_Help_1316.7z
|
|
||||||
MD5: 0021DB7D2CA3B75912267E6D5DA70A3D
|
|
||||||
SHA1: AC436E130A112A58C60EA49ED8DCF9E2E19AACC3
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
BIN
source/MultiPar_ResUI_1326.7z
Normal file
BIN
source/MultiPar_ResUI_1326.7z
Normal file
Binary file not shown.
Binary file not shown.
BIN
source/MultiPar_ShlExt_1326.7z
Normal file
BIN
source/MultiPar_ShlExt_1326.7z
Normal file
Binary file not shown.
Binary file not shown.
BIN
source/MultiPar_par1j_1326.7z
Normal file
BIN
source/MultiPar_par1j_1326.7z
Normal file
Binary file not shown.
Binary file not shown.
BIN
source/MultiPar_par2j_1326.7z
Normal file
BIN
source/MultiPar_par2j_1326.7z
Normal file
Binary file not shown.
Binary file not shown.
BIN
source/MultiPar_sfv_md5_1326.7z
Normal file
BIN
source/MultiPar_sfv_md5_1326.7z
Normal file
Binary file not shown.
Reference in New Issue
Block a user