forked from pool/peazip
CODE * Added "Requires restarting PeaZip" hint missing in some controls * Created SHA256.txt file containing SHA256 hash of each package in the release * Fixed Options links, now always open General tab as expected * Fixed restart loop switching off history checkbox, improved code against occurrence of similar issues * Fixed symbol lookup error experienced in some Linux ditributions with Qt5 packages * Fixed usupported compression method eoor experienced extracting source package using some unzip utilities FILE MANAGER * Updated translations OBS-URL: https://build.opensuse.org/package/show/devel:languages:pascal/peazip?expand=0&rev=126
23 lines
764 B
Diff
23 lines
764 B
Diff
Index: peazip-9.7.1.src/dev/peach.pas
|
|
===================================================================
|
|
--- peazip-9.7.1.src.orig/dev/peach.pas
|
|
+++ peazip-9.7.1.src/dev/peach.pas
|
|
@@ -45281,7 +45281,7 @@ end;
|
|
|
|
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.baboutplugindirClick(Sender: TObject);
|
|
@@ -70211,7 +70211,7 @@ end;
|
|
|
|
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);
|