forked from pool/peazip
Guillaume GARDET
c32729a7ee
- Update to 8.3.0: BACKEND * Total max length of command scripts generated by the application can be customized from 32KB to 2MB from Options > Settings > General, Performances * szcnick/p7zip regressed from 17.04 to 17.02 due a possible bug handling some zip files different versions / branches of p7zip (provided same syntax is employed) can be used simply replacing binaries in (peazip)res/bin/7z path * Updated to pea 1.04 CODE * Improved compliance with Open Desktop specifications: configuration is now saved in $XDG_CONFIG_HOME/peazip directory; if $XDG_CONFIG_HOME is not defined configuration is saved to $HOME/.config/peazip. To import existing configuration simply copy content of $HOME/.PeaZip directory to the new location * Fixed possible error with progress bar * Fixed possible error not asking password opening some encrypted archives, and reduced false positive cases in which it the application suggested to provide a password * Fixed error reporting information about multi volume archives * Fixed error in file manager selecting files with same characteristics of selected item FILE MANAGER * Shortcuts to /media, /run/media, and /mnt (if not empty) are now featured in navigation tree, under filesystem group * Improved automatically configuring XFCE apps alternatives in "Open with" menu: Mousepad, Midori, Parole, Ristretto * Fixed theming issues with GTK2 * Column header's context menu is now accessible alternatively OBS-URL: https://build.opensuse.org/request/show/931899 OBS-URL: https://build.opensuse.org/package/show/devel:languages:pascal/peazip?expand=0&rev=95
21 lines
719 B
Diff
21 lines
719 B
Diff
--- peazip-8.3.0.src/peach.pas.orig 2021-11-17 08:05:28.276986802 +0100
|
|
+++ peazip-8.3.0.src/peach.pas 2021-11-17 08:05:58.097106865 +0100
|
|
@@ -41412,7 +41412,7 @@
|
|
|
|
procedure TForm_peach.baboutlocalhelpClick(Sender: TObject);
|
|
begin
|
|
-cp_open(sharepath+'peazip_help.pdf',desk_env);
|
|
+cp_open('/usr/share/doc/packages/peazip/peazip_help.pdf',desk_env);
|
|
end;
|
|
|
|
procedure TForm_peach.baboutremoveadditionalClick(Sender: TObject);
|
|
@@ -63622,7 +63622,7 @@
|
|
|
|
procedure TForm_peach.mpeahelpofflineClick(Sender: TObject);
|
|
begin
|
|
-cp_open(sharepath+'peazip_help.pdf',desk_env);
|
|
+cp_open('/usr/share/doc/packages/peazip/peazip_help.pdf',desk_env);
|
|
end;
|
|
|
|
procedure TForm_peach.mRecent9Click(Sender: TObject);
|