SHA256
1
0
forked from pool/peazip
peazip/peazip-help_path.patch
Paolo Stivanin e01be937c2 - Update to 9.6.0:
BACKEND
    * Pea 1.16
  CODE
    * All scripts are now exported as UTF-8 encoded files, without BOM
    * Improved integrity self-checking of app's binaries
    * Libraries (.dll, .so, etc) and sfx modules are now checked (as for executables, matching SHA256 hash values with whitelisted known values)
  FILE MANAGER
    * Improved file / archive manager
    * Added an icon-only Compact sidebar displaying links to most commonly used system paths
    * Compact side bar can be set visible / hidden separately from the main Side bar
    * The Compact side bar is mainly meant for use when Side bar is hidden or in tree view mode
    * Improved browsing archives with some specific TOC issues (duplicated entries for same item, duplicates names with different cases)
    * Improved smart sorting of file names
    * Improved theming
    * All alternative tab styles (Button, Links, and Tabs) can now ne either centered or left aligned
    * Link tab style is now rendered with graphic as the other styles
    * Introduced profiles to store all configuration data (everything in conf path - except Profiles subfolder) to be loaded / saved in a single pass, either for different users or for different purposes, or to easily export all the conf data to another machine
    * Profiles are stored as *.profile.7z archives in "Profiles" subfolder in conf path and can be optionally encrypted with password/keyfile
    * It is possible to load / save profiles from main menu, Options
    * Various fixes and improvements
    * Fixed breadcrumb issues in full screen and immersive modes
    * Improved handling encrypted ARC files
    * Browsing ARC archive with encrypted filenames now correctly triggers password request
    * Extraction from context menu now correctly triggers password request, and can be terminated by the user if wrong password is provided
    * Input name and path is now correctly reported during archiving / extraction / list / test operations
  EXTRACTION and ARCHIVING
    * Improved archives extraction, "Extract then move to destination" is not applied when extracting to new folder, as naming conflict analysis is not needed

OBS-URL: https://build.opensuse.org/package/show/devel:languages:pascal/peazip?expand=0&rev=118
2023-12-22 06:40:53 +00:00

23 lines
764 B
Diff

Index: peazip-9.6.0.src/dev/peach.pas
===================================================================
--- peazip-9.6.0.src.orig/dev/peach.pas
+++ peazip-9.6.0.src/dev/peach.pas
@@ -45035,7 +45035,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);
@@ -69902,7 +69902,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);