From 34a2a015a226a7227ae2d25b073d6054f6ed5cb0b758f2e8bd0b6d6270f72468 Mon Sep 17 00:00:00 2001 From: Guillaume GARDET Date: Tue, 25 Jan 2022 14:56:03 +0000 Subject: [PATCH 1/2] Accepting request 949036 from home:dfaggioli:branches:devel:languages:pascal - 7z is expected to be in ../res/bin/7z * this is mentioned in comment 5 of bsc#1195041 (even if the bug itself is about something else) OBS-URL: https://build.opensuse.org/request/show/949036 OBS-URL: https://build.opensuse.org/package/show/devel:languages:pascal/peazip?expand=0&rev=96 --- peazip.changes | 7 +++++++ peazip.spec | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/peazip.changes b/peazip.changes index b80b1f0..4f48a83 100644 --- a/peazip.changes +++ b/peazip.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jan 25 14:52:26 UTC 2022 - Dario Faggioli + +- 7z is expected to be in ../res/bin/7z + * this is mentioned in comment 5 of bsc#1195041 (even if the bug + itself is about something else) + ------------------------------------------------------------------- Wed Nov 17 06:50:05 UTC 2021 - Paolo Stivanin diff --git a/peazip.spec b/peazip.spec index 56aa07c..33cb2e8 100644 --- a/peazip.spec +++ b/peazip.spec @@ -1,7 +1,7 @@ # # spec file for package peazip # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -112,9 +112,9 @@ mkdir -p %{buildroot}%{_peazipinstalldir} cp -r res %{buildroot}%{_peazipinstalldir} cp %{SOURCE1} %{buildroot}%{_peazipinstalldir}/res -mkdir -p %{buildroot}%{_peazipinstalldir}/res/7z +mkdir -p %{buildroot}%{_peazipinstalldir}/res/bin/7z mkdir -p %{buildroot}%{_peazipinstalldir}/res/upx -ln -s %{_bindir}/7z %{buildroot}%{_peazipinstalldir}/res/7z/7z +ln -s %{_bindir}/7z %{buildroot}%{_peazipinstalldir}/res/bin/7z/7z ln -s %{_bindir}/upx %{buildroot}%{_peazipinstalldir}/res/upx/upx mkdir -p %{buildroot}%{_peazipinstalldir}/res/arc From 27db1901b59e731ebe249b7f646c1fa450544da6eaf4d580900e14fc2922cf80 Mon Sep 17 00:00:00 2001 From: Guillaume GARDET Date: Wed, 26 Jan 2022 13:32:08 +0000 Subject: [PATCH 2/2] Accepting request 949269 from home:polslinux:branches:devel:languages:pascal - Update to 8.4.0: BACKEND * Pea 1.05 * 7z 21.06 (console) used by default on Darwin/macOS, Linux, and Windows * p7zip, and szcnick's p7zip (fork of p7zip) syntax is fully supported and can be used as alternative replacing (peazip)/res/bin/7z/7z binary CODE * Fixed issues when temporary work path is set to user's temp * Fixed smart extraction not able to remove extra level of nesting FILE MANAGER * Added single and multi core performances benchmark, in main menu Tools > System benchmark (pea) * The benchmark performs integer and floating point arithmetic operations * Benchmark result unit is arbitrary and only meant to allow comparison between different platforms * For reference 2020 MacBook Air M1 score is 100 (single core) and 515 (multi core) for aarm64 build * (Darwin/macOS, Linux) File manager columns' menu is available righclicking status bar * Added links to Volumes, Applications, and System/Applications in navigation treeview * Added auto-configured custom apps for "Open with" submenu * Open command prompt here function now working * PeaUtils launching from PeaZip now working * Language can now be changed from dropdown menu from General settings tab (main menu, Options > Settings) * Previous method allowing to manually select the language file is still available from the link before the dropdown menu EXTRACTION and ARCHIVING * New option to not stop sequences of archive test tasks unless an error is encountered * From main menu, Options > Settings, Advanced tab set "Stop to inspect report for error, list" instead of default value "Stop to inspect report for error, list, test" * With this setting, a successful archive test closes on completion unless an error is foud in the archive and test fails, in which case error message (and full report) is shown to user and needs to be dismissed before continuing with following test in sequence * Improved management of temporary work files * 7z/p7zip work files during compression are now inside peazip-tmp subpath, if work directory is set to Custom or User's tem OBS-URL: https://build.opensuse.org/request/show/949269 OBS-URL: https://build.opensuse.org/package/show/devel:languages:pascal/peazip?expand=0&rev=97 --- peazip-8.3.0.src.zip | 3 --- peazip-8.4.0.src.zip | 3 +++ peazip.changes | 36 ++++++++++++++++++++++++++++++++++++ peazip.spec | 4 ++-- peazip_help.pdf | 4 ++-- 5 files changed, 43 insertions(+), 7 deletions(-) delete mode 100644 peazip-8.3.0.src.zip create mode 100644 peazip-8.4.0.src.zip diff --git a/peazip-8.3.0.src.zip b/peazip-8.3.0.src.zip deleted file mode 100644 index f1dfc6a..0000000 --- a/peazip-8.3.0.src.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d43dc03a65cb9b1732f185251f5a2067941ad7b28e3272a3d6484d6384c18cb -size 6885318 diff --git a/peazip-8.4.0.src.zip b/peazip-8.4.0.src.zip new file mode 100644 index 0000000..d27c26c --- /dev/null +++ b/peazip-8.4.0.src.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ffb4ca1e912eb89d8d32338166bad2bdb0dc86fffb747921eb2c2b90c8aa74 +size 6896758 diff --git a/peazip.changes b/peazip.changes index 4f48a83..5929d20 100644 --- a/peazip.changes +++ b/peazip.changes @@ -1,3 +1,39 @@ +------------------------------------------------------------------- +Wed Jan 26 13:05:11 UTC 2022 - Paolo Stivanin + +- Update to 8.4.0: + BACKEND + * Pea 1.05 + * 7z 21.06 (console) used by default on Darwin/macOS, Linux, and Windows + * p7zip, and szcnick's p7zip (fork of p7zip) syntax is fully supported + and can be used as alternative replacing (peazip)/res/bin/7z/7z binary + CODE + * Fixed issues when temporary work path is set to user's temp + * Fixed smart extraction not able to remove extra level of nesting + FILE MANAGER + * Added single and multi core performances benchmark, in main menu Tools > System benchmark (pea) + * The benchmark performs integer and floating point arithmetic operations + * Benchmark result unit is arbitrary and only meant to allow comparison between different platforms + * For reference 2020 MacBook Air M1 score is 100 (single core) and 515 (multi core) for aarm64 build + * (Darwin/macOS, Linux) File manager columns' menu is available righclicking status bar + * Added links to Volumes, Applications, and System/Applications in navigation treeview + * Added auto-configured custom apps for "Open with" submenu + * Open command prompt here function now working + * PeaUtils launching from PeaZip now working + * Language can now be changed from dropdown menu from General settings tab (main menu, Options > Settings) + * Previous method allowing to manually select the language file is still available + from the link before the dropdown menu + EXTRACTION and ARCHIVING + * New option to not stop sequences of archive test tasks unless an error is encountered + * From main menu, Options > Settings, Advanced tab set "Stop to inspect report for error, + list" instead of default value "Stop to inspect report for error, list, test" + * With this setting, a successful archive test closes on completion unless an error is foud in the archive and test fails, + in which case error message (and full report) is shown to user and needs to be dismissed + before continuing with following test in sequence + * Improved management of temporary work files + * 7z/p7zip work files during compression are now inside peazip-tmp subpath, + if work directory is set to Custom or User's tem + ------------------------------------------------------------------- Tue Jan 25 14:52:26 UTC 2022 - Dario Faggioli diff --git a/peazip.spec b/peazip.spec index 33cb2e8..46c4370 100644 --- a/peazip.spec +++ b/peazip.spec @@ -17,9 +17,9 @@ %define _peazipinstalldir %{_libdir}/peazip -%define _helpver 8.3.0 +%define _helpver 8.4.0 Name: peazip -Version: 8.3.0 +Version: 8.4.0 Release: 0 Summary: Graphical file archiver License: LGPL-3.0-only diff --git a/peazip_help.pdf b/peazip_help.pdf index 89fcb3f..5ce6ab4 100644 --- a/peazip_help.pdf +++ b/peazip_help.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b43abfc4a7ce3f14ba8d75ca35a50d66021938f474da2367f22b3445a9b59ee7 -size 1085184 +oid sha256:c62361a8f9dce1316181b9b010dc937d031566dbb46e6f0f782e2c25187858ab +size 1091213