Compare commits
52 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 |
128
README.md
128
README.md
@@ -1,82 +1,104 @@
|
|||||||
# MultiPar
|
# MultiPar
|
||||||
|
|
||||||
v1.3.1.8 is public
|
### v1.3.2.6 is public
|
||||||
|
|
||||||
This is minor bug fix version.
|
I added a new feature and changed some default behavior in this version.
|
||||||
Though I updated many files, most users don't see the difference.
|
I explain the difference below.
|
||||||
Because there may be a problem still, I didn't set this version as stable yet.
|
Be careful to use them.
|
||||||
When I cannot re-produce a problem nor test a behavior myself, it's difficult to solve.
|
If you see a strange, odd, or wrong behavior, please report with ease.
|
||||||
If there is no serious problem, next version will be the last of v1.3.1 tree.
|
|
||||||
When you see a bug, odd incident, or strange behavior, please let me know.
|
|
||||||
I will fix as possible as I can.
|
I will fix as possible as I can.
|
||||||
|
|
||||||
I changed the order of files in Windows 10 style.
|
I saw [a question](https://github.com/Yutaka-Sawada/MultiPar/discussions/64) about number of recovery files.
|
||||||
It treats digits as numbers in filenames.
|
Max number of recovery blocks was limited to the max source file size.
|
||||||
Though the method was introduced from Windows 7, I didn't change for compatibility.
|
At old time, this limit was made to be similar to QuickPar.
|
||||||
|
I changed the default setting from this version.
|
||||||
|
In old versions, recovery file size was limited by default.
|
||||||
|
If you wanted to disable the limit, you needed to set larger limit size at `Limit Size to` option.
|
||||||
|
In new version, recovery file size isn't limited by default.
|
||||||
|
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.
|
||||||
|
|
||||||
Windows 10 supports multiple monitors with different DPI.
|
While reviewing my old source code, I found an obsolate point.
|
||||||
The method is called as PerMonitorV2 in application manifest.
|
I omitted one step in verification for speed ago.
|
||||||
I implemented the way, and MultiPar would be less blurry on a secondary monitor now.
|
Because recent CPUs are much faster than before,
|
||||||
Because I cannot test the behavior myself, I'm not sure it works on each user's case.
|
I enabled searching duplicated blocks at simple verification.
|
||||||
If someone sees a problem on his PC, please report the incident with a screen-shot.
|
When you select `Simple verification` at `Verification level`,
|
||||||
Thanks John L. Galt for many tests on multiple monitors.
|
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.7 to 1.3.1.8 ]
|
[ 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
|
||||||
- New
|
|
||||||
- An option for file access mode was added.
|
|
||||||
|
|
||||||
- Change
|
- Change
|
||||||
- It uses digits as numbers in sorting filenames.
|
- It won't limit size of Recovery Files by default.
|
||||||
- .EXE file's path may contain Unicode characters.
|
- Aligned verification is available for test.
|
||||||
|
|
||||||
- Improvement
|
|
||||||
- On Windows 10, it supports multiple monitors with different DPI.
|
|
||||||
|
|
||||||
All clients update
|
All clients update
|
||||||
- Change
|
- Change
|
||||||
- It uses digits as numbers in sorting filenames.
|
- Original filename item was removed from version information.
|
||||||
- .EXE file's path may contain Unicode characters.
|
|
||||||
|
|
||||||
|
|
||||||
[ Hash value ]
|
[ Hash value ]
|
||||||
|
|
||||||
MultiPar1318.zip
|
MultiPar1326.zip
|
||||||
MD5: 2CBF1253F4302A7645D00ADC8D834CCD
|
MD5: 9CD095ABF31A2A9978A2FF79EDC47C6D
|
||||||
SHA1: 569A3E103C9630839A55F1DDB16701FE3B2C6876
|
SHA1: 7FDDB03B68CFAE404F54A67559BE0DA29CEE5374
|
||||||
|
|
||||||
MultiPar1318_setup.exe
|
MultiPar1326_setup.exe
|
||||||
MD5: DCF7957E8ACF0E488D8D8F30B7D3A94C
|
MD5: 36AB1A803538D4CC60EF2D9E30ABEC7B
|
||||||
SHA1: 552EB43C0BE34C46A6C496EEC7370521B07B719C
|
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_1318.7z
|
MultiPar_par2j_1326.7z
|
||||||
MD5: 625B19602201DB50AF87B4E36C30CDF2
|
MD5: 2BC1FF60C2470119D0C2F1956260BF70
|
||||||
SHA1: E596C2B127940D993DF0384686D08943DC555C6F
|
SHA1: 4554C5C01B9F8C4B14D23BE010A8866AF447B5BC
|
||||||
|
|
||||||
MultiPar_par1j_1318.7z
|
MultiPar_par1j_1326.7z
|
||||||
MD5: F66285403BA0AD856BA6A8CCD922EBF5
|
MD5: 72C640381C56373CA56A73157A5AA026
|
||||||
SHA1: 4CF5D819B16E60F1BBD82415D5F68CB46D3F53C3
|
SHA1: EEC159984A7A9C3E5BCCAB31090D33984331D412
|
||||||
|
|
||||||
MultiPar_sfv_md5_1318.7z
|
MultiPar_sfv_md5_1326.7z
|
||||||
MD5: 4E6433808625C088E2773C961BBEBBD2
|
MD5: EAEA85745126E8393CFFFFC6C8A0AB8E
|
||||||
SHA1: 68B54D178BA58637F63CC3E0CC656C96D4472A33
|
SHA1: C52A6F39566E04E42F03B347A0E5E97E2CE029BA
|
||||||
|
|
||||||
MultiPar_ShlExt_1318.7z
|
MultiPar_ShlExt_1326.7z
|
||||||
MD5: 57E79698A53458681CD19842391A202F
|
MD5: CD1A7DA095C61DF143E1630C487FDF67
|
||||||
SHA1: 646145F1B429C1CF592F907614889C98FBE7E756
|
SHA1: 10F5A2A2A081D735A504E88442587102107749CD
|
||||||
|
|
||||||
MultiPar_ResUI_1318.7z
|
MultiPar_ResUI_1326.7z
|
||||||
MD5: A9B649FD0D3EBBDAA2E4F1983489F9FE
|
MD5: 4E9BCF5F0078F45C93BA44C848A1CF28
|
||||||
SHA1: 55965B11B0B03854EC98DB8D94CE8860BF15B6F0
|
SHA1: 1284A50274DB1EBB496FFA5313C49683975BA318
|
||||||
|
|
||||||
MultiPar_Help_1318.7z
|
|
||||||
MD5: 2C96D79314DBEB995FF28E79947257F5
|
|
||||||
SHA1: CDAECF763D8D5FACE512DDCF475D06BECD2993EC
|
|
||||||
|
|||||||
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