├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── make.pas │ └── make.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PeaZip.ShellEx ├── .editorconfig ├── .gitignore ├── .vsconfig ├── Directory.Build.props ├── PeaZip.Package │ ├── Assets │ │ ├── AppList.scale-100.png │ │ ├── AppList.scale-200.png │ │ ├── AppList.scale-400.png │ │ ├── AppList.targetsize-16.png │ │ ├── AppList.targetsize-16_altform-lightunplated.png │ │ ├── AppList.targetsize-16_altform-unplated.png │ │ ├── AppList.targetsize-24.png │ │ ├── AppList.targetsize-24_altform-lightunplated.png │ │ ├── AppList.targetsize-24_altform-unplated.png │ │ ├── AppList.targetsize-256.png │ │ ├── AppList.targetsize-256_altform-lightunplated.png │ │ ├── AppList.targetsize-256_altform-unplated.png │ │ ├── AppList.targetsize-32.png │ │ ├── AppList.targetsize-32_altform-lightunplated.png │ │ ├── AppList.targetsize-32_altform-unplated.png │ │ ├── AppList.targetsize-48.png │ │ ├── AppList.targetsize-48_altform-lightunplated.png │ │ ├── AppList.targetsize-48_altform-unplated.png │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── Pea.scale-100.png │ │ ├── Pea.targetsize-16.png │ │ ├── Pea.targetsize-16_altform-lightunplated.png │ │ ├── Pea.targetsize-16_altform-unplated.png │ │ ├── Pea.targetsize-24.png │ │ ├── Pea.targetsize-24_altform-lightunplated.png │ │ ├── Pea.targetsize-24_altform-unplated.png │ │ ├── Pea.targetsize-256.png │ │ ├── Pea.targetsize-256_altform-lightunplated.png │ │ ├── Pea.targetsize-256_altform-unplated.png │ │ ├── Pea.targetsize-32.png │ │ ├── Pea.targetsize-32_altform-lightunplated.png │ │ ├── Pea.targetsize-32_altform-unplated.png │ │ ├── Pea.targetsize-48.png │ │ ├── Pea.targetsize-48_altform-lightunplated.png │ │ ├── Pea.targetsize-48_altform-unplated.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Images │ │ ├── peazip.ai │ │ └── peazip.svg │ ├── Package.appxmanifest │ ├── PeaZip.Package.assets.cache │ ├── PeaZip.Package.wapproj │ ├── PeaZip.Package.wapproj.user │ ├── PeaZip.Package_TemporaryKey.pfx │ ├── Strings │ │ └── en │ │ │ └── ManifestResources.resw │ └── obj │ │ ├── PeaZip.Package.wapproj.nuget.dgspec.json │ │ ├── PeaZip.Package.wapproj.nuget.g.props │ │ ├── PeaZip.Package.wapproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── PeaZip.ShellEx.sln ├── PeaZip.ShellEx │ ├── AnalyzeCommand.cpp │ ├── AnalyzeCommand.h │ ├── BrowsePathCommand.cpp │ ├── BrowsePathCommand.h │ ├── Commands.h │ ├── ExplorerCommandBase.cpp │ ├── ExplorerCommandBase.h │ ├── ExplorerCommandRoot.cpp │ ├── ExplorerCommandRoot.h │ ├── PeaZip.ShellEx.vcxproj │ ├── PeaZip.ShellEx.vcxproj.filters │ ├── PeaZip.ShellEx.vcxproj.user │ ├── Source.def │ ├── Strings │ │ ├── be-Latn │ │ │ └── Resources.resw │ │ ├── be │ │ │ └── Resources.resw │ │ ├── bg │ │ │ └── Resources.resw │ │ ├── ca │ │ │ └── Resources.resw │ │ ├── cs-cz │ │ │ └── Resources.resw │ │ ├── de │ │ │ └── Resources.resw │ │ ├── el-gr │ │ │ └── Resources.resw │ │ ├── en-gb │ │ │ └── Resources.resw │ │ ├── en │ │ │ └── Resources.resw │ │ ├── es-419 │ │ │ └── Resources.resw │ │ ├── es-es │ │ │ └── Resources.resw │ │ ├── eu │ │ │ └── Resources.resw │ │ ├── fi │ │ │ └── Resources.resw │ │ ├── fr │ │ │ └── Resources.resw │ │ ├── hu │ │ │ └── Resources.resw │ │ ├── id │ │ │ └── Resources.resw │ │ ├── it │ │ │ └── Resources.resw │ │ ├── ja-JP │ │ │ └── Resources.resw │ │ ├── ko │ │ │ └── Resources.resw │ │ ├── lv │ │ │ └── Resources.resw │ │ ├── nl │ │ │ └── Resources.resw │ │ ├── pl │ │ │ └── Resources.resw │ │ ├── pt-br │ │ │ └── Resources.resw │ │ ├── pt-pt │ │ │ └── Resources.resw │ │ ├── ru │ │ │ └── Resources.resw │ │ ├── sl │ │ │ └── Resources.resw │ │ ├── sv │ │ │ └── Resources.resw │ │ ├── tr │ │ │ └── Resources.resw │ │ ├── uk │ │ │ └── Resources.resw │ │ ├── zh-Hans │ │ │ └── Resources.resw │ │ └── zh-Hant │ │ │ └── Resources.resw │ ├── dllmain.cpp │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ ├── util.icon.cpp │ ├── util.icon.ixx │ ├── util.registry.cpp │ └── util.registry.ixx └── readme.txt ├── READEME.zh.md ├── README.md ├── SECURITY.md └── peazip-sources ├── dev ├── !b.bat ├── !ball.bat ├── !ballxl.bat ├── !bdll.bat ├── ##c_all.bat ├── ##c_d10x.bat ├── #bdll.bat ├── #c_tb2n.bat ├── #c_tb2na.bat ├── #c_tb64.bat ├── #c_tbita.bat ├── #c_tbtyp.bat ├── #c_tcv.bat ├── #c_tdat.bat ├── #c_tfio.bat ├── #c_thrt.bat ├── #c_tsort.bat ├── #c_tstat.bat ├── #ca.bat ├── #ca_dll.bat ├── #ca_fca.bat ├── #ca_fca256.bat ├── #ca_fcs256.bat ├── #ca_fct256.bat ├── #ca_fzca.bat ├── #ca_tfcs.bat ├── #ca_tfct.bat ├── #capp.bat ├── #times ├── #times.aes ├── #times.tf ├── $d25.zip ├── $log_aes.zip ├── $log_crc.zip ├── $log_fca.zip ├── $log_sp.zip ├── $log_tf.zip ├── $log_utl.zip ├── $testlog.zip ├── $tstlogp.zip ├── _tsc.asm ├── _tsc.obj ├── adler32.pas ├── aes_base.pas ├── aes_cbc.pas ├── aes_ccm.pas ├── aes_cfb.pas ├── aes_cfb8.pas ├── aes_cmac.pas ├── aes_conf.inc ├── aes_cprf.pas ├── aes_ctr.pas ├── aes_decr.pas ├── aes_dll.dof ├── aes_dll.dpr ├── aes_dll.res ├── aes_eax.pas ├── aes_ecb.pas ├── aes_encr.pas ├── aes_gcm.pas ├── aes_intf.pas ├── aes_intv.pas ├── aes_ofb.pas ├── aes_omac.pas ├── aes_seek.inc ├── aes_type.pas ├── aes_xts.pas ├── align.inc ├── ansiutf8_utils.pas ├── base2n.pas ├── bcrc32.pas ├── bcrc64.pas ├── bitarray.pas ├── bjl3.pas ├── blakb384.pas ├── blakb512.pas ├── blake2b.pas ├── blake2s.pas ├── blaks224.pas ├── blaks256.pas ├── btypes.pas ├── ch_dll.dof ├── ch_dll.dpr ├── ch_dll.res ├── ch_intf.pas ├── ch_intv.pas ├── cl.bat ├── comp_speed ├── compvers.pas ├── copying_we.txt ├── crc16.pas ├── crc24.pas ├── crc32.pas ├── crc64.pas ├── crc_sick.pas ├── crcm_cat.pas ├── crcmodel.pas ├── dates.pas ├── dec_ca16.inc ├── dec_cdat.inc ├── dec_cp16.inc ├── dec_cp32.inc ├── dec_fa16.inc ├── dec_fdat.inc ├── dec_fp16.inc ├── dec_fp32.inc ├── dragdropfilesdll.src │ ├── DragDrop.dcr │ ├── DragDrop.inc │ ├── DragDrop.pas │ ├── DragDropComObj.pas │ ├── DragDropContext.dcr │ ├── DragDropContext.pas │ ├── DragDropDesign.dcr │ ├── DragDropDesign.lrs │ ├── DragDropDesign.pas │ ├── DragDropFile.dcr │ ├── DragDropFile.pas │ ├── DragDropFormats.pas │ ├── DragDropGraphics.dcr │ ├── DragDropGraphics.pas │ ├── DragDropHandler.dcr │ ├── DragDropHandler.pas │ ├── DragDropInternet.dcr │ ├── DragDropInternet.pas │ ├── DragDropLazarus.lpk │ ├── DragDropLazarus.pas │ ├── DragDropPIDL.dcr │ ├── DragDropPIDL.pas │ ├── DragDropText.dcr │ ├── DragDropText.pas │ ├── DropComboTarget.dcr │ ├── DropComboTarget.pas │ ├── DropHandler.dcr │ ├── DropHandler.pas │ ├── DropSource.dcr │ ├── DropSource.pas │ ├── DropTarget.dcr │ ├── DropTarget.pas │ ├── DropTargetCur.res │ ├── dragdropfilesdll.lpi │ ├── dragdropfilesdll.lpr │ ├── dragdropfilesdll.lps │ ├── dragdropfilesdll.pas │ ├── mymetafile.pas │ ├── readme-dragdropfilesdll.txt │ ├── readme.txt │ ├── unitdragdropfilesdll.lfm │ └── unitdragdropfilesdll.pas ├── ed2k.pas ├── enc_ca16.inc ├── enc_cdat.inc ├── enc_cp16.inc ├── enc_cp32.inc ├── enc_fa16.inc ├── enc_fdat.inc ├── enc_fp16.inc ├── enc_fp32.inc ├── fca.pas ├── fca256.pas ├── fca_dec.pas ├── fca_enc.pas ├── fcaes256.pas ├── fcrc32.pas ├── fcrypta.pas ├── fcrypts.pas ├── fcryptt.pas ├── fcsp256.pas ├── fctf256.pas ├── file_id.diz ├── fio.pas ├── fpc-res.res ├── fzca.pas ├── hash.pas ├── history ├── history.crc ├── hmac.pas ├── hmac_md5.pas ├── hmacs5t.pas ├── hmacsha1.pas ├── hmacsha2.pas ├── hmacsha5.pas ├── hmacwhir.pas ├── hotp.pas ├── how-to-use-translations.txt ├── hrtimer.pas ├── img_utils.pas ├── installer │ ├── peazip-icon-green.ico │ ├── peazip-setup_script-configure.iss │ ├── peazip-setup_script_WIN64.iss │ └── peazip-setup_script_WINDOWS.iss ├── intro.txt ├── kdf.pas ├── keyderiv.pas ├── kperm_16.inc ├── kperm_32.inc ├── kperm_64.inc ├── kperm_mp.inc ├── kperm_mx.inc ├── legal.txt ├── link.res ├── link10720.res ├── link13004.res ├── link6028.res ├── link6236.res ├── link7124.res ├── link7420.res ├── link8676.res ├── link8836.res ├── link9384.res ├── list_utils.pas ├── mak_fca256.bat ├── mak_fzca.bat ├── make_fca.bat ├── manifest ├── manifest.aes ├── manifest.crc ├── manifest.rc ├── manifest.res ├── manifest.tf ├── manifest.utl ├── manifests.bat ├── md4.pas ├── md5.pas ├── mem_util.pas ├── memh.pas ├── metadarkstyle │ ├── metadarkstyle.lpk │ ├── metadarkstyle.pas │ └── src │ │ ├── CustomDark.darkstylecolors │ │ ├── CustomDark.lrs │ │ ├── metadarkstyledsgnoptions.pas │ │ ├── metadarkstyledsgnoptionsframe.lfm │ │ ├── metadarkstyledsgnoptionsframe.pas │ │ ├── registermetadarkstyledsgn.pas │ │ ├── udarkstyle.pas │ │ ├── udarkstyleparams.pas │ │ ├── udarkstyleschemes.pas │ │ ├── udarkstyleschemesadditional.pas │ │ ├── udarkstyleschemesloader.pas │ │ ├── uimport.pas │ │ ├── umetadarkstyle.pas │ │ └── uwin32widgetsetdark.pas ├── ministat.pas ├── options.zip ├── pb_kdf.pas ├── pea.rc ├── pea.res ├── pea_utils.pas ├── peach.lfm ├── peach.lrs ├── peach.pas ├── pealauncher.ico ├── pealauncher.res ├── peazip.ico ├── peazip.rc ├── peazip.res ├── peazip16.ico ├── ppas.bat ├── ppp.pas ├── project_demo_lib.lpi ├── project_demo_lib.lpr ├── project_pea.ico ├── project_pea.lpi ├── project_pea.lpr ├── project_pea.manifest ├── project_pea.obj ├── project_pea.rc ├── project_pea.res ├── project_peach.ico ├── project_peach.lpi ├── project_peach.lpr ├── project_peach.manifest ├── project_peach.obj ├── project_peach.rc ├── project_peach.res ├── readme-pack.txt ├── readme.aes ├── readme.crc ├── readme.eng ├── readme.fca ├── readme.ger ├── readme.tf ├── readme.utl ├── readme_Linux.txt ├── readme_about_translations.txt ├── readme_about_windows_context_menu.txt ├── readme_macOS.txt ├── rfs_utils.pas ├── rmd160.pas ├── samples.zip ├── scrypt.pas ├── sha1.pas ├── sha224.pas ├── sha256.pas ├── sha256unroll.zip ├── sha3.pas ├── sha384.pas ├── sha3_224.pas ├── sha3_256.pas ├── sha3_384.pas ├── sha3_512.pas ├── sha512.pas ├── sha5_224.pas ├── sha5_256.pas ├── sort.pas ├── sp_base.pas ├── sp_cbc.pas ├── sp_cfb.pas ├── sp_ctr.pas ├── sp_dll.dpr ├── sp_dll.res ├── sp_eax.pas ├── sp_ecb.pas ├── sp_intf.pas ├── sp_intv.pas ├── sp_ofb.pas ├── sp_omac.pas ├── sp_seek.inc ├── src.bat ├── std.inc ├── t_1mio_a.pas ├── t_512mb.pas ├── t_adler.pas ├── t_aes_as.pas ├── t_aes_cs.pas ├── t_aes_ws.pas ├── t_aes_xl.pas ├── t_aescbc.pas ├── t_aesccm.pas ├── t_aescf8.pas ├── t_aescfb.pas ├── t_aescrp.pas ├── t_aesctr.pas ├── t_aesecb.pas ├── t_aesgcm.pas ├── t_aesofb.pas ├── t_aestab.pas ├── t_all.pas ├── t_all_xl.pas ├── t_allxl.pas ├── t_bas2na.dpr ├── t_bas2na.pas ├── t_base2n.pas ├── t_base64.pas ├── t_bcrc32.pas ├── t_bcrc64.pas ├── t_bitar3.pas ├── t_bitarr.pas ├── t_btypes.pas ├── t_by4.pas ├── t_cbccts.pas ├── t_cmac.pas ├── t_cmodel.pas ├── t_cprf.pas ├── t_crc16.pas ├── t_crc24.pas ├── t_crc24c.pas ├── t_crc32.pas ├── t_crc64.pas ├── t_ctab24.pas ├── t_ctab64.pas ├── t_cv.pas ├── t_cyccnt.pas ├── t_cycenc.pas ├── t_dates.pas ├── t_decrsp.pas ├── t_eax1.pas ├── t_eax2.pas ├── t_ecbcts.pas ├── t_ed2k.pas ├── t_ed2kv.pas ├── t_encrsp.pas ├── t_fbmodi.pas ├── t_fcrc32.pas ├── t_fcs.pas ├── t_fcs256.pas ├── t_fct.pas ├── t_fct256.pas ├── t_fio.pas ├── t_fnstr.pas ├── t_gsp128.pas ├── t_gspeed.pas ├── t_hmac.pas ├── t_hmac2.pas ├── t_hmac3.pas ├── t_hmacob.pas ├── t_hmsha3.pas ├── t_hotp.pas ├── t_hrt.pas ├── t_kderiv.pas ├── t_kdf.c ├── t_kdf.pas ├── t_mcst.pas ├── t_mctful.pas ├── t_md4.pas ├── t_md5.pas ├── t_mkctab.pas ├── t_mstat.pas ├── t_oid.pas ├── t_omac.pas ├── t_pbkdf.pas ├── t_ppp.pas ├── t_rmd160.pas ├── t_scrypt.pas ├── t_self1.zip ├── t_sha1.pas ├── t_sha224.pas ├── t_sha256.pas ├── t_sha384.pas ├── t_sha3_1.pas ├── t_sha3_2.pas ├── t_sha512.pas ├── t_shak01.pas ├── t_shak02.pas ├── t_sick.pas ├── t_sort.pas ├── t_sp_csk.pas ├── t_sp_cts.pas ├── t_sp_cyc.pas ├── t_sp_eax.pas ├── t_sp_ws.pas ├── t_sp_xl.pas ├── t_speed.pas ├── t_speeda.pas ├── t_speedb.ini ├── t_speedb.pas ├── t_spomac.pas ├── t_tf01.pas ├── t_tf02.pas ├── t_tf_csk.pas ├── t_tf_eax.pas ├── t_tf_ws.pas ├── t_tf_xl.pas ├── t_tfcycl.pas ├── t_tfomac.pas ├── t_whirl.pas ├── t_whirlb.pas ├── t_xts.pas ├── tbigsha2.pas ├── tcrc16.dpr ├── tcrc16.res ├── tcrc16u.dfm ├── tcrc16u.pas ├── tf_base.pas ├── tf_cbc.pas ├── tf_cfb.pas ├── tf_ctr.pas ├── tf_dll.dof ├── tf_dll.dpr ├── tf_dll.res ├── tf_eax.pas ├── tf_ecb.pas ├── tf_intf.pas ├── tf_intv.pas ├── tf_ofb.pas ├── tf_omac.pas ├── tf_seek.inc ├── tsc.pas ├── tv_hmac-sha3.txt ├── unit1.lfm ├── unit1.lrs ├── unit1.pas ├── unit10.lfm ├── unit10.lrs ├── unit10.pas ├── unit11.lfm ├── unit11.lrs ├── unit11.pas ├── unit12.lfm ├── unit12.lrs ├── unit12.pas ├── unit13.lfm ├── unit13.lrs ├── unit13.pas ├── unit14.lfm ├── unit14.lrs ├── unit14.pas ├── unit2.lfm ├── unit2.lrs ├── unit2.pas ├── unit3.lfm ├── unit3.lrs ├── unit3.pas ├── unit5.lfm ├── unit5.lrs ├── unit5.pas ├── unit6.lfm ├── unit6.lrs ├── unit6.pas ├── unit7.lfm ├── unit7.lrs ├── unit7.pas ├── unit8.lfm ├── unit8.lrs ├── unit8.pas ├── unit9.lfm ├── unit9.lrs ├── unit9.pas ├── unit_demo_lib.lfm ├── unit_demo_lib.lrs ├── unit_demo_lib.pas ├── unit_gwrap.lfm ├── unit_gwrap.lrs ├── unit_gwrap.pas ├── unit_pea.lfm ├── unit_pea.lrs ├── unit_pea.pas ├── unit_report.lfm ├── unit_report.lrs ├── unit_report.pas ├── util.cnt ├── util.hlp ├── util.pas ├── util.tph ├── whirl512.pas ├── windres_pea.bat └── windres_peazip.bat ├── readme.txt └── res ├── bin ├── 7z │ └── place 7z binary here.txt ├── arc │ └── place arc binary here.txt ├── brotli │ └── place brotli binary here.txt ├── lpaq │ └── place lpaq binary here.txt ├── paq │ └── place paq binary here.txt ├── quad │ └── place quad binary here.txt ├── readme-bin.txt ├── upx │ └── place upx binary here.txt ├── zpaq │ └── place zpaq binary here.txt └── zstd │ └── place zstd binary here.txt ├── conf └── conf.txt ├── portable ├── readme-res.txt └── share ├── batch ├── Windows │ ├── SendTo │ │ ├── SendTo_Program Files (x86) │ │ │ ├── Add to 7Z and send by mail.lnk │ │ │ ├── Add to 7Z.lnk │ │ │ ├── Add to BZip2.lnk │ │ │ ├── Add to Brotli.lnk │ │ │ ├── Add to GZip.lnk │ │ │ ├── Add to PEA.lnk │ │ │ ├── Add to TAR.lnk │ │ │ ├── Add to WIM.lnk │ │ │ ├── Add to XZ.lnk │ │ │ ├── Add to ZIP and send by mail.lnk │ │ │ ├── Add to ZIP.lnk │ │ │ ├── Add to Zpaq.lnk │ │ │ ├── Add to Zstd.lnk │ │ │ ├── Add to archive.lnk │ │ │ ├── Add to self-extracting archive.lnk │ │ │ ├── Add to separate 7Z.lnk │ │ │ ├── Add to separate ZIP.lnk │ │ │ ├── Add to sfx and send by mail.lnk │ │ │ ├── Browse path with PeaZip.lnk │ │ │ ├── Convert.lnk │ │ │ ├── Encrypt (PEA).lnk │ │ │ ├── Extract here (smart new folder).lnk │ │ │ ├── Extract here.lnk │ │ │ ├── Extract to Desktop.lnk │ │ │ ├── Extract to Documents.lnk │ │ │ ├── Extract to Downloads.lnk │ │ │ ├── Extract....lnk │ │ │ ├── Open as archive.lnk │ │ │ ├── Open command prompt here.lnk │ │ │ ├── Secure delete.lnk │ │ │ ├── Split file.lnk │ │ │ └── Test archive(s).lnk │ │ ├── SendTo_Program Files │ │ │ ├── Add to 7Z and send by mail.lnk │ │ │ ├── Add to 7Z.lnk │ │ │ ├── Add to BZip2.lnk │ │ │ ├── Add to Brotli.lnk │ │ │ ├── Add to GZip.lnk │ │ │ ├── Add to PEA.lnk │ │ │ ├── Add to TAR.lnk │ │ │ ├── Add to WIM.lnk │ │ │ ├── Add to XZ.lnk │ │ │ ├── Add to ZIP and send by mail.lnk │ │ │ ├── Add to ZIP.lnk │ │ │ ├── Add to Zpaq.lnk │ │ │ ├── Add to Zstd.lnk │ │ │ ├── Add to archive.lnk │ │ │ ├── Add to self-extracting archive.lnk │ │ │ ├── Add to separate .7Z.lnk │ │ │ ├── Add to separate .ZIP.lnk │ │ │ ├── Add to sfx and send by mail.lnk │ │ │ ├── Browse path with PeaZip.lnk │ │ │ ├── Convert.lnk │ │ │ ├── Encrypt (PEA).lnk │ │ │ ├── Extract here (smart new folder).lnk │ │ │ ├── Extract here.lnk │ │ │ ├── Extract to Desktop.lnk │ │ │ ├── Extract to Documents.lnk │ │ │ ├── Extract to Downloads.lnk │ │ │ ├── Extract....lnk │ │ │ ├── Open as archive.lnk │ │ │ ├── Open command prompt here.lnk │ │ │ ├── Secure delete.lnk │ │ │ ├── Split file.lnk │ │ │ └── Test archive(s).lnk │ │ └── readme-SendTo.txt │ └── Windows 11 mini context menu │ │ ├── add PeaZip, add to 7Z.reg │ │ ├── add PeaZip, add to BZip2.reg │ │ ├── add PeaZip, add to Brotli.reg │ │ ├── add PeaZip, add to GZip.reg │ │ ├── add PeaZip, add to PEA.reg │ │ ├── add PeaZip, add to TAR.reg │ │ ├── add PeaZip, add to WIM.reg │ │ ├── add PeaZip, add to XZ.reg │ │ ├── add PeaZip, add to ZIP.reg │ │ ├── add PeaZip, add to Zpaq.reg │ │ ├── add PeaZip, add to Zstd.reg │ │ ├── add PeaZip, add to archive.reg │ │ ├── add PeaZip, convert archives.reg │ │ ├── add PeaZip, extract here (smart new folder).reg │ │ ├── add PeaZip, extract here.reg │ │ ├── add PeaZip, extract to Desktop.reg │ │ ├── add PeaZip, extract to Documents.reg │ │ ├── add PeaZip, extract to Downloads.reg │ │ ├── add PeaZip, extract....reg │ │ ├── add PeaZip, open file or folder.reg │ │ ├── readme mini context menu.txt │ │ └── remove PeaZip entries.reg ├── bat │ ├── Add to 7z.bat │ ├── Add to archive.bat │ ├── Add to brotli.bat │ ├── Add to bzip2.bat │ ├── Add to gzip.bat │ ├── Add to pea.bat │ ├── Add to tar.bat │ ├── Add to wim.bat │ ├── Add to xz.bat │ ├── Add to zip.bat │ ├── Add to zpaq.bat │ ├── Add to zstd.bat │ ├── Convert.bat │ ├── Extract here (smart new folder).bat │ ├── Extract to Desktop.bat │ ├── Extract to Documents.bat │ ├── Extract to Downloads.bat │ ├── Extract....bat │ ├── Open as archive.bat │ ├── Remove comment.bat │ ├── Set comment from file.bat │ ├── Set comment.bat │ ├── Test.bat │ └── peazip-reset.bat ├── freedesktop_integration │ ├── KDE-servicemenus │ │ ├── KDE3-konqueror │ │ │ ├── peazipadd.desktop │ │ │ ├── peazipconvert.desktop │ │ │ ├── peazipext.desktop │ │ │ ├── peazipextfolder.desktop │ │ │ ├── peazipexthere.desktop │ │ │ └── peazipopen.desktop │ │ ├── KDE4-dolphin │ │ │ ├── peazipadd.desktop │ │ │ ├── peazipconvert.desktop │ │ │ ├── peazipext.desktop │ │ │ ├── peazipextfolder.desktop │ │ │ ├── peazipexthere.desktop │ │ │ └── peazipopen.desktop │ │ ├── KDE5-dolphin │ │ │ ├── peazipadd.desktop │ │ │ ├── peazipconvert.desktop │ │ │ ├── peazipext.desktop │ │ │ ├── peazipextfolder.desktop │ │ │ ├── peazipexthere.desktop │ │ │ ├── peazipopen.desktop │ │ │ └── peaziptest.desktop │ │ ├── KDE6-dolphin │ │ │ ├── peazip-kde6-minimal.desktop │ │ │ └── peazip-kde6.desktop │ │ ├── add_peazip_to_kde_context_menu.sh │ │ └── readme_add_peazip_to_kde_context_menu.txt │ ├── Nautilus-scripts │ │ ├── PeaZip │ │ │ ├── Add to Archive │ │ │ ├── Convert │ │ │ ├── Extract Archive │ │ │ ├── Extract Here │ │ │ ├── Extract to New Folder │ │ │ ├── Open Archive │ │ │ └── Test │ │ ├── add_peazip_to_gnome_context_menu.sh │ │ └── readme_add_peazip_to_gnome_context_menu.txt │ ├── additional-desktop-files │ │ ├── peazip-add-to-7z.desktop │ │ ├── peazip-add-to-archive.desktop │ │ ├── peazip-add-to-brotli.desktop │ │ ├── peazip-add-to-bzip2.desktop │ │ ├── peazip-add-to-gzip.desktop │ │ ├── peazip-add-to-pea.desktop │ │ ├── peazip-add-to-tar.desktop │ │ ├── peazip-add-to-wim.desktop │ │ ├── peazip-add-to-xz.desktop │ │ ├── peazip-add-to-zip.desktop │ │ ├── peazip-add-to-zpaq.desktop │ │ ├── peazip-add-to-zstd.desktop │ │ ├── peazip-convert.desktop │ │ ├── peazip-extract-desktop.desktop │ │ ├── peazip-extract-documents.desktop │ │ ├── peazip-extract-downloads.desktop │ │ ├── peazip-extract-here.desktop │ │ ├── peazip-extract-smart.desktop │ │ ├── peazip-extract.desktop │ │ ├── peazip-open.desktop │ │ ├── peazip-test.desktop │ │ ├── peazip_7z.png │ │ ├── peazip_add.png │ │ ├── peazip_cd.png │ │ ├── peazip_convert.png │ │ ├── peazip_extract.png │ │ └── peazip_zip.png │ ├── peazip-add-to-archive.desktop │ ├── peazip-extract.desktop │ ├── peazip.desktop │ ├── peazip.png │ ├── peazip_add.png │ ├── peazip_extract.png │ └── readme_freedesktop_integration.txt ├── macOS service menus │ ├── PeaZip, add to BZ2.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, add to Brotli.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, add to GZ.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, add to TAR.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, add to XZ.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, add to Zstd.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, add to archive.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, convert.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, extract here (smart new folder).workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, extract to Desktop.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ ├── PeaZip, extract to Documents.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Thumbnail.png │ │ │ └── document.wflow │ └── PeaZip, extract to Downloads.workflow │ │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── readme-batch.txt └── sh │ ├── Add to 7z.sh │ ├── Add to archive.sh │ ├── Add to brotli.sh │ ├── Add to bzip2.sh │ ├── Add to gzip.sh │ ├── Add to pea.sh │ ├── Add to tar.sh │ ├── Add to wim.sh │ ├── Add to xz.sh │ ├── Add to zip.sh │ ├── Add to zpaq.sh │ ├── Add to zstd.sh │ ├── Convert.sh │ ├── Extract here (smart new folder).sh │ ├── Extract to Desktop.sh │ ├── Extract to Documents.sh │ ├── Extract to Downloads.sh │ ├── Extract....sh │ ├── Open as archive.sh │ ├── Remove comment.sh │ ├── Set comment from file.sh │ ├── Set comment.sh │ ├── Test.sh │ └── peazip-reset.sh ├── copying ├── copying.txt └── third-parties │ ├── 7z License.txt │ ├── 7z codecs LICENSE.txt │ ├── 7z note.txt │ ├── arc license.txt │ ├── bcm LICENSE.txt │ ├── bcm note.txt │ ├── brotli note.txt │ ├── lpaq COPYING.txt │ ├── lpaq note.txt │ ├── paq COPYING.txt │ ├── paq note.txt │ ├── upx note.txt │ ├── zpaq note.txt │ └── zstd note.txt ├── icons ├── PeaZip_7z.icns ├── PeaZip_7z.ico ├── PeaZip_archive.icns ├── PeaZip_archive.ico ├── PeaZip_block.icns ├── PeaZip_block.ico ├── PeaZip_cd.icns ├── PeaZip_cd.ico ├── PeaZip_package.icns ├── PeaZip_package.ico ├── PeaZip_rar.icns ├── PeaZip_rar.ico ├── PeaZip_zip.icns ├── PeaZip_zip.ico ├── peazip.icns ├── peazip.ico ├── peazip.png ├── peazip_7z.png ├── peazip_add.png ├── peazip_add_alt.png ├── peazip_archive.png ├── peazip_block.png ├── peazip_browse.png ├── peazip_cd.png ├── peazip_classic.icns ├── peazip_classic.ico ├── peazip_classic.png ├── peazip_convert.png ├── peazip_extract.png ├── peazip_extract_alt.png ├── peazip_package.png ├── peazip_rar.png ├── peazip_seven.icl ├── peazip_zip.png └── readme-icons.txt ├── lang-wincontext ├── bg.reg ├── bg.txt ├── by-cr.reg ├── by-lt.reg ├── ca.reg ├── chs.reg ├── cht.reg ├── cz.reg ├── de-uml.reg ├── default.reg ├── en-gb.reg ├── en.reg ├── es-es.reg ├── es-la.reg ├── eu.reg ├── fi.reg ├── fr.reg ├── fr_alt.reg ├── fr_alt2.reg ├── gr.reg ├── hu.reg ├── id.reg ├── it.reg ├── ja.reg ├── ko.reg ├── lv.reg ├── nl.reg ├── pl.reg ├── pt-br.reg ├── pt-pt.reg ├── ru.reg ├── sl.reg ├── sv.reg ├── tr.reg └── uk.reg ├── lang ├── ar.txt ├── bg.txt ├── by-cr.txt ├── by-lt.txt ├── ca.txt ├── chs.txt ├── cht.txt ├── cz.txt ├── de-uml.txt ├── default.txt ├── en-gb.txt ├── en.txt ├── es-es.txt ├── es-la.txt ├── eu.txt ├── fi.txt ├── fr.txt ├── fr_alt.txt ├── gl.txt ├── gr.txt ├── he-prototype.txt ├── hu.txt ├── id.txt ├── it.txt ├── ja.txt ├── ko.txt ├── lv.txt ├── nl.txt ├── no.txt ├── pl.txt ├── pt-br.txt ├── pt-pt.txt ├── ro.txt ├── ru.txt ├── si.txt ├── sk.txt ├── sl.txt ├── sv.txt ├── tj.txt ├── tr.txt ├── uk.txt ├── uz.txt └── vn.txt ├── peazip_help.pdf ├── presets ├── 0.txt ├── 1.txt ├── 10.txt ├── 11.txt ├── 12.txt ├── 13.txt ├── 14.txt ├── 15.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt ├── 7.txt ├── 8.txt ├── 9.txt └── alt │ ├── 11.txt │ ├── 12.txt │ ├── 7z-brotli.txt │ ├── arc.txt │ ├── brotli.txt │ ├── cb7.txt │ ├── cbr.txt │ ├── cbt.txt │ ├── cbz.txt │ ├── zip-bzip2.txt │ ├── zpaq.txt │ └── zstandard.txt ├── readme ├── readme_Linux.txt ├── readme_Windows.txt └── readme_macOS.txt └── themes ├── different.theme.7z ├── droid.theme.7z ├── line.theme.7z ├── mac-dark.theme.7z ├── mac.theme.7z ├── main-box.theme.7z ├── main-cube.theme.7z ├── main-dark.theme.7z ├── main-embedded ├── fm-theme.bmp └── readme.txt ├── main-mug.theme.7z ├── main.theme.7z ├── nographic-embedded ├── fm-theme.bmp └── readme.txt ├── ten-dark.theme.7z ├── ten.theme.7z ├── tux-alt.theme.7z ├── tux-dark.theme.7z ├── tux.theme.7z ├── tuxedo-alt.theme.7z └── tuxedo.theme.7z /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: https://peazip.github.io/donations.html 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 2 3 | updates: 4 | - package-ecosystem: "github-actions" 5 | directory: "/" 6 | schedule: 7 | interval: "monthly" 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | use/*/ 2 | **/backup/ 3 | **/lib/ 4 | *.res 5 | *.dbg 6 | *.lps 7 | *.compiled 8 | *.o 9 | *.or 10 | *.so 11 | *.ppu 12 | 13 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/.gitignore: -------------------------------------------------------------------------------- 1 | # Visual Studio cache/options directory 2 | .vs/ 3 | # Build results 4 | artifacts/ 5 | **/x64/ 6 | input/** 7 | # The packages folder can be ignored because of Package Restore 8 | packages/ 9 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.Component.MSBuild", 5 | "Microsoft.VisualStudio.Component.Roslyn.Compiler", 6 | "Microsoft.VisualStudio.Component.TextTemplating", 7 | "Microsoft.VisualStudio.Component.VC.CoreIde", 8 | "Microsoft.VisualStudio.Component.VC.Redist.14.Latest", 9 | "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", 10 | "Microsoft.VisualStudio.Component.NuGet", 11 | "Microsoft.VisualStudio.Component.Windows11SDK.22621", 12 | "Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core", 13 | "Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging", 14 | "Microsoft.VisualStudio.ComponentGroup.UWP.VC", 15 | "Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cpp", 16 | "Microsoft.VisualStudio.Workload.NativeDesktop" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.scale-100.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.scale-200.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.scale-400.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-16.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-16_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-16_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-24.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-24_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-24_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-256.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-256_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-256_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-32.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-32_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-32_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-48.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-48_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-48_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/AppList.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.scale-100.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-16.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-16_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-16_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-24.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-24_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-24_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-256.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-256_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-256_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-32.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-32_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-32_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-48.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-48_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-48_altform-lightunplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Pea.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/Images/peazip.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/Images/peazip.ai -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/PeaZip.Package.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/PeaZip.Package.assets.cache -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/PeaZip.Package_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/PeaZip.ShellEx/PeaZip.Package/PeaZip.Package_TemporaryKey.pfx -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/obj/PeaZip.Package.wapproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.Package/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "oqziiZxLVg8=", 4 | "success": true, 5 | "projectFilePath": "D:\\source\\repos\\PeaZip\\PeaZip.ShellEx\\PeaZip.Package\\PeaZip.Package.wapproj", 6 | "expectedPackageFiles": [ 7 | "D:\\Users\\ycco3\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.26100.1\\microsoft.windows.sdk.buildtools.10.0.26100.1.nupkg.sha512", 8 | "D:\\Users\\ycco3\\.nuget\\packages\\microsoft.windowsappsdk\\1.5.240607001\\microsoft.windowsappsdk.1.5.240607001.nupkg.sha512" 9 | ], 10 | "logs": [] 11 | } -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/AnalyzeCommand.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "ExplorerCommandBase.h" 3 | 4 | struct AnalyzeCommand : ExplorerCommandBase 5 | { 6 | AnalyzeCommand(); 7 | ~AnalyzeCommand(); 8 | 9 | private: 10 | virtual const wchar_t* Application() const noexcept override final; 11 | }; 12 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/BrowsePathCommand.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "ExplorerCommandBase.h" 3 | 4 | struct __declspec(uuid("01F6DED1-42C8-4CFA-9F2D-96998BA8BB17")) BrowsePathCommand : ExplorerCommandBase 5 | { 6 | BrowsePathCommand(); 7 | ~BrowsePathCommand(); 8 | HRESULT __stdcall GetCanonicalName(GUID* pguidCommandName) noexcept override; 9 | }; 10 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/PeaZip.ShellEx.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | false 5 | 6 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/Source.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | DllCanUnloadNow PRIVATE 4 | DllGetClassObject PRIVATE -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define WIN32_LEAN_AND_MEAN 4 | #include 5 | 6 | #include 7 | #include 8 | #include 9 | #include 10 | 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | 17 | #pragma comment(lib, "Shlwapi") 18 | #pragma comment(lib, "Shell32") 19 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/PeaZip.ShellEx/util.registry.ixx: -------------------------------------------------------------------------------- 1 | module; 2 | #include "pch.h" 3 | 4 | export module util.registry; 5 | 6 | import std; 7 | 8 | export LSTATUS RegGetString( 9 | const HKEY hKey, 10 | const std::wstring_view subKey, 11 | const std::wstring_view value, 12 | std::wstring& data 13 | ) noexcept; 14 | -------------------------------------------------------------------------------- /PeaZip.ShellEx/readme.txt: -------------------------------------------------------------------------------- 1 | This code is provided by user https://github.com/Umoxfo 2 | 3 | To generate a PeaZip app package with W11 mini-context menu support: 4 | 5 | 1) Place a PeaZip portable package in the (PeaZip repository root)/input directory 6 | Note: place directory (without subfolder) 7 | 8 | 2) Open (PeaZip repository root)/PeaZip.ShellEx/PeaZip.ShellEx.sln with Visual Studio 2022 or later. 9 | 10 | 3) Following the instructions https://learn.microsoft.com/en-us/windows/msix/package/packaging-uwp-apps#generate-an-app-package 11 | 12 | In this project, the application project is PeaZip.Package -------------------------------------------------------------------------------- /peazip-sources/dev/!bdll.bat: -------------------------------------------------------------------------------- 1 | ::call b3 -b -dDLL AES_DLL.DPR 2 | call b10 -b -dDLL AES_DLL.DPR -------------------------------------------------------------------------------- /peazip-sources/dev/##c_all.bat: -------------------------------------------------------------------------------- 1 | call #c_tb2n 2 | call #c_tb2na 3 | call #c_tb64 4 | call #c_tbita 5 | call #c_tbtyp.bat 6 | call #c_tcv 7 | call #c_tdat 8 | call #c_thrt 9 | call #c_tsort 10 | call #c_tstat 11 | 12 | -------------------------------------------------------------------------------- /peazip-sources/dev/#bdll.bat: -------------------------------------------------------------------------------- 1 | ::call b3 -b -dDLL -$h- CH_DLL.DPR 2 | ::call b7 -b -$A8 -dDLL CH_DLL.DPR 3 | call b12 -b -$A8 -dPurePascal -dDLL CH_DLL.DPR 4 | -------------------------------------------------------------------------------- /peazip-sources/dev/#times.tf: -------------------------------------------------------------------------------- 1 | 2 | Times in [s] for 512 MB: 128 bit key, 1.8GHz P4, Win98 3 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4 | 5 | Package/Compiler CTR CFB OFB ECB CBC OMAC 6 | LibTom112/VC6 11.9 14.6 14.4 10.3 11.2 14.4 7 | LTC112/GCC4.0.1 13.4 14.9 13.5 12.5 11.7 14.2 8 | dcpcrypt2/D6 21.5 25.4 21.3 - 25.7 - 9 | DEC5.1/D6 - 31.9 28.7 27.7 29.6 - 10 | StrSecII/D6 13.0 14.7 13.0 10.7 12.1 - 11 | WE/D3 14.8 14.0 13.9 13.8 16.0 16.3 12 | WE/D6 15.2 14.0 13.9 13.9 15.6 15.0 13 | WE/FPC2 20.4 20.4 20.3 19.5 21.9 20.1 14 | WE/VPC 17.6 17.3 17.6 17.0 22.9 18.4 15 | WE/BP7 72.0 68.5 67.9 61.6 76.0 72.2 16 | -------------------------------------------------------------------------------- /peazip-sources/dev/$d25.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$d25.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$log_aes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$log_aes.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$log_crc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$log_crc.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$log_fca.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$log_fca.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$log_sp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$log_sp.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$log_tf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$log_tf.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$log_utl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$log_utl.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$testlog.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$testlog.zip -------------------------------------------------------------------------------- /peazip-sources/dev/$tstlogp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/$tstlogp.zip -------------------------------------------------------------------------------- /peazip-sources/dev/_tsc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/_tsc.obj -------------------------------------------------------------------------------- /peazip-sources/dev/aes_dll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/aes_dll.res -------------------------------------------------------------------------------- /peazip-sources/dev/align.inc: -------------------------------------------------------------------------------- 1 | {$ifdef BASM16} 2 | 3 | {Helper include file for BASM16 dword alignment (c) 2007 W.Ehrhardt} 4 | 5 | {Note: proper dword alignment for BASM16 is a bit tricky. It depends on} 6 | {the unit order and is therefore application depended. Use DumpAlign to} 7 | {see the order of initialization and the offsets mod 4 (should be 0!). } 8 | {If alignment for a specific application is done, use $undef DumpAlign.} 9 | 10 | {align.inc is used in CRC24 ... CRC64; if more than one of these units } 11 | {are used, it may be necessary to iterate the alignment procedure. } 12 | 13 | {$define NoAlign} {define to disable the alignment definitions} 14 | 15 | {$ifndef NoAlign} 16 | {$define DumpAlign} {set to dump align info in initialization} 17 | {$define A4_CRC24} {insert a dummy word in CRC24 } 18 | {.$define A4_CRC32} {insert a dummy word in CRC32 } 19 | {.$define A4_FCRC32} {insert a dummy word in FCRC32} 20 | {.$define A4_CRC64} {insert a dummy word in CRC64 } 21 | {$endif} 22 | 23 | {$endif BASM16} 24 | -------------------------------------------------------------------------------- /peazip-sources/dev/ch_dll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/ch_dll.res -------------------------------------------------------------------------------- /peazip-sources/dev/cl.bat: -------------------------------------------------------------------------------- 1 | cmd -------------------------------------------------------------------------------- /peazip-sources/dev/comp_speed: -------------------------------------------------------------------------------- 1 | Cycles and MB/s for AES core encryption 2 | 3 | Win 98, Pentium 4, 1.8 GHz 4 | 5 | [-F for full tables, -C for compressed tables] 6 | 7 | Compiler Cyc/Bl-F MB/s-F Cyc/Bl-C MB/s-C 8 | ~~~~~~~~~~~ ~~~~~~~~ ~~~~~~ ~~~~~~~~ ~~~~~~ 9 | TP5 6302 4.6 5356 5.4 10 | TP55 6321 4.5 6980 4.1 11 | TP6 1436 20.0 1762 16.3 12 | BP7 1493 19.2 1927 14.9 13 | VPC 426 67.3 425 67.3 14 | FPC 1 GoV2 542 53.0 541 53.1 15 | FPC 2.0.2 571 50.2 546 52.5 16 | FPC 2.2 -O3 416 69.0 417 68.8 17 | Delphi2 365 78.6 398 72.1 18 | Delphi3 373 76.9 398 72.1 19 | Delphi4 386 74.3 398 72.1 20 | Delphi5 375 76.5 398 72.1 21 | Delphi6 380 75.5 398 72.1 22 | Delphi7 380 75.5 398 72.1 23 | Delphi9 381 76.3 397 72.3 24 | Delphi10 380 75.0 398 72.1 25 | 26 | -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDrop.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDrop.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDrop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDrop.inc -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDrop.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDrop.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropComObj.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropComObj.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropContext.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropContext.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropContext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropContext.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropDesign.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropDesign.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropDesign.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropDesign.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropFile.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropFile.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropFile.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropFormats.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropFormats.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropGraphics.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropGraphics.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropGraphics.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropGraphics.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropHandler.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropHandler.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropHandler.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropInternet.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropInternet.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropInternet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropInternet.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropLazarus.pas: -------------------------------------------------------------------------------- 1 | { This file was automatically created by Lazarus. Do not edit! 2 | This source is only used to compile and install the package. 3 | } 4 | 5 | unit DragDropLazarus; 6 | 7 | {$warn 5023 off : no warning about unused units} 8 | interface 9 | 10 | uses 11 | DragDropDesign, LazarusPackageIntf; 12 | 13 | implementation 14 | 15 | procedure Register; 16 | begin 17 | RegisterUnit('DragDropDesign', @DragDropDesign.Register); 18 | end; 19 | 20 | initialization 21 | RegisterPackage('DragDropLazarus', @Register); 22 | end. 23 | -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropPIDL.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropPIDL.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropPIDL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropPIDL.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropText.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropText.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DragDropText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DragDropText.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DropComboTarget.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DropComboTarget.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DropComboTarget.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DropComboTarget.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DropHandler.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DropHandler.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DropHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DropHandler.pas -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DropSource.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DropSource.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DropTarget.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DropTarget.dcr -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/DropTargetCur.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/DropTargetCur.res -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/dragdropfilesdll.lpr: -------------------------------------------------------------------------------- 1 | library dragdropfilesdll; 2 | 3 | {$mode objfpc}{$H+} 4 | 5 | uses 6 | DragDrop,DragDropFile,Classes 7 | { you can add units after this }; 8 | 9 | begin 10 | end. 11 | 12 | -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/readme-dragdropfilesdll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/readme-dragdropfilesdll.txt -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/dragdropfilesdll.src/readme.txt -------------------------------------------------------------------------------- /peazip-sources/dev/dragdropfilesdll.src/unitdragdropfilesdll.lfm: -------------------------------------------------------------------------------- 1 | object Formdragdropfilesdll: TFormdragdropfilesdll 2 | Left = 78 3 | Height = 240 4 | Top = 165 5 | Width = 320 6 | Caption = 'Formdragdropfilesdll' 7 | LCLVersion = '1.8.4.0' 8 | object DropFileSource1: TDropFileSource 9 | DragTypes = [dtCopy, dtMove] 10 | OnDrop = DropFileSource1Drop 11 | left = 224 12 | top = 160 13 | end 14 | end 15 | -------------------------------------------------------------------------------- /peazip-sources/dev/fpc-res.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/fpc-res.res -------------------------------------------------------------------------------- /peazip-sources/dev/installer/peazip-icon-green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/installer/peazip-icon-green.ico -------------------------------------------------------------------------------- /peazip-sources/dev/installer/peazip-setup_script-configure.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/installer/peazip-setup_script-configure.iss -------------------------------------------------------------------------------- /peazip-sources/dev/installer/peazip-setup_script_WINDOWS.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/installer/peazip-setup_script_WINDOWS.iss -------------------------------------------------------------------------------- /peazip-sources/dev/mak_fca256.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | Echo Make dual OS version of fca (c) 2009 W.Ehrhardt 3 | 4 | ::comment next line if upx not in path, use -3 for upx 3.03+ 5 | set pack=upx 6 | set packopt=-3 -qq 7 | 8 | ::make fca 9 | ::compile 16 bit DOS stub 10 | bpc -b -q fca256.pas 11 | if errorlevel 1 goto end 12 | 13 | if not (%pack%)==() %pack% %packopt% fca256.exe 14 | move fca256.exe fca16.exe 15 | ::compile 32 bit PE 16 | :: fca.def must be in current dir 17 | echo STUB 'fca16.exe' >fca256.def 18 | call vpc -b -q fca256.pas 19 | if not (%pack%)==() %pack% %packopt% fca256.exe 20 | del fca16.exe 21 | del fca256.def 22 | 23 | ::goto end 24 | 25 | fca256 -eax test1234 dates.pas ##EAX.enc 26 | fca256 -d test1234 ##EAX.enc ##EAX.out 27 | fca256 -hmac test1234 dates.pas ##HMA.enc 28 | fca256 -d test1234 ##HMA.enc ##HMA.out 29 | 30 | :end 31 | -------------------------------------------------------------------------------- /peazip-sources/dev/mak_fzca.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | Echo Make dual OS version of fzca (c) 2009 W.Ehrhardt 3 | 4 | ::BUILDFIXED will result in less than 2K smaller combined exe 5 | ::set dyntable=-dBUILDFIXED 6 | 7 | ::comment next line if upx not in path, use -3 for upx 3.03+ 8 | set pack=upx 9 | set packopt=-3 -qq 10 | 11 | ::make fzca 12 | ::compile 16 bit DOS stub 13 | bpc -b -q %dyntable% fzca 14 | if errorlevel 1 goto end 15 | 16 | if not (%pack%)==() %pack% %packopt% fzca.exe 17 | move fzca.exe fzca16.exe 18 | ::compile 32 bit PE 19 | :: fzca.def must be in current dir 20 | echo STUB 'fzca16.exe' >fzca.def 21 | call vpc -b -q %dyntable% fzca.pas 22 | if not (%pack%)==() %pack% %packopt% fzca.exe 23 | del fzca16.exe 24 | del fzca.def 25 | 26 | ::goto end 27 | 28 | fzca -eax test1234 whirl512.pas ##EAX.enc 29 | fzca -d test1234 ##EAX.enc ##EAX.out 30 | fzca -hmac test1234 whirl512.pas ##HMA.enc -z 31 | fzca -d test1234 ##HMA.enc ##HMA.out 32 | 33 | :end 34 | -------------------------------------------------------------------------------- /peazip-sources/dev/make_fca.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | Echo Make dual OS version of fca (c) 2009 W.Ehrhardt 3 | 4 | ::comment next line if upx not in path, use -3 for upx 3.03+ 5 | set pack=upx 6 | set packopt=-3 -qq 7 | 8 | ::make fca 9 | ::compile 16 bit DOS stub 10 | call bpc -b -q fca 11 | if errorlevel 1 goto end 12 | if not (%pack%)==() %pack% %packopt% fca.exe 13 | move fca.exe fca16.exe 14 | 15 | ::compile 32 bit PE 16 | :: fca.def must be in current dir 17 | echo STUB 'fca16.exe' >fca.def 18 | call vpc -b -q fca.pas 19 | if not (%pack%)==() %pack% %packopt% fca.exe 20 | del fca16.exe 21 | del fca.def 22 | 23 | ::goto end 24 | 25 | fca -eax test1234 dates.pas ##EAX.enc 26 | fca -d test1234 ##EAX.enc ##EAX.out 27 | fca -hmac test1234 dates.pas ##HMA.enc 28 | fca -d test1234 ##HMA.enc ##HMA.out 29 | 30 | :end 31 | -------------------------------------------------------------------------------- /peazip-sources/dev/manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/manifest.res -------------------------------------------------------------------------------- /peazip-sources/dev/manifests.bat: -------------------------------------------------------------------------------- 1 | windres.exe peazip.rc peazip.res -------------------------------------------------------------------------------- /peazip-sources/dev/metadarkstyle/metadarkstyle.pas: -------------------------------------------------------------------------------- 1 | { This file was automatically created by Lazarus. Do not edit! 2 | This source is only used to compile and install the package. 3 | } 4 | 5 | unit MetaDarkStyle; 6 | 7 | {$warn 5023 off : no warning about unused units} 8 | interface 9 | 10 | uses 11 | uMetaDarkStyle, uDarkStyleParams, uDarkStyleSchemesAdditional, 12 | LazarusPackageIntf; 13 | 14 | implementation 15 | 16 | procedure Register; 17 | begin 18 | end; 19 | 20 | initialization 21 | RegisterPackage('MetaDarkStyle', @Register); 22 | end. 23 | -------------------------------------------------------------------------------- /peazip-sources/dev/metadarkstyle/src/CustomDark.darkstylecolors: -------------------------------------------------------------------------------- 1 | begin 2 | Scheme:=DefaultDark; 3 | CustomDrawScrollbars:=true; 4 | CustomDrawPushButtons:=true; 5 | CustomDrawComboBoxs:=true; 6 | CustomDrawTreeViews:=true; 7 | end. -------------------------------------------------------------------------------- /peazip-sources/dev/metadarkstyle/src/CustomDark.lrs: -------------------------------------------------------------------------------- 1 | LazarusResources.Add('CustomDark','DARKSTYLECOLORS',[ 2 | 'begin'#13#10' Scheme:=DefaultDark;'#13#10' CustomDrawScrollbars:=true;'#13 3 | +#10' CustomDrawPushButtons:=true;'#13#10' CustomDrawComboBoxs:=true;'#13#10 4 | +' CustomDrawTreeViews:=true;'#13#10'end.' 5 | ]); 6 | -------------------------------------------------------------------------------- /peazip-sources/dev/metadarkstyle/src/udarkstyleparams.pas: -------------------------------------------------------------------------------- 1 | { 2 | @author(Andrey Zubarev ) 3 | } 4 | 5 | unit uDarkStyleParams; 6 | 7 | interface 8 | 9 | uses 10 | LCLType,Graphics,ComCtrls; 11 | 12 | type 13 | TSysColors=array[0..COLOR_ENDCOLORS] of TColor; 14 | TDrawControl=record 15 | TreeViewDisableHideSelection:Boolean; 16 | TreeViewExpandSignOverride:Boolean; 17 | TreeViewExpandSignValue: TTreeViewExpandSignType; 18 | CustomDrawScrollbars:Boolean; 19 | CustomDrawPushButtons:Boolean; 20 | CustomDrawComboBoxs:Boolean; 21 | CustomDrawTreeViews:Boolean; 22 | end; 23 | 24 | TDSColors=record 25 | SysColor:TSysColors; 26 | DrawControl:TDrawControl; 27 | end; 28 | 29 | // Insider 18334 30 | TPreferredAppMode = 31 | ( 32 | pamDefault, 33 | pamAllowDark, 34 | pamForceDark, 35 | pamForceLight 36 | ); 37 | 38 | var 39 | PreferredAppMode:TPreferredAppMode=pamForceLight; 40 | IsDarkModeEnabled: Boolean = False; 41 | 42 | implementation 43 | 44 | end. 45 | -------------------------------------------------------------------------------- /peazip-sources/dev/metadarkstyle/src/udarkstyleschemesadditional.pas: -------------------------------------------------------------------------------- 1 | { 2 | @author(Andrey Zubarev ) 3 | } 4 | 5 | unit uDarkStyleSchemesAdditional; 6 | 7 | interface 8 | 9 | uses 10 | LResources; 11 | 12 | implementation 13 | 14 | initialization 15 | {$I CustomDark.lrs} 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/metadarkstyle/src/umetadarkstyle.pas: -------------------------------------------------------------------------------- 1 | { 2 | @author(Andrey Zubarev ) 3 | } 4 | 5 | unit uMetaDarkStyle; 6 | 7 | interface 8 | 9 | {$IFDEF WINDOWS} 10 | uses 11 | {IF DEFINED(LCLQT5)} 12 | uDarkStyle, 13 | {ENDIF} 14 | uDarkStyleParams, 15 | {$IFDEF LCLWIN32} 16 | uWin32WidgetSetDark, 17 | {$ENDIF} 18 | uDarkStyleSchemesLoader; 19 | {$ENDIF} 20 | 21 | {$IFDEF WINDOWS} 22 | procedure ApplyMetaDarkStyle(const CS:TDSColors); 23 | {$ENDIF} 24 | procedure MetaDarkFormChanged(Form: TObject); 25 | 26 | implementation 27 | 28 | {$IFDEF WINDOWS} 29 | procedure ApplyMetaDarkStyle(const CS:TDSColors); 30 | begin 31 | InitDarkMode; 32 | Initialize(CS); 33 | ApplyDarkStyle; 34 | end; 35 | {$ENDIF} 36 | 37 | procedure MetaDarkFormChanged(Form: TObject); 38 | begin 39 | {$IFDEF LCLWIN32}DarkFormChanged(Form);{$ENDIF} 40 | end; 41 | end. 42 | -------------------------------------------------------------------------------- /peazip-sources/dev/ministat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/ministat.pas -------------------------------------------------------------------------------- /peazip-sources/dev/options.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/options.zip -------------------------------------------------------------------------------- /peazip-sources/dev/pea.rc: -------------------------------------------------------------------------------- 1 | // Version Info 2 | 1 VERSIONINFO 3 | FILEVERSION 1,2,4,0 4 | PRODUCTVERSION 1,2,4,0 5 | { 6 | BLOCK "StringFileInfo" 7 | { 8 | BLOCK "040904E4" 9 | { 10 | VALUE "CompanyName", "Giorgio Tani" 11 | VALUE "FileVersion", "1.2.4" 12 | VALUE "FileDescription", "Pea: pack, encrypt, authenticate" 13 | VALUE "InternalName", "Pea" 14 | VALUE "LegalCopyright", "Giorgio Tani, LGPLv3" 15 | VALUE "LegalTrademarks", "none" 16 | VALUE "OriginalFilename", "Pea" 17 | VALUE "ProductName", "Pea" 18 | VALUE "ProductVersion", "1.2.4" 19 | } 20 | } 21 | BLOCK "VarFileInfo" 22 | { 23 | VALUE "Translation", 1033, 1252 24 | } 25 | } -------------------------------------------------------------------------------- /peazip-sources/dev/pea.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/pea.res -------------------------------------------------------------------------------- /peazip-sources/dev/pealauncher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/pealauncher.ico -------------------------------------------------------------------------------- /peazip-sources/dev/pealauncher.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/pealauncher.res -------------------------------------------------------------------------------- /peazip-sources/dev/peazip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/peazip.ico -------------------------------------------------------------------------------- /peazip-sources/dev/peazip.rc: -------------------------------------------------------------------------------- 1 | // Version Info 2 | 1 VERSIONINFO 3 | FILEVERSION 10,4,0,0 4 | PRODUCTVERSION 10,4,0,0 5 | { 6 | BLOCK "StringFileInfo" 7 | { 8 | BLOCK "040904E4" 9 | { 10 | VALUE "CompanyName", "Giorgio Tani" 11 | VALUE "FileVersion", "10.4.0" 12 | VALUE "FileDescription", "PeaZip, file and archive manager" 13 | VALUE "InternalName", "PeaZip" 14 | VALUE "LegalCopyright", "Giorgio Tani, LGPLv3" 15 | VALUE "LegalTrademarks", "none" 16 | VALUE "OriginalFilename", "PeaZip" 17 | VALUE "ProductName", "PeaZip" 18 | VALUE "ProductVersion", "10.4.0" 19 | } 20 | } 21 | BLOCK "VarFileInfo" 22 | { 23 | VALUE "Translation", 1033, 1252 24 | } 25 | } -------------------------------------------------------------------------------- /peazip-sources/dev/peazip.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/peazip.res -------------------------------------------------------------------------------- /peazip-sources/dev/peazip16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/peazip16.ico -------------------------------------------------------------------------------- /peazip-sources/dev/ppas.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | SET THEFILE=C:\WSIOTEMP\PeaZip\dev\peazip.exe 3 | echo Linking %THEFILE% 4 | C:\lazarus\fpc\3.2.2\bin\x86_64-win64\ld.exe -b pei-x86-64 --gc-sections -s --subsystem windows --entry=_WinMainCRTStartup -o C:\WSIOTEMP\PeaZip\dev\peazip.exe C:\WSIOTEMP\PeaZip\dev\link7420.res 5 | if errorlevel 1 goto linkend 6 | goto end 7 | :asmend 8 | echo An error occurred while assembling %THEFILE% 9 | goto end 10 | :linkend 11 | echo An error occurred while linking %THEFILE% 12 | :end 13 | -------------------------------------------------------------------------------- /peazip-sources/dev/project_demo_lib.lpr: -------------------------------------------------------------------------------- 1 | program project_demo_lib; 2 | 3 | {$mode objfpc}{$H+} 4 | 5 | uses 6 | {$IFDEF UNIX}{$IFDEF UseCThreads} 7 | cthreads, 8 | {$ENDIF}{$ENDIF} 9 | Interfaces, // this includes the LCL widgetset 10 | Forms 11 | { add your units here }, 12 | Unit_demo_lib, unit_pea, list_utils, unit_report; 13 | 14 | begin 15 | Application.Title:='demo_lib'; 16 | Application.Initialize; 17 | Application.CreateForm(TForm_demo_lib, Form_demo_lib); 18 | Application.CreateForm(TForm_pea, Form_pea); 19 | Application.CreateForm(TForm_report, Form_report); 20 | Application.Run; 21 | end. 22 | 23 | -------------------------------------------------------------------------------- /peazip-sources/dev/project_pea.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/project_pea.ico -------------------------------------------------------------------------------- /peazip-sources/dev/project_pea.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Your application description here. 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/project_pea.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/project_pea.obj -------------------------------------------------------------------------------- /peazip-sources/dev/project_pea.rc: -------------------------------------------------------------------------------- 1 | #define RT_MANIFEST 24 2 | #define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 3 | #define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2 4 | #define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3 5 | 6 | CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "project_pea.manifest" 7 | -------------------------------------------------------------------------------- /peazip-sources/dev/project_pea.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/project_pea.res -------------------------------------------------------------------------------- /peazip-sources/dev/project_peach.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/project_peach.ico -------------------------------------------------------------------------------- /peazip-sources/dev/project_peach.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Your application description here. 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/project_peach.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/project_peach.obj -------------------------------------------------------------------------------- /peazip-sources/dev/project_peach.rc: -------------------------------------------------------------------------------- 1 | #define RT_MANIFEST 24 2 | #define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 3 | #define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2 4 | #define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3 5 | 6 | CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "project_peach.manifest" 7 | -------------------------------------------------------------------------------- /peazip-sources/dev/project_peach.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/project_peach.res -------------------------------------------------------------------------------- /peazip-sources/dev/readme.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/readme.ger -------------------------------------------------------------------------------- /peazip-sources/dev/readme.tf: -------------------------------------------------------------------------------- 1 | This archive contains Pascal/Delphi sources for the Twofish cipher. 2 | There is code for a DLL and the following modes of operation are 3 | supported: CBC, CFB128, CTR, ECB,OFB, OMAC, and EAX. All modes allow 4 | plain and cipher text lengths that need not be multiples of the block 5 | length (for ECB and CBC cipher text stealing is used for the short 6 | block). CTR mode can use 4 built-in incrementing functions or a user 7 | supplied one, and provides seek functions for random access reads. 8 | 9 | All modes of operation (except OMAC/EAX) support a reset function that 10 | re-initializes the chaining variables without the (time consuming) 11 | recalculation of the round keys. 12 | 13 | Last changes (Nov. 2017) 14 | - FPC/ARM and Delphi Tokyo adjustments 15 | -------------------------------------------------------------------------------- /peazip-sources/dev/samples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/samples.zip -------------------------------------------------------------------------------- /peazip-sources/dev/sha256unroll.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/sha256unroll.zip -------------------------------------------------------------------------------- /peazip-sources/dev/sp_dll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/sp_dll.res -------------------------------------------------------------------------------- /peazip-sources/dev/t_adler.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for Adler32, we 30.08.03} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | Adler32; 13 | 14 | begin 15 | writeln('Adler32 self test passed: ',Adler32SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_bcrc32.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for bCRC32, we 06.07.03} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | bcrc32; 13 | 14 | 15 | begin 16 | writeln('bCRC32 self test passed: ',bCRC32SelfTest); 17 | end. 18 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_bcrc64.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for bCRC64, we 07.07.03} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | bcrc64; 13 | 14 | 15 | begin 16 | writeln('bCRC64 self test passed: ',bCRC64SelfTest); 17 | end. 18 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_cprf.pas: -------------------------------------------------------------------------------- 1 | {-Test program for aes_cprf, (c) we 05.2007} 2 | 3 | program T_CPRF; 4 | 5 | {$i STD.INC} 6 | 7 | {$ifdef APPCONS} 8 | {$apptype console} 9 | {$endif} 10 | 11 | uses 12 | {$ifdef WINCRT} 13 | wincrt, 14 | {$endif} 15 | aes_cprf; 16 | 17 | begin 18 | writeln('Selftest AES CMAC PRF-128: ', AES_CPRF128_selftest); 19 | end. 20 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_crc16.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for CRC16, we 18.03.02} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | crc16; 13 | 14 | 15 | begin 16 | writeln('CRC16 self test passed: ',CRC16SelfTest); 17 | end. 18 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_crc24.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for CRC24, we 02.04.06} 2 | 3 | program t_crc24; 4 | 5 | {$ifdef win32} 6 | {$ifndef VirtualPascal} 7 | {$apptype console} 8 | {$endif} 9 | {$endif} 10 | 11 | {$i STD.INC} 12 | 13 | uses {$ifdef WINCRT} WinCRT, {$endif} 14 | crc24; 15 | 16 | begin 17 | writeln('CRC24 self test passed: ',CRC24SelfTest); 18 | end. 19 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_crc32.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for CRC32, we 18.03.02} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | crc32; 13 | 14 | begin 15 | writeln('CRC32 self test passed: ',CRC32SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_crc64.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for CRC64, we 07.07.03} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | crc64; 13 | 14 | begin 15 | writeln('CRC64 self test passed: ',CRC64SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_cv.pas: -------------------------------------------------------------------------------- 1 | {-Test program for compvers unit, we Nov. 2005} 2 | 3 | program t_cv; 4 | 5 | {$i std.inc} 6 | 7 | {$ifdef APPCONS} 8 | {$apptype console} 9 | {$endif} 10 | 11 | 12 | uses 13 | {$ifdef WINCRT} 14 | wincrt, 15 | {$endif} 16 | compvers; 17 | 18 | begin 19 | writeln('Compiler: ',Compiler_Str, ' - #', ord(Compiler_Sym)); 20 | end. 21 | 22 | 23 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_dates.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for dates unit, we Dec. 2003} 2 | 3 | program T_Dates; 4 | 5 | {$i std.inc} 6 | 7 | {$ifdef APPCONS} 8 | {$apptype console} 9 | {$endif} 10 | 11 | 12 | uses 13 | {$ifdef WINCRT} 14 | wincrt, 15 | {$endif} 16 | dates; 17 | var 18 | dow, dum: word; 19 | y, m, d: word; 20 | hour,min,sec: word; 21 | JDM: Longint; 22 | begin 23 | writeln('CJD: ', CurrentJulianDay); 24 | writeln(' ms: ', msCount); 25 | GetCurrentDate(dum,dum,dum,dow); 26 | writeln('dow: ', dow); 27 | writeln('30.12.1899=', JulianDay(1899, 12, 30)); 28 | JDM := JulianDay(65535, 12, 31); 29 | writeln('31.12.65535=', JDM); 30 | JulianToDMY(JDM, y, m, d); 31 | writeln('JD ', JDM, ' = ',d,'.',m,'.',y); 32 | UnixToDMYhms(0, y,m,d,hour,min,sec); 33 | writeln('Unix ',0:10, ' = ',d:2,'.',m:2,'.',y, ' ',hour:2,':',min:2,':',sec:2); 34 | UnixToDMYhms(maxLongint, y,m,d,hour,min,sec); 35 | writeln('Unix ',maxLongint:10 , ' = ',d:2,'.',m:2,'.',y, ' ',hour:2,':',min:2,':',sec:2); 36 | end. 37 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_ed2k.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for ED2K, we 19.02.07} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses 12 | {$ifdef WINCRT} WinCRT, {$endif} 13 | ed2k; 14 | 15 | begin 16 | writeln('ED2K self test passed: ',ed2k_SelfTest); 17 | end. 18 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_encrsp.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for AES encryption speed, we 2003} 2 | 3 | {Gladman AES.DLL: 2.69s} 4 | { D3: 5.33s} 5 | {VPC: 4.67s} 6 | {BPW: 19.22s} 7 | {BP7: 17.02s} 8 | 9 | program T_ENCRSP; 10 | 11 | {$i STD.INC} 12 | 13 | {$ifdef win32} 14 | {$ifndef VirtualPascal} 15 | {$apptype console} 16 | {$endif} 17 | {$endif} 18 | 19 | uses 20 | {$ifdef WINCRT} 21 | wincrt, 22 | {$endif} 23 | AES_Type,AES_Encr,mem_util; 24 | 25 | {$ifdef VER70} 26 | const CNT=10000000 div 5; 27 | {$else} 28 | const CNT=10000000; 29 | {$endif} 30 | 31 | var 32 | key: array[0..31] of byte; 33 | plain,ct: TAESBlock; 34 | ctx: TAESContext; 35 | i: longint; 36 | begin 37 | fillchar(key,sizeof(key),0); 38 | fillchar(plain,sizeof(plain),0); 39 | if AES_Init_Encr(Key, 16*8, ctx)<>0 then halt; 40 | for i:=1 to CNT do begin 41 | AES_Encrypt(ctx, plain, ct); 42 | end; 43 | {$ifndef WINCRT} 44 | writeln(HexStr(@ct,sizeof(ct))); 45 | {$endif} 46 | 47 | end. 48 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_fcrc32.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for FCRC32, we 28.06.07} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | fcrc32; 13 | 14 | begin 15 | writeln('FCRC32 self test passed: ',FCRC32SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_fio.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for fio unit, we Apr. 2006} 2 | 3 | program t_fio; 4 | 5 | {$i std.inc} 6 | 7 | {$ifdef APPCONS} 8 | {$apptype console} 9 | {$endif} 10 | 11 | uses 12 | {$ifdef WINCRT} 13 | wincrt, 14 | {$endif} 15 | fio; 16 | var 17 | fn : string; 18 | ex : boolean; 19 | Err: word; 20 | fs : longint; 21 | f : file; 22 | begin; 23 | fn := paramstr(1); 24 | if (fn<>'') then begin 25 | ex := fio_FileExists(fn); 26 | writeln(fn, ' exists: ', ex); 27 | if ex then begin 28 | system.assign(f,fn); 29 | fio_Reset(f, 1, true, Err); 30 | if Err=0 then begin 31 | fs := fio_Filesize(f, Err); 32 | if Err=0 then writeln('Filesize: ', fs) 33 | else writeln('fio_Filesize error: ', Err); 34 | end 35 | else writeln('fio_reset error: ', Err); 36 | if Err=0 then begin 37 | fio_seek(f,100000, Err); 38 | writeln('fio_seek return code: ', Err); 39 | fs := fio_filepos(f,Err); 40 | writeln('Filepos: ',fs, ' Err=',Err); 41 | end; 42 | end; 43 | end; 44 | end. 45 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_md4.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for MD4, we 18.02.07} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | md4; 13 | 14 | begin 15 | writeln('MD4 self test passed: ',MD4SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_md5.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for MD5, we 14.03.02} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | md5; 13 | 14 | begin 15 | writeln('MD5 self test passed: ',MD5SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_rmd160.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for RIPEMD-160, we 31.01.06} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | rmd160; 13 | 14 | begin 15 | writeln('RIPEMD-160 self test passed: ',RMD160SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_self1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/t_self1.zip -------------------------------------------------------------------------------- /peazip-sources/dev/t_sha1.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for SHA1, we 14.03.02} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | sha1; 13 | 14 | begin 15 | writeln('SHA1 self test passed: ',SHA1SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_sha224.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for SHA224, we 02.01.04} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT,{$endif} 12 | sha224; 13 | 14 | begin 15 | writeln('SHA224 self test passed: ', SHA224SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_sha256.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for SHA256, we 03.01.02} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT, {$endif} 12 | sha256; 13 | 14 | begin 15 | writeln('SHA 256 self test passed: ', SHA256SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_sha384.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for SHA384, we 19.11.03} 2 | 3 | {$ifdef win32} 4 | {$ifndef VirtualPascal} 5 | {$apptype console} 6 | {$endif} 7 | {$endif} 8 | 9 | {$i STD.INC} 10 | 11 | uses {$ifdef WINCRT} WinCRT,{$endif} 12 | sha384; 13 | 14 | begin 15 | writeln('SHA 384 self test passed: ', SHA384SelfTest); 16 | end. 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_sick.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for crc_sick, we 17.12.10} 2 | 3 | program t_sick; 4 | 5 | {$i STD.INC} 6 | 7 | {$ifdef APPCONS} 8 | {$apptype console} 9 | {$endif} 10 | 11 | 12 | uses 13 | {$ifdef WINCRT} WinCRT, {$endif} 14 | crc_sick; 15 | begin 16 | writeln('CRC/Hash test program [CRC-16/Sick] (c) 2002-2012 W.Ehrhardt'); 17 | writeln('CRC-16/Sick selftest: ',crc_sick_selftest); 18 | end. 19 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_speedb.ini: -------------------------------------------------------------------------------- 1 | -CRC16 2 | -CRC24 3 | -CRC32 4 | -FCRC32 5 | -bCRC32 6 | -Adler32 7 | -CRC64 8 | -bCRC64 9 | -eDonkey 10 | -MD4 11 | -MD5 12 | -RIPEMD160 13 | -SHA1 14 | -SHA224 15 | SHA256 16 | -SHA384 17 | SHA512 18 | -SHA512/224 19 | -SHA512/256 20 | -Whirlpool 21 | -SHA3-224 22 | SHA3-256 23 | -SHA3-384 24 | SHA3-512 25 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_whirl.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for Whirlpool} 2 | 3 | program t_whirl; 4 | 5 | {$ifdef win32} 6 | {$ifndef VirtualPascal} 7 | {$apptype console} 8 | {$endif} 9 | {$endif} 10 | 11 | {$i STD.INC} 12 | 13 | uses {$ifdef WINCRT} WinCRT,{$endif} 14 | mem_util, whirl512; 15 | 16 | 17 | begin 18 | writeln('WhirlPool self test passed: ', Whirl_SelfTest); 19 | end. 20 | -------------------------------------------------------------------------------- /peazip-sources/dev/t_whirlb.pas: -------------------------------------------------------------------------------- 1 | {-Test prog for Whirlpool, reproduce first part od NESSIE Bit-API test vectors, we 05.08} 2 | 3 | program t_whirlb; 4 | 5 | {$i STD.INC} 6 | 7 | {$ifdef APPCONS} 8 | {$apptype console} 9 | {$endif} 10 | 11 | uses 12 | {$ifdef WINCRT} WinCRT,{$endif} 13 | mem_util, hash, whirl512; 14 | 15 | var 16 | Context: THashContext; 17 | Digest : TWhirlDigest; 18 | data : array[0..127] of byte; 19 | L: integer; 20 | begin 21 | HexUpper := true; {Hex strings in uppercase} 22 | fillchar(data, sizeof(data), 0); 23 | 24 | {Calculate first part of nessie-test-vectors.txt} 25 | writeln('Message digests of strings of 0-bits and length L:'); 26 | for L:=0 to 1023 do begin 27 | Whirl_Init(Context); 28 | {update byte part} 29 | Whirl_Update(Context, @data, L shr 3); 30 | {update/finalize remaining bits} 31 | Whirl_FinalBits(Context, Digest, 0, L and 7); 32 | writeln(' L = ', L:4, ': ', HexStr(@Digest, sizeof(Digest))); 33 | end; 34 | end. 35 | -------------------------------------------------------------------------------- /peazip-sources/dev/tcrc16.dpr: -------------------------------------------------------------------------------- 1 | {GUI demo for crcmodel/crcm_cat, (c) 2008 W.Ehrhardt} 2 | 3 | program tcrc16; 4 | 5 | uses 6 | Forms, 7 | tcrc16u in 'tcrc16u.pas' {Form1}, 8 | crcm_cat in 'crcm_cat.pas', 9 | crcmodel in 'crcmodel.pas', 10 | Mem_Util in 'mem_util.pas'; 11 | 12 | {$R *.RES} 13 | 14 | begin 15 | Application.Initialize; 16 | Application.CreateForm(TForm1, Form1); 17 | Application.Run; 18 | end. 19 | -------------------------------------------------------------------------------- /peazip-sources/dev/tcrc16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/tcrc16.res -------------------------------------------------------------------------------- /peazip-sources/dev/tcrc16u.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/tcrc16u.dfm -------------------------------------------------------------------------------- /peazip-sources/dev/tf_dll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/tf_dll.res -------------------------------------------------------------------------------- /peazip-sources/dev/tsc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/tsc.pas -------------------------------------------------------------------------------- /peazip-sources/dev/unit11.pas: -------------------------------------------------------------------------------- 1 | unit Unit11; 2 | 3 | {$mode objfpc} 4 | 5 | interface 6 | 7 | uses 8 | Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, 9 | ExtCtrls, StdCtrls; 10 | 11 | type 12 | 13 | { TFormDrop } 14 | 15 | TFormDrop = class(TForm) 16 | Imagedragfile: TImage; 17 | Imagedragfolder: TImage; 18 | Imagedragop: TImage; 19 | Labeldragfile: TLabel; 20 | Labeldragfolder: TLabel; 21 | Labeldragtitle: TLabel; 22 | PanelDrag: TPanel; 23 | Shape1: TShape; 24 | private 25 | { private declarations } 26 | public 27 | { public declarations } 28 | end; 29 | 30 | var 31 | FormDrop: TFormDrop; 32 | 33 | implementation 34 | 35 | { TFormDrop } 36 | 37 | initialization 38 | {$I unit11.lrs} 39 | 40 | end. 41 | 42 | -------------------------------------------------------------------------------- /peazip-sources/dev/unit12.lfm: -------------------------------------------------------------------------------- 1 | object FormPaths: TFormPaths 2 | Left = 608 3 | Height = 301 4 | Top = 430 5 | Width = 600 6 | Caption = 'FormPaths' 7 | ClientHeight = 301 8 | ClientWidth = 600 9 | Constraints.MinHeight = 300 10 | Constraints.MinWidth = 600 11 | DesignTimePPI = 120 12 | Position = poScreenCenter 13 | LCLVersion = '3.4.0.0' 14 | object MemoPaths: TMemo 15 | AnchorSideLeft.Control = Owner 16 | AnchorSideTop.Control = Owner 17 | AnchorSideRight.Control = Owner 18 | AnchorSideRight.Side = asrBottom 19 | AnchorSideBottom.Control = Owner 20 | AnchorSideBottom.Side = asrBottom 21 | Left = 16 22 | Height = 269 23 | Top = 16 24 | Width = 568 25 | Anchors = [akTop, akLeft, akRight, akBottom] 26 | BorderSpacing.Left = 16 27 | BorderSpacing.Top = 16 28 | BorderSpacing.Right = 16 29 | BorderSpacing.Bottom = 16 30 | BorderStyle = bsNone 31 | ParentColor = True 32 | TabOrder = 0 33 | end 34 | end 35 | -------------------------------------------------------------------------------- /peazip-sources/dev/unit12.lrs: -------------------------------------------------------------------------------- 1 | { This is an automatically generated lazarus resource file } 2 | 3 | LazarusResources.Add('TFormPaths','FORMDATA',[ 4 | 'TPF0'#10'TFormPaths'#9'FormPaths'#4'Left'#3'`'#2#6'Height'#3'-'#1#3'Top'#3 5 | +#174#1#5'Width'#3'X'#2#7'Caption'#6#9'FormPaths'#12'ClientHeight'#3'-'#1#11 6 | +'ClientWidth'#3'X'#2#21'Constraints.MinHeight'#3','#1#20'Constraints.MinWidt' 7 | +'h'#3'X'#2#13'DesignTimePPI'#2'x'#8'Position'#7#14'poScreenCenter'#10'LCLVer' 8 | +'sion'#6#7'3.4.0.0'#0#5'TMemo'#9'MemoPaths'#22'AnchorSideLeft.Control'#7#5'O' 9 | +'wner'#21'AnchorSideTop.Control'#7#5'Owner'#23'AnchorSideRight.Control'#7#5 10 | +'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control' 11 | +#7#5'Owner'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#16#6'Height'#3 12 | +#13#1#3'Top'#2#16#5'Width'#3'8'#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight' 13 | +#8'akBottom'#0#18'BorderSpacing.Left'#2#16#17'BorderSpacing.Top'#2#16#19'Bor' 14 | +'derSpacing.Right'#2#16#20'BorderSpacing.Bottom'#2#16#11'BorderStyle'#7#6'bs' 15 | +'None'#11'ParentColor'#9#8'TabOrder'#2#0#0#0#0 16 | ]); 17 | -------------------------------------------------------------------------------- /peazip-sources/dev/unit12.pas: -------------------------------------------------------------------------------- 1 | unit Unit12; 2 | 3 | {$mode objfpc} 4 | 5 | interface 6 | 7 | uses 8 | Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, 9 | StdCtrls; 10 | 11 | type 12 | 13 | { TFormPaths } 14 | 15 | TFormPaths = class(TForm) 16 | MemoPaths: TMemo; 17 | private 18 | { private declarations } 19 | public 20 | { public declarations } 21 | end; 22 | 23 | var 24 | FormPaths: TFormPaths; 25 | 26 | implementation 27 | 28 | { TFormPaths } 29 | 30 | initialization 31 | {$I unit12.lrs} 32 | 33 | end. 34 | 35 | -------------------------------------------------------------------------------- /peazip-sources/dev/util.cnt: -------------------------------------------------------------------------------- 1 | :Base UTIL.HLP 2 | :Title UTIL 3 | 1 UTIL 4 | 2 Unit BTypes=topic_3 5 | 2 Unit Base2N=topic_34 6 | 2 Unit BitArray=topic_56 7 | 2 Unit memh=topic_71 8 | 2 Unit CompVers=topic_76 9 | 2 Unit dates=topic_81 10 | 2 Unit HRTimer=topic_90 11 | 2 Unit TSC=topic_91 12 | 2 Unit Mem_Util=topic_114 13 | 2 Unit MiniStat=topic_128 14 | 2 Unit sort=topic_152 15 | -------------------------------------------------------------------------------- /peazip-sources/dev/util.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/util.hlp -------------------------------------------------------------------------------- /peazip-sources/dev/util.pas: -------------------------------------------------------------------------------- 1 | {Program that uses all util units, use it for "Make"} 2 | 3 | program util; 4 | 5 | {$i std.inc} 6 | 7 | {$ifdef APPCONS} 8 | {$apptype console} 9 | {$endif} 10 | 11 | 12 | uses 13 | {$ifdef WINCRT} 14 | wincrt, 15 | {$endif} 16 | BTypes, 17 | base2n, 18 | bitarray, 19 | compvers, 20 | dates, 21 | hrtimer, 22 | memh, 23 | mem_util, 24 | ministat, 25 | sort, 26 | tsc; 27 | 28 | begin 29 | writeln('"Make" file for util units (c) 2009-2014 W.Ehrhardt'); 30 | writeln('Compiler: ',Compiler_Str); 31 | end. 32 | -------------------------------------------------------------------------------- /peazip-sources/dev/util.tph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/dev/util.tph -------------------------------------------------------------------------------- /peazip-sources/dev/windres_pea.bat: -------------------------------------------------------------------------------- 1 | windres -i pea.rc -o pea.res -------------------------------------------------------------------------------- /peazip-sources/dev/windres_peazip.bat: -------------------------------------------------------------------------------- 1 | windres -i peazip.rc -o peazip.res -------------------------------------------------------------------------------- /peazip-sources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/readme.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/7z/place 7z binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/7z/place 7z binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/arc/place arc binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/arc/place arc binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/brotli/place brotli binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/brotli/place brotli binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/lpaq/place lpaq binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/lpaq/place lpaq binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/paq/place paq binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/paq/place paq binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/quad/place quad binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/quad/place quad binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/readme-bin.txt: -------------------------------------------------------------------------------- 1 | (peazip)/res/bin directory contains architecture specific third party binaries (and, on Windows only, PeaZip configuration wizard). 2 | Binaries are collected in subfolders, here provided empty for reference, see an existing packages for more details. 3 | -------------------------------------------------------------------------------- /peazip-sources/res/bin/upx/place upx binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/upx/place upx binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/zpaq/place zpaq binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/zpaq/place zpaq binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/bin/zstd/place zstd binary here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/bin/zstd/place zstd binary here.txt -------------------------------------------------------------------------------- /peazip-sources/res/portable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/portable -------------------------------------------------------------------------------- /peazip-sources/res/readme-res.txt: -------------------------------------------------------------------------------- 1 | (peazip)/res/portable is an empty file to set the application to wiork as portable application, saving configuration to (peazip)/res/conf path rather than in user path (which also depends on the target operating system's standards) 2 | 3 | (peazip)/res/bin directory contains architecture specific third party binaries (and on Windows PeaZip configuration wizard), see an existing package for reference 4 | 5 | (peazip)/res/conf directory contains configuration files for portable packages, otherwise conf path is user specific 6 | 7 | (peazip)/res/share directory contains non-architecture specific files: sample batch files, licenses, icons and graphics, language files 8 | 9 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to 7Z and send by mail.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to 7Z and send by mail.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to 7Z.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to 7Z.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to BZip2.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to BZip2.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to Brotli.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to Brotli.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to GZip.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to GZip.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to PEA.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to PEA.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to TAR.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to TAR.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to WIM.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to WIM.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to XZ.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to XZ.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to ZIP and send by mail.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to ZIP and send by mail.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to ZIP.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to ZIP.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to Zpaq.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to Zpaq.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to Zstd.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to Zstd.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to archive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to archive.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to self-extracting archive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to self-extracting archive.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to separate 7Z.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to separate 7Z.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to separate ZIP.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to separate ZIP.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to sfx and send by mail.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Add to sfx and send by mail.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Browse path with PeaZip.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Browse path with PeaZip.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Convert.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Convert.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Encrypt (PEA).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Encrypt (PEA).lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract here (smart new folder).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract here (smart new folder).lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract here.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract here.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract to Desktop.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract to Desktop.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract to Documents.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract to Documents.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract to Downloads.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract to Downloads.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract....lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Extract....lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Open as archive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Open as archive.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Open command prompt here.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Open command prompt here.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Secure delete.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Secure delete.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Split file.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Split file.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Test archive(s).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files (x86)/Test archive(s).lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to 7Z and send by mail.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to 7Z and send by mail.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to 7Z.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to 7Z.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to BZip2.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to BZip2.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to Brotli.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to Brotli.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to GZip.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to GZip.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to PEA.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to PEA.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to TAR.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to TAR.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to WIM.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to WIM.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to XZ.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to XZ.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to ZIP and send by mail.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to ZIP and send by mail.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to ZIP.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to ZIP.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to Zpaq.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to Zpaq.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to Zstd.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to Zstd.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to archive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to archive.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to self-extracting archive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to self-extracting archive.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to separate .7Z.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to separate .7Z.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to separate .ZIP.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to separate .ZIP.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to sfx and send by mail.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Add to sfx and send by mail.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Browse path with PeaZip.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Browse path with PeaZip.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Convert.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Convert.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Encrypt (PEA).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Encrypt (PEA).lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract here (smart new folder).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract here (smart new folder).lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract here.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract here.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract to Desktop.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract to Desktop.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract to Documents.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract to Documents.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract to Downloads.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract to Downloads.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract....lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Extract....lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Open as archive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Open as archive.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Open command prompt here.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Open command prompt here.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Secure delete.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Secure delete.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Split file.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Split file.lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Test archive(s).lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/Windows/SendTo/SendTo_Program Files/Test archive(s).lnk -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/SendTo/readme-SendTo.txt: -------------------------------------------------------------------------------- 1 | PeaZip installer creates some useful entries in SendTo menu, this folder contains examples of all SendTo entries that can be created during installation, in order to make simpler to customize the installation, to share the same SenTo menu items between users, and to simplify using this type of system integration for PeaZip Portable. 2 | SendTo menu items of each user are link files and can be simply copied to one user to another as needed, they are stored in C:\Documents and Settings\(username)\SendTo (Windows XP) or C:\Users\(username)\AppData\Roaming\Microsoft\Windows\SendTo (Vista and more recent systems), assuming C as system's disk. 3 | SendTo_Program Files subfolder contains links pointing to default PeaZip installation directory C:\Program Files\PeaZip\ 4 | SendTo_Program Files (x86) subfolder contains links pointing to C:\Program Files (x86)\PeaZip\ which apply if a 32 bit package is installed on a 64 bit system -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/Windows/Windows 11 mini context menu/remove PeaZip entries.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Remove the entries of whitelisted ID set by "add PeaZip *.reg" scripts in Windows 11 mini context menu. 4 | ; You can comment any of the lines with ; character if you prefer to not remove specific entries. 5 | ; If you change the "add PeaZip *.reg" script using different whitelisted IDs please remember to update this script accordingly. 6 | 7 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\SetDesktopWallpaper] 8 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\SetDesktopWallpaper] 9 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to 7z.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add27z %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to archive.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2archive %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to brotli.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2brotli %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to bzip2.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2bzip2 %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to gzip.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2gzip %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to pea.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2pea %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to tar.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2tar %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to wim.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2wim %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to xz.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2xz %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to zip.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2zip %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to zpaq.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2zpaq %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Add to zstd.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2zstd %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Convert.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -add2convert %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Extract here (smart new folder).bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -ext2folder %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Extract to Desktop.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -ext2desktop %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Extract to Documents.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -ext2documents %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Extract to Downloads.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -ext2downloads %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Extract....bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -ext2main %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Open as archive.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -ext2openasarchive %1 -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Remove comment.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -removecomment %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Set comment from file.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -setcommentf C:\commentfile.txt %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Set comment.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -setcomment "comment string" %* -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/Test.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -ext2test %1 -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/bat/peazip-reset.bat: -------------------------------------------------------------------------------- 1 | "%~dp0..\..\..\..\peazip.exe" -peazipreset -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE3-konqueror/peazipadd.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipadd] 2 | Exec=peazip -add2archive %F 3 | Icon=tar 4 | Name=Archive with PeaZip 5 | 6 | [Desktop Entry] 7 | Actions=peazipadd; 8 | Encoding=UTF-8 9 | Name=peazipadd 10 | Name[en_US]=peazipadd 11 | ServiceTypes=all/all 12 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE3-konqueror/peazipconvert.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipconvert] 2 | Exec=peazip -add2convert %F 3 | Icon=tar 4 | Name=Convert archives with PeaZip 5 | 6 | [Desktop Entry] 7 | Actions=peazipconvert; 8 | Encoding=UTF-8 9 | Name=peazipconvert 10 | Name[en_US]=peazipconvert 11 | ServiceTypes=all/all 12 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE3-konqueror/peazipext.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipext] 2 | Exec=peazip -ext2full %F 3 | Icon=tar 4 | Name=Extract (PeaZip) 5 | 6 | [Desktop Entry] 7 | Actions=peazipext; 8 | Encoding=UTF-8 9 | Name=peazipext 10 | Name[en_US]=peazipext 11 | ServiceTypes=all/all 12 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE3-konqueror/peazipextfolder.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipextfolder] 2 | Exec=peazip -ext2folder %F 3 | Icon=tar 4 | Name=Extract here to new folder (PeaZip) 5 | 6 | [Desktop Entry] 7 | Actions=peazipextfolder; 8 | Encoding=UTF-8 9 | Name=peazipextfolder 10 | Name[en_US]=peazipextfolder 11 | ServiceTypes=all/all 12 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE3-konqueror/peazipexthere.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipexthere] 2 | Exec=peazip -ext2here %F 3 | Icon=tar 4 | Name=Extract here (PeaZip) 5 | 6 | [Desktop Entry] 7 | Actions=peazipexthere; 8 | Encoding=UTF-8 9 | Name=peazipexthere 10 | Name[en_US]=peazipexthere 11 | ServiceTypes=all/all 12 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE3-konqueror/peazipopen.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipopen] 2 | Exec=peazip -ext2browse %F 3 | Icon=tar 4 | Name=Open with PeaZip 5 | 6 | [Desktop Entry] 7 | Actions=peazipopen; 8 | Encoding=UTF-8 9 | Name=peazipopen 10 | Name[en_US]=peazipopen 11 | ServiceTypes=all/all 12 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE4-dolphin/peazipadd.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipadd] 2 | Exec=peazip -add2archive %F 3 | Icon=peazip 4 | Name=Archive with PeaZip 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipadd; 9 | Encoding=UTF-8 10 | Name=peazipadd 11 | Name[en_US]=peazipadd 12 | Icon=peazip 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE4-dolphin/peazipconvert.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipconvert] 2 | Exec=peazip -add2convert %F 3 | Icon=peazip 4 | Name=Convert archives with PeaZip 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipconvert; 9 | Encoding=UTF-8 10 | Name=peazipconvert 11 | Name[en_US]=peazipconvert 12 | Icon=peazip 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE4-dolphin/peazipext.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipext] 2 | Exec=peazip -ext2full %F 3 | Icon=peazip 4 | Name=Extract (PeaZip) 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipext; 9 | Icon=peazip 10 | Encoding=UTF-8 11 | Name=peazipext 12 | Name[en_US]=peazipext 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE4-dolphin/peazipextfolder.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipextfolder] 2 | Exec=peazip -ext2folder %F 3 | Icon=peazip 4 | Name=Extract here to new folder (PeaZip) 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipextfolder; 9 | Encoding=UTF-8 10 | Icon=peazip 11 | Name=peazipextfolder 12 | Name[en_US]=peazipextfolder 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE4-dolphin/peazipexthere.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipexthere] 2 | Exec=peazip -ext2here %F 3 | Icon=peazip 4 | Name=Extract here (PeaZip) 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipexthere; 9 | Encoding=UTF-8 10 | Icon=peazip 11 | Name=peazipexthere 12 | Name[en_US]=peazipexthere 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE4-dolphin/peazipopen.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipopen] 2 | Exec=peazip -ext2browse %F 3 | Icon=peazip 4 | Name=Open with PeaZip 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipopen; 9 | Encoding=UTF-8 10 | Icon=peazip 11 | Name=peazipopen 12 | Name[en_US]=peazipopen 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE5-dolphin/peazipadd.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipadd] 2 | Exec=peazip -add2archive %F 3 | Icon=peazip 4 | Name=Archive... 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipadd; 9 | Encoding=UTF-8 10 | Name=peazipadd 11 | Name[en_US]=peazipadd 12 | Icon=peazip 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | X-KDE-Priority=TopLevel 15 | X-KDE-Submenu=PeaZip 16 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE5-dolphin/peazipconvert.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipconvert] 2 | Exec=peazip -add2convert %F 3 | Icon=peazip 4 | Name=Convert... 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipconvert; 9 | Encoding=UTF-8 10 | Name=peazipconvert 11 | Name[en_US]=peazipconvert 12 | Icon=peazip 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | X-KDE-Priority=TopLevel 15 | X-KDE-Submenu=PeaZip 16 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE5-dolphin/peazipext.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipext] 2 | Exec=peazip -ext2full %F 3 | Icon=peazip 4 | Name=Extract... 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipext; 9 | Icon=peazip 10 | Encoding=UTF-8 11 | Name=peazipext 12 | Name[en_US]=peazipext 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | X-KDE-Priority=TopLevel 15 | X-KDE-Submenu=PeaZip 16 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE5-dolphin/peazipextfolder.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipextfolder] 2 | Exec=peazip -ext2folder %F 3 | Icon=peazip 4 | Name=Extract here to a new folder 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipextfolder; 9 | Encoding=UTF-8 10 | Icon=peazip 11 | Name=peazipextfolder 12 | Name[en_US]=peazipextfolder 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | X-KDE-Priority=TopLevel 15 | X-KDE-Submenu=PeaZip 16 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE5-dolphin/peazipexthere.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipexthere] 2 | Exec=peazip -ext2here %F 3 | Icon=peazip 4 | Name=Extract here 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipexthere; 9 | Encoding=UTF-8 10 | Icon=peazip 11 | Name=peazipexthere 12 | Name[en_US]=peazipexthere 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | X-KDE-Priority=TopLevel 15 | X-KDE-Submenu=PeaZip 16 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE5-dolphin/peazipopen.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peazipopen] 2 | Exec=peazip -ext2browse %f 3 | Icon=peazip 4 | Name=Open with PeaZip... 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peazipopen; 9 | Encoding=UTF-8 10 | Icon=peazip 11 | Name=peazipopen 12 | Name[en_US]=peazipopen 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | X-KDE-Priority=TopLevel 15 | X-KDE-Submenu=PeaZip 16 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE5-dolphin/peaziptest.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Action peaziptest] 2 | Exec=peazip -ext2test %f 3 | Icon=peazip 4 | Name=Test with PeaZip 5 | 6 | [Desktop Entry] 7 | Type=Service 8 | Actions=peaziptest; 9 | Encoding=UTF-8 10 | Icon=peazip 11 | Name=peaziptest 12 | Name[en_US]=peaziptest 13 | ServiceTypes=KonqPopupMenu/Plugin,all/all 14 | X-KDE-Priority=TopLevel 15 | X-KDE-Submenu=PeaZip 16 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/KDE6-dolphin/peazip-kde6-minimal.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Service 3 | MimeType=application/octet-stream 4 | Actions=peazipadd;peazipext;peazipexthere;peazipextfolder;peazipopen; 5 | X-KDE-Submenu=PeaZip 6 | X-KDE-Priority=TopLevel 7 | 8 | [Desktop Action peazipadd] 9 | Name=Archive... 10 | Icon=peazip 11 | Exec=peazip -add2archive %F 12 | 13 | [Desktop Action peazipext] 14 | Name=Extract... 15 | Icon=peazip 16 | Exec=peazip -ext2full %F 17 | 18 | [Desktop Action peazipexthere] 19 | Name=Extract here 20 | Icon=peazip_extract 21 | Exec=peazip -ext2here %F 22 | 23 | [Desktop Action peazipextfolder] 24 | Name=Extract here to a new folder 25 | Icon=peazip_extract 26 | Exec=peazip -ext2folder %F 27 | 28 | [Desktop Action peazipopen] 29 | Name=Open with PeaZip... 30 | Icon=peazip 31 | Exec=peazip -ext2browse %F 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/add_peazip_to_kde_context_menu.sh: -------------------------------------------------------------------------------- 1 | cp ./KDE6-dolphin/peazip-kde6.desktop ~/.local/share/kio/servicemenus/peazip-kde6.desktop 2 | chmod +x ~/.local/share/kio/servicemenus/peazip-kde6.desktop 3 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/KDE-servicemenus/readme_add_peazip_to_kde_context_menu.txt: -------------------------------------------------------------------------------- 1 | TO ADD PEAZIP TO KDE6 CONTEXT MENU 2 | 3 | 1) Copy .desktop files from KDE6-dolphin subfolder to (usually): 4 | /usr/share/kio/servicemenus (all users) 5 | ~/.local/share/kio/servicemenus (current user only) 6 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/PeaZip/Add to Archive: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PeaZip Nautilus script 4 | # 5 | # AUTHOR: Giorgio Tani, basing on Gias Kay Lee modification of Chris Giles' script 6 | # VERSION: 0.2 7 | 8 | APPLICATION="PeaZip" 9 | TITLE="Error" 10 | MESSAGE="Could not find the $APPLICATION executable." 11 | 12 | if which peazip 2> /dev/null 13 | then 14 | peazip -add2archive "$@" 15 | else 16 | # Show an error message 17 | if which nautilus-error-dialog; then 18 | nautilus-error-dialog --title "$TITLE" --message "$MESSAGE" 19 | elif which gdialog; then 20 | gdialog --title "$TITLE" --msgbox "$MESSAGE" 20 100 21 | elif which kdialog; then 22 | kdialog --title "$TITLE" --msgbox "$MESSAGE" 23 | elif which gxmessage; then 24 | gxmessage -buttons OK -title "$TITLE" "$MESSAGE" 25 | elif which xmessage; then 26 | xmessage -buttons OK -title "$TITLE" "$MESSAGE" 27 | fi 28 | fi 29 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/PeaZip/Convert: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PeaZip Nautilus script 4 | # 5 | # AUTHOR: Giorgio Tani, basing on Gias Kay Lee modification of Chris Giles' script 6 | # VERSION: 0.2 7 | 8 | APPLICATION="PeaZip" 9 | TITLE="Error" 10 | MESSAGE="Could not find the $APPLICATION executable." 11 | 12 | if which peazip 2> /dev/null 13 | then 14 | peazip -add2convert "$@" 15 | else 16 | # Show an error message 17 | if which nautilus-error-dialog; then 18 | nautilus-error-dialog --title "$TITLE" --message "$MESSAGE" 19 | elif which gdialog; then 20 | gdialog --title "$TITLE" --msgbox "$MESSAGE" 20 100 21 | elif which kdialog; then 22 | kdialog --title "$TITLE" --msgbox "$MESSAGE" 23 | elif which gxmessage; then 24 | gxmessage -buttons OK -title "$TITLE" "$MESSAGE" 25 | elif which xmessage; then 26 | xmessage -buttons OK -title "$TITLE" "$MESSAGE" 27 | fi 28 | fi 29 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/PeaZip/Extract Archive: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PeaZip Nautilus script 4 | # 5 | # AUTHOR: Giorgio Tani, basing on Gias Kay Lee modification of Chris Giles' script 6 | # VERSION: 0.2 7 | 8 | APPLICATION="PeaZip" 9 | TITLE="Error" 10 | MESSAGE="Could not find the $APPLICATION executable." 11 | 12 | if which peazip 2> /dev/null 13 | then 14 | peazip -ext2main "$@" 15 | else 16 | # Show an error message 17 | if which nautilus-error-dialog; then 18 | nautilus-error-dialog --title "$TITLE" --message "$MESSAGE" 19 | elif which gdialog; then 20 | gdialog --title "$TITLE" --msgbox "$MESSAGE" 20 100 21 | elif which kdialog; then 22 | kdialog --title "$TITLE" --msgbox "$MESSAGE" 23 | elif which gxmessage; then 24 | gxmessage -buttons OK -title "$TITLE" "$MESSAGE" 25 | elif which xmessage; then 26 | xmessage -buttons OK -title "$TITLE" "$MESSAGE" 27 | fi 28 | fi 29 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/PeaZip/Extract Here: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PeaZip Nautilus script 4 | # 5 | # AUTHOR: Giorgio Tani, basing on Gias Kay Lee modification of Chris Giles' script 6 | # VERSION: 0.2 7 | 8 | APPLICATION="PeaZip" 9 | TITLE="Error" 10 | MESSAGE="Could not find the $APPLICATION executable." 11 | 12 | if which peazip 2> /dev/null 13 | then 14 | peazip -ext2here "$@" 15 | else 16 | # Show an error message 17 | if which nautilus-error-dialog; then 18 | nautilus-error-dialog --title "$TITLE" --message "$MESSAGE" 19 | elif which gdialog; then 20 | gdialog --title "$TITLE" --msgbox "$MESSAGE" 20 100 21 | elif which kdialog; then 22 | kdialog --title "$TITLE" --msgbox "$MESSAGE" 23 | elif which gxmessage; then 24 | gxmessage -buttons OK -title "$TITLE" "$MESSAGE" 25 | elif which xmessage; then 26 | xmessage -buttons OK -title "$TITLE" "$MESSAGE" 27 | fi 28 | fi 29 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/PeaZip/Extract to New Folder: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PeaZip Nautilus script 4 | # 5 | # AUTHOR: Giorgio Tani, basing on Gias Kay Lee modification of Chris Giles' script 6 | # VERSION: 0.2 7 | 8 | APPLICATION="PeaZip" 9 | TITLE="Error" 10 | MESSAGE="Could not find the $APPLICATION executable." 11 | 12 | if which peazip 2> /dev/null 13 | then 14 | peazip -ext2folder "$@" 15 | else 16 | # Show an error message 17 | if which nautilus-error-dialog; then 18 | nautilus-error-dialog --title "$TITLE" --message "$MESSAGE" 19 | elif which gdialog; then 20 | gdialog --title "$TITLE" --msgbox "$MESSAGE" 20 100 21 | elif which kdialog; then 22 | kdialog --title "$TITLE" --msgbox "$MESSAGE" 23 | elif which gxmessage; then 24 | gxmessage -buttons OK -title "$TITLE" "$MESSAGE" 25 | elif which xmessage; then 26 | xmessage -buttons OK -title "$TITLE" "$MESSAGE" 27 | fi 28 | fi 29 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/PeaZip/Open Archive: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PeaZip Nautilus script 4 | # 5 | # AUTHOR: Giorgio Tani, basing on Gias Kay Lee modification of Chris Giles' script 6 | # VERSION: 0.2 7 | 8 | APPLICATION="PeaZip" 9 | TITLE="Error" 10 | MESSAGE="Could not find the $APPLICATION executable." 11 | 12 | if which peazip 2> /dev/null 13 | then 14 | peazip -ext2openasarchive "$@" 15 | else 16 | # Show an error message 17 | if which nautilus-error-dialog; then 18 | nautilus-error-dialog --title "$TITLE" --message "$MESSAGE" 19 | elif which gdialog; then 20 | gdialog --title "$TITLE" --msgbox "$MESSAGE" 20 100 21 | elif which kdialog; then 22 | kdialog --title "$TITLE" --msgbox "$MESSAGE" 23 | elif which gxmessage; then 24 | gxmessage -buttons OK -title "$TITLE" "$MESSAGE" 25 | elif which xmessage; then 26 | xmessage -buttons OK -title "$TITLE" "$MESSAGE" 27 | fi 28 | fi 29 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/PeaZip/Test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PeaZip Nautilus script 4 | # 5 | # AUTHOR: Giorgio Tani, basing on Gias Kay Lee modification of Chris Giles' script 6 | # VERSION: 0.2 7 | 8 | APPLICATION="PeaZip" 9 | TITLE="Error" 10 | MESSAGE="Could not find the $APPLICATION executable." 11 | 12 | if which peazip 2> /dev/null 13 | then 14 | peazip -ext2test "$@" 15 | else 16 | # Show an error message 17 | if which nautilus-error-dialog; then 18 | nautilus-error-dialog --title "$TITLE" --message "$MESSAGE" 19 | elif which gdialog; then 20 | gdialog --title "$TITLE" --msgbox "$MESSAGE" 20 100 21 | elif which kdialog; then 22 | kdialog --title "$TITLE" --msgbox "$MESSAGE" 23 | elif which gxmessage; then 24 | gxmessage -buttons OK -title "$TITLE" "$MESSAGE" 25 | elif which xmessage; then 26 | xmessage -buttons OK -title "$TITLE" "$MESSAGE" 27 | fi 28 | fi 29 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/add_peazip_to_gnome_context_menu.sh: -------------------------------------------------------------------------------- 1 | cp -r PeaZip ~/.local/share/nautilus/scripts 2 | chmod +x ~/.local/share/nautilus/scripts/PeaZip/* 3 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/Nautilus-scripts/readme_add_peazip_to_gnome_context_menu.txt: -------------------------------------------------------------------------------- 1 | TO ADD PEAZIP TO GNOME CONTEXT MENU 2 | 3 | 1) Copy 'PeaZip' folder (or individual scripts you prefer) to user's Nautilus scripts folder, usually located in: 4 | ~/.local/share/nautilus/scripts 5 | 6 | 2) Make sure "Allow executing file as program" permission is set for the Nautilus scripts, which is required on some DE versions. -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-7z.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to 7Z 3 | NoDisplay=true 4 | Comment=Add files and folders to 7Z archive with PeaZip 5 | Exec=peazip -add27z %F 6 | TryExec=peazip 7 | Icon=peazip_7z 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-archive.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to archive 3 | NoDisplay=true 4 | Comment=Add files and folders to archive with PeaZip 5 | Exec=peazip -add2archive %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-brotli.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to Brotli 3 | NoDisplay=true 4 | Comment=Add files and folders to Brotli archive with PeaZip 5 | Exec=peazip -add2brotli %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-bzip2.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to BZip2 3 | NoDisplay=true 4 | Comment=Add files and folders to BZip2 archive with PeaZip 5 | Exec=peazip -add2bzip2 %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-gzip.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to GZip 3 | NoDisplay=true 4 | Comment=Add files and folders to GZip archive with PeaZip 5 | Exec=peazip -add2gzip %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-pea.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to PEA 3 | NoDisplay=true 4 | Comment=Add files and folders to PEA archive with PeaZip 5 | Exec=peazip -add2pea %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-tar.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to TAR 3 | NoDisplay=true 4 | Comment=Add files and folders to TAR archive with PeaZip 5 | Exec=peazip -add2tar %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-wim.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to WIM 3 | NoDisplay=true 4 | Comment=Add files and folders to WIM image file with PeaZip 5 | Exec=peazip -add2wim %F 6 | TryExec=peazip 7 | Icon=peazip_cd 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-xz.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to XZ 3 | NoDisplay=true 4 | Comment=Add files and folders to XZ archive with PeaZip 5 | Exec=peazip -add2xz %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-zip.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to ZIP 3 | NoDisplay=true 4 | Comment=Add files and folders to ZIP archive with PeaZip 5 | Exec=peazip -add2zip %F 6 | TryExec=peazip 7 | Icon=peazip_zip 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-zpaq.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to Zpaq 3 | NoDisplay=true 4 | Comment=Add files and folders to Zpaq archive with PeaZip 5 | Exec=peazip -add2zpaq %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-add-to-zstd.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to Zstd 3 | NoDisplay=true 4 | Comment=Add files and folders to Zstd archive with PeaZip 5 | Exec=peazip -add2zstd %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-convert.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, convert 3 | NoDisplay=true 4 | Comment=Convert archives with PeaZip 5 | Exec=peazip -add2convert %F 6 | TryExec=peazip 7 | Icon=peazip_convert 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip-open.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, open as archive 3 | NoDisplay=true 4 | Comment=Try to open file as archive with PeaZip, browse dir 5 | Exec=peazip -ext2openasarchive %f 6 | TryExec=peazip 7 | Icon=peazip 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;compress;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_7z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_7z.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_add.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_cd.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_convert.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_extract.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/additional-desktop-files/peazip_zip.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/peazip-add-to-archive.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PeaZip, add to archive 3 | NoDisplay=true 4 | Comment=Add files and folders to archive with PeaZip 5 | Exec=peazip -add2archive %F 6 | TryExec=peazip 7 | Icon=peazip_add 8 | Type=Application 9 | Terminal=false 10 | Categories=Utility;Archiving;Compression; 11 | Keywords=zip;rar;tar;extract;unpack; 12 | MimeType=application/octet-stream; 13 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/peazip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/peazip.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/peazip_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/peazip_add.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/freedesktop_integration/peazip_extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/freedesktop_integration/peazip_extract.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to BZ2.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarAdd 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, add to BZ2 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to BZ2.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, add to BZ2.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to Brotli.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarAdd 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, add to Brotli 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to Brotli.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, add to Brotli.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to GZ.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarAdd 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, add to GZ 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to GZ.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, add to GZ.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to TAR.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarAdd 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, add to TAR 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to TAR.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, add to TAR.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to XZ.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarAdd 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, add to XZ 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to XZ.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, add to XZ.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to Zstd.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarAdd 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, add to Zstd 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to Zstd.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, add to Zstd.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to archive.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarAdd 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, add to archive 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, add to archive.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, add to archive.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, convert.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarDocuments 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, convert 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, convert.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, convert.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract here (smart new folder).workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarFolder 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, extract here (smart new folder) 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract here (smart new folder).workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, extract here (smart new folder).workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Desktop.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarHome 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, extract to Desktop 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Desktop.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Desktop.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Documents.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarDocuments 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, extract to Documents 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Documents.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Documents.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Downloads.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSServices 6 | 7 | 8 | NSBackgroundColorName 9 | background 10 | NSIconName 11 | NSTouchBarTransferDownload 12 | NSMenuItem 13 | 14 | default 15 | PeaZip, extract to Downloads 16 | 17 | NSMessage 18 | runWorkflowAsService 19 | NSRequiredContext 20 | 21 | NSApplicationIdentifier 22 | com.apple.finder 23 | 24 | NSSendFileTypes 25 | 26 | public.item 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Downloads.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/batch/macOS service menus/PeaZip, extract to Downloads.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/readme-batch.txt: -------------------------------------------------------------------------------- 1 | This directory contains sample scripts to: 2 | 1) use PeaZip from command line scripts 3 | 2) integrate PeaZip with host system 4 | 5 | bat folder contains Windows .bat scripts 6 | freedesktop_integration folder contains .desktop files for Linux and BSD desktop environments, plus some desktop specific scripts (e.g. KDE service menus) 7 | macOS service menus folder contains Automator scripts to integrate PeaZip in macOS context menu 8 | sh folder contains .sh scripts for Linux and generic *x like environemnts 9 | Windows folder contains SendTo menu links and .reg scripts for integration in Windows 11 mini context menu -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to 7z.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add27z %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to archive.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2archive %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to brotli.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2brotli %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to bzip2.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2bzip2 %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to gzip.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2gzip %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to pea.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2pea %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to tar.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2tar %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to wim.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2wim %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to xz.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2xz %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to zip.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2zip %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to zpaq.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2zpaq %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Add to zstd.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2zstd %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Convert.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -add2convert %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Extract here (smart new folder).sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -ext2folder %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Extract to Desktop.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -ext2desktop %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Extract to Documents.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -ext2documents %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Extract to Downloads.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -ext2downloads %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Extract....sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -ext2main %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Open as archive.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -ext2openasarchive %f -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Remove comment.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -removecomment %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Set comment from file.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -setcommentf ~/commentfile.txt %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Set comment.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -setcomment 'comment string' %F -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/Test.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -ext2test %f -------------------------------------------------------------------------------- /peazip-sources/res/share/batch/sh/peazip-reset.sh: -------------------------------------------------------------------------------- 1 | "$(dirname "${BASH_SOURCE[0]}")/../../../../peazip" -peazipreset -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/7z codecs LICENSE.txt: -------------------------------------------------------------------------------- 1 | 7-Zip source code 2 | ~~~~~~~~~~~~~~~~~ 3 | License for use and distribution 4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | 7-Zip Codecs Copyright (C) 2016 - 2020 Tino Reichardt. 7 | 8 | 9 | GNU LGPL information 10 | -------------------- 11 | 12 | This library is free software; you can redistribute it and/or 13 | modify it under the terms of the GNU Lesser General Public 14 | License as published by the Free Software Foundation; either 15 | version 2.1 of the License, or (at your option) any later version. 16 | 17 | This library is distributed in the hope that it will be useful, 18 | but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 | Lesser General Public License for more details. 21 | 22 | You should have received a copy of the GNU Lesser General Public 23 | License along with this library; if not, write to the Free Software 24 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 | 26 | -- 27 | Tino Reichardt 28 | -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/7z note.txt: -------------------------------------------------------------------------------- 1 | 7-Zip is released under LGPL by Igor Pavlov. 2 | p7zip is released under LGPL by Myspace and is derived from Igor Pavlov's 7-Zip. 3 | Rar29.dll (Rar29.so on Linux systems) brings additional restriction: the unRAR sources cannot be used to re-create the RAR compression algorithm, which is proprietary. 4 | If you don't need to handle Rar format you can simply remove it. 5 | 6 | Reference: http://www.7-zip.org/ 7 | http://sourceforge.net/projects/p7zip/ 8 | https://github.com/szcnick/p7zip 9 | https://github.com/mcmilk/7-Zip-zstd -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/arc license.txt: -------------------------------------------------------------------------------- 1 | FreeArc is released under GPL by Bulat Ziganshin 2 | 3 | Reference: http://freearc.sourceforge.net/ -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/bcm note.txt: -------------------------------------------------------------------------------- 1 | BCM v1.00 is released under LGPL and Apache 2 by Ilia Muraviev 2 | 3 | http://www.encode.su/ 4 | http://sourceforge.net/projects/bcm/ 5 | https://github.com/encode84/bcm -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/brotli note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/copying/third-parties/brotli note.txt -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/lpaq note.txt: -------------------------------------------------------------------------------- 1 | LPAQ is released under GPL and is derived from Matt Mahoney's LPAQ 2 | 3 | Reference: http://www.mattmahoney.net/dc/ -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/paq note.txt: -------------------------------------------------------------------------------- 1 | PAQ is released under GPL and is derived from Matt Mahoney's PAQ 2 | 3 | Reference: http://www.mattmahoney.net/dc/ -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/upx note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/copying/third-parties/upx note.txt -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/zpaq note.txt: -------------------------------------------------------------------------------- 1 | ZPAQ is released under GPL and is derived from Matt Mahoney's ZPAQ 2 | 3 | Reference: http://mattmahoney.net/zpaq/ -------------------------------------------------------------------------------- /peazip-sources/res/share/copying/third-parties/zstd note.txt: -------------------------------------------------------------------------------- 1 | ZSTD is released under Dual license BSD / GPLv2 by Yann Collet, Przemysław Skibiński 2 | 3 | Reference: https://facebook.github.io/zstd/ -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_7z.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_7z.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_7z.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_archive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_archive.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_archive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_archive.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_block.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_block.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_block.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_block.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_cd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_cd.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_cd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_cd.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_package.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_package.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_package.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_rar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_rar.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_rar.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_zip.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_zip.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/PeaZip_zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/PeaZip_zip.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_7z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_7z.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_add.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_add_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_add_alt.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_archive.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_block.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_browse.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_cd.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_classic.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_classic.icns -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_classic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_classic.ico -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_classic.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_convert.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_extract.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_extract_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_extract_alt.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_package.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_rar.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_seven.icl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_seven.icl -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/peazip_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/icons/peazip_zip.png -------------------------------------------------------------------------------- /peazip-sources/res/share/icons/readme-icons.txt: -------------------------------------------------------------------------------- 1 | PeaZip icons for system integration are saved in (peazip)/res/share/icons folder, with (peazip) being the directory containing PeaZip application. 2 | 3 | LINUX 4 | On Linux systems .png icon file(s) needs to be copied to /usr/share/icons or /usr/local/share/icons (system-wide) ~/.local/share/icons/ (user-specific). 5 | Linux .dsktop files for system integration are provided in (peazip)/res/share/batch/freedesktop_integration folder. 6 | 7 | MACOS 8 | .icns and .png files can be used on macOS to customize the app (or the system) 9 | As general suggestion, File > Get info screen allows to drag&drop a custom icon / image over current icon (displayed in the top left angle) to replace it. 10 | 11 | WINDOWS 12 | On Windows systems, replacing the .ico and .icl files in this folder changes PeaZip system icons for context menu and file type associations. 13 | Windows may need to rebuild its icon cache before showing the updated icons, in this case please refer to a guide for your specific system version https://www.google.com/search?q=rebuild+icon+cache+windows 14 | 15 | -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/bg.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/bg.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/by-cr.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/by-cr.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/by-lt.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/by-lt.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/ca.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/ca.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/chs.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/chs.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/cht.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/cht.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/cz.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/cz.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/de-uml.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/de-uml.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/default.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/default.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/en-gb.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/en-gb.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/en.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/en.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/es-es.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/es-es.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/es-la.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/es-la.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/eu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/eu.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/fi.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/fi.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/fr.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/fr.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/fr_alt.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/fr_alt.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/fr_alt2.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/fr_alt2.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/gr.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/gr.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/hu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/hu.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/id.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/id.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/it.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/it.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/ja.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/ja.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/ko.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/ko.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/lv.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/lv.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/nl.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/nl.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/pl.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/pl.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/pt-br.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/pt-br.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/pt-pt.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/pt-pt.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/ru.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/ru.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/sl.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/sl.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/sv.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/sv.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/tr.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/tr.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/lang-wincontext/uk.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/lang-wincontext/uk.reg -------------------------------------------------------------------------------- /peazip-sources/res/share/peazip_help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/peazip_help.pdf -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/different.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/different.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/droid.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/droid.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/line.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/line.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/mac-dark.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/mac-dark.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/mac.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/mac.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/main-box.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/main-box.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/main-cube.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/main-cube.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/main-dark.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/main-dark.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/main-embedded/fm-theme.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/main-embedded/fm-theme.bmp -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/main-embedded/readme.txt: -------------------------------------------------------------------------------- 1 | MAIN-EMBEDDED 2 | Embedded themes does not contain .theme file nor graphic, that is embedded in PeaZip for maximum startup performances. 3 | Main theme provides icons meant for a "neutral" look and feel, in order to be visually familiar to users of different operating systems such as macOS, Windows, and various Linux desktop environments. -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/main-mug.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/main-mug.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/main.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/main.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/nographic-embedded/fm-theme.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/nographic-embedded/fm-theme.bmp -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/nographic-embedded/readme.txt: -------------------------------------------------------------------------------- 1 | NOGRAPHIC-EMBEDDED 2 | Embedded themes does not contain .theme file nor graphic, that is embedded in PeaZip for maximum startup performances. 3 | This theme is meant to start PeaZip GUI with no graphic icons. -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/ten-dark.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/ten-dark.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/ten.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/ten.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/tux-alt.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/tux-alt.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/tux-dark.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/tux-dark.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/tux.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/tux.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/tuxedo-alt.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/tuxedo-alt.theme.7z -------------------------------------------------------------------------------- /peazip-sources/res/share/themes/tuxedo.theme.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peazip/PeaZip/626a5a84c67690eaf270ea6c25d0f4a73b3d2a45/peazip-sources/res/share/themes/tuxedo.theme.7z --------------------------------------------------------------------------------