git: e7e061231034 - main - editors/linux-bcompare: compare/sync/merge tool

Kevin Bowling kbowling at FreeBSD.org
Tue Jun 15 22:39:54 UTC 2021


The branch main has been updated by kbowling:

URL: https://cgit.FreeBSD.org/ports/commit/?id=e7e061231034c6db00196d59174f5f23ae74c17e

commit e7e061231034c6db00196d59174f5f23ae74c17e
Author:     Matías Pizarro <matias at pizarro.net>
AuthorDate: 2021-06-15 22:26:53 +0000
Commit:     Kevin Bowling <kbowling at FreeBSD.org>
CommitDate: 2021-06-15 22:39:22 +0000

    editors/linux-bcompare: compare/sync/merge tool
    
    https://www.scootersoftware.com/features.php
    
    PR:             249919
    Approved by:    new maintainer
---
 editors/Makefile                                   |   1 +
 editors/linux-bcompare/Makefile                    |  84 ++++
 editors/linux-bcompare/distinfo                    |   5 +
 editors/linux-bcompare/files/LICENSE.txt           | 154 ++++++
 .../files/extra-patch-usr_bin_bcompare_amd64       |  44 ++
 .../files/extra-patch-usr_bin_bcompare_i386        |  44 ++
 editors/linux-bcompare/files/nosched.c             |  35 ++
 editors/linux-bcompare/pkg-descr                   |   5 +
 editors/linux-bcompare/pkg-plist                   | 544 +++++++++++++++++++++
 9 files changed, 916 insertions(+)

diff --git a/editors/Makefile b/editors/Makefile
index 16767092b448..4f49be1dc5d6 100644
--- a/editors/Makefile
+++ b/editors/Makefile
@@ -185,6 +185,7 @@
     SUBDIR += libreoffice-xh
     SUBDIR += libreoffice-zu
     SUBDIR += libreoffice6
+    SUBDIR += linux-bcompare
     SUBDIR += linux-sublime
     SUBDIR += linux-sublime3
     SUBDIR += linux-wps-office
diff --git a/editors/linux-bcompare/Makefile b/editors/linux-bcompare/Makefile
new file mode 100644
index 000000000000..cd175b05b652
--- /dev/null
+++ b/editors/linux-bcompare/Makefile
@@ -0,0 +1,84 @@
+# Created by: Matías Pizarro <matias at pizarro.net>
+
+PORTNAME=	bcompare
+DISTVERSION=	4.3.7
+DISTVERSIONSUFFIX=	.25118
+CATEGORIES=	editors devel linux
+MASTER_SITES=	http://scootersoftware.com/
+PKGNAMEPREFIX=	linux-
+EXTRACT_SUFX=	.rpm
+
+MAINTAINER=	matias at pizarro.net
+COMMENT=	Compare, sync, and merge files and folders (X11)
+
+LICENSE=	SCOOTERSOFTWARE
+LICENSE_NAME=	Scooter Software License
+LICENSE_FILE=	${FILESDIR}/LICENSE.txt
+LICENSE_PERMS=	dist-mirror no-dist-sell pkg-mirror no-pkg-sell auto-accept
+
+ONLY_FOR_ARCHS=	amd64 i386
+ONLY_FOR_ARCHS_REASON=	Upstream only supports amd64 and i386
+
+USES=		desktop-file-utils linux shared-mime-info shebangfix
+INSTALLS_ICONS=	yes
+USE_LINUX=	base:run devtools:build qt-x11:run xorglibs:run
+
+NO_BUILD=	yes
+
+NO_WRKSUBDIR=	true
+
+DATA_FILTER=	-type d -o -name *\.html -o -name *\.js -o -name *\.css -o \
+		-name *\.gif -o -name *\.png -o -name *\.jpg -o -name \
+		*\.desktop -o -name mime\.types -o -name README -o -name \
+		BCompare.mad -o -name RPM-GPG-KEY-scootersoftware -o -name \
+		scootersoftware.repo
+
+DISTNAME_amd64=	${DISTNAME}.x86_64
+DISTNAME_i386=	${DISTNAME}.i386
+LIB_FILES=	libQt4Pas.so.5 lib7z.so libunrar.so nosched.so
+PROGRAM_FILES=	BCompare bcmount32 bcmount64
+SCRIPT_FILES=	bcmount.sh kde_context_menu
+
+.include <bsd.port.options.mk>
+
+.if ${ARCH} == i386
+LIBDIR=		lib
+EXTRA_PATCHES=	${PATCHDIR}/extra-patch-usr_bin_bcompare_i386
+PLIST_SUB+=	QT4AMD64="@comment "
+.elif ${ARCH} == amd64
+LIBDIR=		lib64
+EXTRA_PATCHES=	${PATCHDIR}/extra-patch-usr_bin_bcompare_amd64
+PLIST_SUB+=	QT4AMD64=""
+.endif
+
+BCLIB_SRC=	${WRKSRC}/usr/${LIBDIR}/beyondcompare
+BCLIB_STG=	${STAGEDIR}${PREFIX}/lib/beyondcompare
+
+SHEBANG_FILES=	${BCLIB_SRC}/bcmount.sh ${BCLIB_SRC}/kde_context_menu
+
+pre-install:
+	${LINUXBASE}/usr/bin/gcc -Wall -fPIC -shared ${FILESDIR}/nosched.c -ldl -o ${BCLIB_SRC}/nosched.so
+
+do-install:
+# bin
+	(cd ${WRKSRC}/usr/bin && ${INSTALL_SCRIPT} bcompare ${STAGEDIR}${PREFIX}/bin)
+# lib
+	(cd ${BCLIB_SRC}     && ${COPYTREE_SHARE}  .                ${BCLIB_STG} "${DATA_FILTER}")
+	(cd ${BCLIB_SRC}     && ${INSTALL_PROGRAM} ${PROGRAM_FILES} ${BCLIB_STG})
+	(cd ${BCLIB_SRC}     && ${INSTALL_SCRIPT}  ${SCRIPT_FILES}  ${BCLIB_STG})
+	(cd ${BCLIB_SRC}     && ${INSTALL_LIB}     ${LIB_FILES}     ${BCLIB_STG})
+.if ${ARCH} == amd64
+	(cd ${BCLIB_SRC}/qt4 && ${INSTALL_LIB}     $$(ls *.so.4)    ${BCLIB_STG}/qt4)
+.endif
+	(cd ${BCLIB_SRC}/ext && ${INSTALL_LIB}     $$(ls *.so)      ${BCLIB_STG}/ext)
+	${LN} -sf ${LINUXBASE}/usr/${LIBDIR}/libbz2.so.1.0.6 ${BCLIB_STG}/libbz2.so.1.0
+# data
+	(cd ${WRKSRC}/usr/share && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share)
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/16x16/apps
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/32x32/apps
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps
+	${LN} -sf ../../../../pixmaps/bcompare.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/16x16/apps/bcompare.png
+	${LN} -sf ../../../../pixmaps/bcomparefull32.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/32x32/apps/bcompare.png
+	${LN} -sf ../../../../pixmaps/bcompare.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps/bcompare.png
+
+.include <bsd.port.mk>
diff --git a/editors/linux-bcompare/distinfo b/editors/linux-bcompare/distinfo
new file mode 100644
index 000000000000..d3915c5a2073
--- /dev/null
+++ b/editors/linux-bcompare/distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1601823220
+SHA256 (bcompare-4.3.7.25118.i386.rpm) = 71a72fa4318b7afedb03ec7147523d3aa47e26b090e1a170316990eb88268828
+SIZE (bcompare-4.3.7.25118.i386.rpm) = 12675958
+SHA256 (bcompare-4.3.7.25118.x86_64.rpm) = c913df4d0df858c4d1de62ee269b82a3e231b7408e36ee43ba672fd07e97dee0
+SIZE (bcompare-4.3.7.25118.x86_64.rpm) = 18808757
diff --git a/editors/linux-bcompare/files/LICENSE.txt b/editors/linux-bcompare/files/LICENSE.txt
new file mode 100644
index 000000000000..1e18521031cf
--- /dev/null
+++ b/editors/linux-bcompare/files/LICENSE.txt
@@ -0,0 +1,154 @@
+License Agreement
+
+https://www.scootersoftware.com/v4help/index.html?support_ordering_and_license.html
+
+Your use of Beyond Compare is governed by the following Terms and
+Conditions:
+
+Acceptance of License Agreement
+
+You should carefully read the following terms and conditions before
+using Beyond Compare 4 (the "Software").  Unless you have a different
+license agreement signed by Scooter Software, your use of this software
+indicates your agreement to these terms and conditions.  If you do not
+accept all of these terms and conditions, you must cease using the
+Software immediately.
+
+Copyright
+
+Customer acknowledges that the Software, License Key and accompanying
+user documentation ("Documentation") are copyrighted works owned by
+Scooter Software and that Customer has no rights in the foregoing except
+as expressly granted herein.
+
+Free 30-Day Trial
+
+This is not free software.  Scooter Software hereby grants you a
+non-exclusive, non-transferable, limited license to use the Software
+free of charge for a period of thirty (30) days.  Use of the Software
+beyond the thirty-day (30-day) trial period requires the purchase of a
+License Key as described below.  Use of the Software beyond the
+thirty-day (30-day) trial period without purchase of a License Key is a
+violation of U.S. and international copyright laws.
+
+License Key
+
+A unique key that will allow you to use the Software beyond the
+thirty-day (30-day) free trial period ("License Key") may be purchased
+from the Scooter Software website, which is currently
+http://www.scootersoftware.com.  A License Key may be purchased for
+single or multiple users, all users at a named site, or an entire
+enterprise.  A License Key is further categorized by feature set
+(Standard Edition or Pro Edition), and operating system platform
+(Windows Platform, Mac Platform, Linux Platform, or Multi Platform).  A
+price list on the Scooter Software website details pricing for all
+license options.  Upon purchase of a License Key, Scooter Software
+hereby grants you a non-exclusive, non-transferable license to use the
+Software with the applicable feature set on the applicable operating
+system platform as follows:
+
+   Per-User License Key:  A Per-User License Key may be purchased for a
+   specific quantity of users.  Each user of the total quantity may be
+   either (a) a person who has access to the Software on any number of
+   computers, or (b) a computer on which the Software will be installed
+   for use by any number of persons, one at a time, while physically
+   present at the computer.  Each person so licensed must be the
+   Customer, an employee of the Customer, an employee of a Customer's
+   subsidiary company, or a third party consultant retained by the
+   Customer to perform information technology functions (each, a "Third
+   Party") to use the Software solely for Customer's internal business
+   operations and benefit, and for no other purpose whatsoever.
+   Customer shall ensure that such Third Party complies with the terms
+   of this License Agreement and will be responsible for any breach by
+   such Third Party.
+
+   Site License Key:  An unlimited user, single-location License Key may
+   be used at Customer locations within a 100-mile radius of the site
+   identified in the License Key (the "Site"), by any and all of
+   Customer's employees while personally present at the Site.  This
+   license is likewise granted to Customer's employees who typically
+   work at the Site, while performing Customer work at other locations
+   such as client locations or home.  Customer shall have the right to
+   sublicense its rights under this License Agreement to third party
+   consultants that it retains to perform information technology
+   functions (each, an "Onsite Consultant"), while personally present at
+   the Site to use the Software solely for Customer's internal business
+   operations and benefit, and for no other purpose whatsoever.
+   Customer shall ensure that such Onsite Consultant complies with the
+   terms of this License Agreement and will be responsible for any
+   breach by such Onsite Consultant.
+
+   Enterprise License Key:  An enterprise-wide ("Enterprise") License
+   Key may be used world-wide, by any and all of Customer's employees.
+   Customer shall have the right to sublicense its rights under this
+   License Agreement to third party consultants that it retains to
+   perform information technology functions (each, an "Enterprise
+   Consultant"), while personally present at any Customer location to
+   use the Software solely for Customer's internal business operations
+   and benefit, and for no other purpose whatsoever.  Customer shall
+   ensure that such Enterprise Consultant complies with the terms of
+   this License Agreement and will be responsible for any breach by such
+   Enterprise Consultant.
+
+You shall be responsible for maintaining the License Key in a safe
+location and are specifically prohibited from distributing the License
+Key, intentionally or unintentionally, to any third party not authorized
+by this License Agreement.  Upon loss or distribution of the License
+Key, Customer shall be required to pay a reinstatement fee at Scooter
+Software's discretion.
+
+Distribution of the Software
+
+Provided that you do not copy or distribute the License Key, and you
+include a copy of this License Agreement, you may (a) make copies of the
+Software; (b) give exact, unmodified copies of the Software to anyone;
+and (c) distribute the Software in its unmodified form via electronic
+means.  You are specifically prohibited from charging any fees for any
+such copies or distributions.
+
+Term and Termination
+
+You may continue to use the Software for as long as you comply with the
+terms and conditions of this License Agreement.  Scooter Software may
+terminate this License Agreement immediately upon notice to you in the
+event that Scooter Software has reason to believe you have breached this
+License Agreement.  Upon termination, you shall immediately cease all
+use of the Software, License Key and Documentation and shall not be
+entitled to a refund of any fees paid.
+
+Warranties
+
+Scooter Software warrants and represents that: (a) it has all right,
+title and interest in the Software, the right to enter into and provide
+the license rights granted by this Agreement, and is not party to and
+will not enter into any agreement, covenant or encumbrance that
+conflicts with this Agreement; (b) the Software does not, to the best of
+Scooter Software’s knowledge, infringe upon or violate any patent,
+copyright, or trade secret or other proprietary right of any third
+party; (c) the advent of any date or year shall not adversely affect the
+performance of the Software; and (d) the Software is not contaminated by
+harmful code (e.g., self-propagating program instructions commonly
+called viruses, worms or Trojans).
+
+General Disclaimer
+
+Except for the limited warranties set forth herein, THE SOFTWARE AND
+DOCUMENTATION ARE PROVIDED "AS IS".  TO THE MAXIMUM EXTENT PERMITTED BY
+APPLICABLE LAW, SCOOTER SOFTWARE DISCLAIMS ALL WARRANTIES, EITHER
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF
+MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
+ANY LIABILITY OF SCOOTER SOFTWARE WILL BE LIMITED EXCLUSIVELY TO REFUND
+OF THE PURCHASE PRICE.
+
+Miscellaneous Provisions
+
+The validity and interpretation of this Agreement shall be governed by
+the laws of the United States of America and the State of Wisconsin.
+Customer agrees that the state and federal courts located in the State
+of Wisconsin, Dane County, shall be the appropriate site of venue for
+actions relating to this Agreement, and hereby consents to the exclusive
+jurisdiction and venue of such courts.  If any provision of this
+Agreement is declared by a court of competent jurisdiction to be
+invalid, illegal or unenforceable, such provision or part thereof will
+be severed from the Agreement and the remaining provisions will remain
+in full force and effect.
diff --git a/editors/linux-bcompare/files/extra-patch-usr_bin_bcompare_amd64 b/editors/linux-bcompare/files/extra-patch-usr_bin_bcompare_amd64
new file mode 100644
index 000000000000..783ab026e05f
--- /dev/null
+++ b/editors/linux-bcompare/files/extra-patch-usr_bin_bcompare_amd64
@@ -0,0 +1,44 @@
+--- usr/bin/bcompare.orig	2020-09-01 19:23:29 UTC
++++ usr/bin/bcompare
+@@ -1,17 +1,22 @@
+ #!/bin/sh
+ 
+-BC_LIB=/usr/lib64/beyondcompare
++LINUXULATOR_LIB=/compat/linux/usr/lib64
++
++BC_LIB=/usr/local/lib/beyondcompare
+ export BC_LIB
+ 
++_LD_PRELOAD="$BC_LIB/nosched.so"
++export _LD_PRELOAD
++
+ BC_PACKAGE_TYPE=rpm
+ export BC_PACKAGE_TYPE
+ 
+ EXEC="$BC_LIB/BCompare"
+ 
+ if [ -n "$LD_LIBRARY_PATH" ]; then
+-export LD_LIBRARY_PATH="$BC_LIB:$LD_LIBRARY_PATH"
++export LD_LIBRARY_PATH="$BC_LIB:$LD_LIBRARY_PATH:$LINUXULATOR_LIB"
+ else
+-export LD_LIBRARY_PATH="$BC_LIB"
++export LD_LIBRARY_PATH="$BC_LIB:$LINUXULATOR_LIB"
+ fi
+ 
+ #check to see if we have all of the shared libraries.
+@@ -44,7 +49,7 @@ while [ "$#" -gt 0 ]; do
+ 	ARGS=$ARGS" \"$1\""
+ 	shift 1
+ done
+-/bin/bash -c "exec -a $0 $EXEC $ARGS > /dev/null 2>&1" $0
++/usr/bin/env bash -c "exec -a $0 /usr/bin/env LD_PRELOAD=$_LD_PRELOAD $EXEC $ARGS > /dev/null 2>&1" $0
+ 
+ ########################################
+ # set exit code / wait on existing instance
+@@ -54,4 +59,6 @@ if [ $EXIT = 99 ]; then
+ 	EXIT=`cat /tmp/BC4_.$$`
+ 	rm -f /tmp/BC4_.$$
+ fi
++[ ! -f bash.core ] || rm -f bash.core
++[ ! -f pgrep.core ] || rm -f pgrep.core
+ exit $EXIT
diff --git a/editors/linux-bcompare/files/extra-patch-usr_bin_bcompare_i386 b/editors/linux-bcompare/files/extra-patch-usr_bin_bcompare_i386
new file mode 100644
index 000000000000..29a59382a847
--- /dev/null
+++ b/editors/linux-bcompare/files/extra-patch-usr_bin_bcompare_i386
@@ -0,0 +1,44 @@
+--- usr/bin/bcompare.orig	2020-09-24 21:23:08 UTC
++++ usr/bin/bcompare
+@@ -1,17 +1,22 @@
+ #!/bin/sh
+ 
+-BC_LIB=/usr/lib/beyondcompare
++LINUXULATOR_LIB=/compat/linux/usr/lib
++
++BC_LIB=/usr/local/lib/beyondcompare
+ export BC_LIB
+ 
++_LD_PRELOAD="$BC_LIB/nosched.so"
++export _LD_PRELOAD
++
+ BC_PACKAGE_TYPE=rpm
+ export BC_PACKAGE_TYPE
+ 
+ EXEC="$BC_LIB/BCompare"
+ 
+ if [ -n "$LD_LIBRARY_PATH" ]; then
+-export LD_LIBRARY_PATH="$BC_LIB:$LD_LIBRARY_PATH"
++export LD_LIBRARY_PATH="$BC_LIB:$LD_LIBRARY_PATH:$LINUXULATOR_LIB"
+ else
+-export LD_LIBRARY_PATH="$BC_LIB"
++export LD_LIBRARY_PATH="$BC_LIB:$LINUXULATOR_LIB"
+ fi
+ 
+ #check to see if we have all of the shared libraries.
+@@ -44,7 +49,7 @@ while [ "$#" -gt 0 ]; do
+    ARGS=$ARGS" \"$1\""
+    shift 1
+ done
+-/bin/bash -c "exec -a $0 $EXEC $ARGS > /dev/null 2>&1" $0
++/usr/bin/env bash -c "exec -a $0 /usr/bin/env LD_PRELOAD=$_LD_PRELOAD $EXEC $ARGS > /dev/null 2>&1" $0
+ 
+ ########################################
+ # set exit code / wait on existing instance
+@@ -54,4 +59,6 @@ if [ $EXIT = 99 ]; then
+ 	EXIT=`cat /tmp/BC4_.$$`
+ 	rm -f /tmp/BC4_.$$
+ fi
++[ ! -f bash.core ] || rm -f bash.core
++[ ! -f pgrep.core ] || rm -f pgrep.core
+ exit $EXIT
diff --git a/editors/linux-bcompare/files/nosched.c b/editors/linux-bcompare/files/nosched.c
new file mode 100644
index 000000000000..36dde314f027
--- /dev/null
+++ b/editors/linux-bcompare/files/nosched.c
@@ -0,0 +1,35 @@
+#define _GNU_SOURCE
+
+#include <dlfcn.h>
+#include <pthread.h>
+#include <stdio.h>
+#include <string.h>
+
+/* Thanks to shkhln (https://forums.freebsd.org/members/shkhln.54069/) and
+ * aragats (https://forums.freebsd.org/members/aragats.37029/) for coming
+ * up with the nosched.c fix
+ */
+
+int pthread_noop() {
+  fprintf(stderr, "%s(...)\n", __func__);
+  return 0;
+}
+
+/* https://stackoverflow.com/questions/15599026/how-can-i-intercept-dlsym-calls-using-ld-preload/18825060#18825060 */
+void* _dl_sym(void*, const char*, void*);
+
+static void* (*libc_dlsym)(void*, const char*) = NULL;
+
+void* dlsym(void* handle, const char* symbol) {
+
+  if (!libc_dlsym) {
+    libc_dlsym = _dl_sym(RTLD_NEXT, "dlsym", dlsym);
+  }
+
+  if (strcmp(symbol, "pthread_attr_setinheritsched") == 0) {
+    return pthread_noop;
+  }
+
+  return libc_dlsym(handle, symbol);
+}
+
diff --git a/editors/linux-bcompare/pkg-descr b/editors/linux-bcompare/pkg-descr
new file mode 100644
index 000000000000..806b226a7d03
--- /dev/null
+++ b/editors/linux-bcompare/pkg-descr
@@ -0,0 +1,5 @@
+Compare files and folders using simple, powerful commands that focus on
+the differences you're interested in and ignore those you're not.  Merge
+changes, synchronize files, and generate reports.
+
+WWW: https://www.scootersoftware.com/
diff --git a/editors/linux-bcompare/pkg-plist b/editors/linux-bcompare/pkg-plist
new file mode 100644
index 000000000000..b74fd3d9ffe9
--- /dev/null
+++ b/editors/linux-bcompare/pkg-plist
@@ -0,0 +1,544 @@
+ at dir bin
+bin/bcompare
+ at dir share
+ at dir share/applications
+share/applications/bcompare.desktop
+ at dir share/mime
+ at dir share/mime/packages
+share/mime/packages/bcompare.xml
+ at dir share/icons
+ at dir share/icons/hicolor
+ at dir share/icons/hicolor/16x16
+ at dir share/icons/hicolor/16x16/apps
+share/icons/hicolor/16x16/apps/bcompare.png
+ at dir share/icons/hicolor/32x32
+ at dir share/icons/hicolor/32x32/apps
+share/icons/hicolor/32x32/apps/bcompare.png
+ at dir share/icons/hicolor/48x48
+ at dir share/icons/hicolor/48x48/apps
+share/icons/hicolor/48x48/apps/bcompare.png
+ at dir share/pixmaps
+share/pixmaps/bcompare.png
+share/pixmaps/bcomparefull32.png
+share/pixmaps/bcomparehalf32.png
+ at dir lib/beyondcompare
+lib/beyondcompare/bcmount.sh
+lib/beyondcompare/bcmount32
+lib/beyondcompare/bcmount64
+lib/beyondcompare/BCompare
+lib/beyondcompare/BCompare.mad
+lib/beyondcompare/kde_context_menu
+lib/beyondcompare/lib7z.so
+lib/beyondcompare/libQt4Pas.so.5
+lib/beyondcompare/libunrar.so
+lib/beyondcompare/mime.types
+lib/beyondcompare/README
+lib/beyondcompare/RPM-GPG-KEY-scootersoftware
+lib/beyondcompare/scootersoftware.repo
+lib/beyondcompare/nosched.so
+lib/beyondcompare/libbz2.so.1.0
+ at dir lib/beyondcompare/ext
+@(,,644) lib/beyondcompare/ext/bcompare_ext_kde.desktop
+@(,,644) lib/beyondcompare/ext/bcompare_ext_konq.desktop
+lib/beyondcompare/ext/bcompare-ext-caja.amd64.so
+lib/beyondcompare/ext/bcompare-ext-caja.i386.so
+lib/beyondcompare/ext/bcompare-ext-nautilus.amd64.so
+lib/beyondcompare/ext/bcompare-ext-nautilus.i386.so
+lib/beyondcompare/ext/bcompare-ext-nemo.amd64.so
+lib/beyondcompare/ext/bcompare-ext-nemo.i386.so
+lib/beyondcompare/ext/bcompare-ext-thunarx-2.amd64.so
+lib/beyondcompare/ext/bcompare-ext-thunarx-2.i386.so
+lib/beyondcompare/ext/bcompare-ext-thunarx-3.amd64.so
+lib/beyondcompare/ext/bcompare-ext-thunarx-3.i386.so
+lib/beyondcompare/ext/bcompare_ext_kde.amd64.so
+lib/beyondcompare/ext/bcompare_ext_kde.i386.so
+lib/beyondcompare/ext/bcompare_ext_kde5.amd64.so
+lib/beyondcompare/ext/bcompare_ext_kde5.i386.so
+lib/beyondcompare/ext/bcompare_ext_konq.amd64.so
+lib/beyondcompare/ext/bcompare_ext_konq.i386.so
+ at dir lib/beyondcompare/help
+@(,,644) lib/beyondcompare/help/3-way_merge_concepts.html
+@(,,644) lib/beyondcompare/help/accept.png
+@(,,644) lib/beyondcompare/help/archive_files.html
+@(,,644) lib/beyondcompare/help/bcclipmain.html
+@(,,644) lib/beyondcompare/help/bcclipmain.png
+@(,,644) lib/beyondcompare/help/bcclipmain_zoom57.jpg
+@(,,644) lib/beyondcompare/help/bcclipoptions.html
+@(,,644) lib/beyondcompare/help/bcclipsystemtray.png
+@(,,644) lib/beyondcompare/help/bclogo.png
+@(,,644) lib/beyondcompare/help/browse.png
+@(,,644) lib/beyondcompare/help/calling_bc_from_other_applications.html
+@(,,644) lib/beyondcompare/help/cicon1.png
+@(,,644) lib/beyondcompare/help/cicon2.png
+@(,,644) lib/beyondcompare/help/cicon9.png
+@(,,644) lib/beyondcompare/help/cicon_loadindex_ani.gif
+@(,,644) lib/beyondcompare/help/ciconidx.gif
+@(,,644) lib/beyondcompare/help/collapseall.png
+@(,,644) lib/beyondcompare/help/command_line_reference.html
+@(,,644) lib/beyondcompare/help/commands_reference.html
+@(,,644) lib/beyondcompare/help/commandsbc.html
+@(,,644) lib/beyondcompare/help/commandsdata.html
+@(,,644) lib/beyondcompare/help/commandsdir.html
+@(,,644) lib/beyondcompare/help/commandsdirmerge.html
+@(,,644) lib/beyondcompare/help/commandsdirsync.html
+@(,,644) lib/beyondcompare/help/commandshex.html
+@(,,644) lib/beyondcompare/help/commandshome.html
+@(,,644) lib/beyondcompare/help/commandsmp3.html
+@(,,644) lib/beyondcompare/help/commandspix.html
+@(,,644) lib/beyondcompare/help/commandsreg.html
+@(,,644) lib/beyondcompare/help/commandstext.html
+@(,,644) lib/beyondcompare/help/commandstextedit.html
+@(,,644) lib/beyondcompare/help/commandstextmerge.html
+@(,,644) lib/beyondcompare/help/commandstextpatch.html
+@(,,644) lib/beyondcompare/help/commandsver.html
+@(,,644) lib/beyondcompare/help/compare.png
+@(,,644) lib/beyondcompare/help/conflict.png
+@(,,644) lib/beyondcompare/help/conflictsectionnext.png
+@(,,644) lib/beyondcompare/help/conflictsectionoffnext.png
+@(,,644) lib/beyondcompare/help/conflictsectionprev.png
+@(,,644) lib/beyondcompare/help/contentconflict.png
+@(,,644) lib/beyondcompare/help/contentcopycentertooutput.png
+@(,,644) lib/beyondcompare/help/contentcopyleft.png
+@(,,644) lib/beyondcompare/help/contentcopylefttooutput.png
+@(,,644) lib/beyondcompare/help/contentcopyright.png
+@(,,644) lib/beyondcompare/help/contentcopyrighttooutput.png
+@(,,644) lib/beyondcompare/help/contentdeleteleft.png
+@(,,644) lib/beyondcompare/help/contentdeleteright.png
+@(,,644) lib/beyondcompare/help/contentdifferent.png
+@(,,644) lib/beyondcompare/help/contentdifferentbinary.png
+@(,,644) lib/beyondcompare/help/contentmergeable.png
+@(,,644) lib/beyondcompare/help/contentmerged.png
+@(,,644) lib/beyondcompare/help/contentsame.png
+@(,,644) lib/beyondcompare/help/contentsamebinary.png
+@(,,644) lib/beyondcompare/help/contentsimilar.png
+@(,,644) lib/beyondcompare/help/copy.png
+@(,,644) lib/beyondcompare/help/copyfileleft.png
+@(,,644) lib/beyondcompare/help/copyfileright.png
+@(,,644) lib/beyondcompare/help/copyleft.png
+@(,,644) lib/beyondcompare/help/copyleftorright.png
+@(,,644) lib/beyondcompare/help/copyright.png
+@(,,644) lib/beyondcompare/help/copyto.png
+@(,,644) lib/beyondcompare/help/copytooutput.png
+@(,,644) lib/beyondcompare/help/default.css
+@(,,644) lib/beyondcompare/help/delete.png
+@(,,644) lib/beyondcompare/help/difffilenext.png
+@(,,644) lib/beyondcompare/help/difffileprev.png
+@(,,644) lib/beyondcompare/help/dir_filtering_the_view.html
+@(,,644) lib/beyondcompare/help/dir_how_to_compare.html
+@(,,644) lib/beyondcompare/help/dir_merge_understanding_the_display.html
+@(,,644) lib/beyondcompare/help/dir_reconciling_differences.html
+@(,,644) lib/beyondcompare/help/dir_sync_how_to_sync.html
+@(,,644) lib/beyondcompare/help/dir_sync_understanding_the_display.html
+@(,,644) lib/beyondcompare/help/dir_understanding_the_display.html
+@(,,644) lib/beyondcompare/help/dircomparefilesonly.png
+@(,,644) lib/beyondcompare/help/dircomparesession.png
+@(,,644) lib/beyondcompare/help/dircomparestructure.png
+@(,,644) lib/beyondcompare/help/dirdisplayarchive.png
+@(,,644) lib/beyondcompare/help/dirdisplaydir.png
+@(,,644) lib/beyondcompare/help/dirdisplayex.png
+@(,,644) lib/beyondcompare/help/dirdisplayfile.png
+@(,,644) lib/beyondcompare/help/dirfavconflict.png
+@(,,644) lib/beyondcompare/help/dirfavdiffnoorphan.png
+@(,,644) lib/beyondcompare/help/dirfavleft.png
+@(,,644) lib/beyondcompare/help/dirfavleftnewer.png
+@(,,644) lib/beyondcompare/help/dirfavleftnewerorphan.png
+@(,,644) lib/beyondcompare/help/dirfavleftorphan.png
+@(,,644) lib/beyondcompare/help/dirfavmergeable.png
+@(,,644) lib/beyondcompare/help/dirfavnoorphan.png
+@(,,644) lib/beyondcompare/help/dirfavorphan.png
+@(,,644) lib/beyondcompare/help/dirfavright.png
+@(,,644) lib/beyondcompare/help/dirfavrightnewer.png
+@(,,644) lib/beyondcompare/help/dirfavrightnewerorphan.png
+@(,,644) lib/beyondcompare/help/dirfavrightorphan.png
+@(,,644) lib/beyondcompare/help/dirflatten.png
+@(,,644) lib/beyondcompare/help/dirmerge.png
+@(,,644) lib/beyondcompare/help/dirmergesession.png
+@(,,644) lib/beyondcompare/help/dirshowall.png
+@(,,644) lib/beyondcompare/help/dirsyncsession.png
+@(,,644) lib/beyondcompare/help/display_filters.html
+@(,,644) lib/beyondcompare/help/displayfont.png
+@(,,644) lib/beyondcompare/help/displayfontdecrease.png
+@(,,644) lib/beyondcompare/help/displayfontincrease.png
+@(,,644) lib/beyondcompare/help/displayfontreset.png
+@(,,644) lib/beyondcompare/help/dlgbrowsemachine.html
+@(,,644) lib/beyondcompare/help/dlgdatacolhandling.html
+@(,,644) lib/beyondcompare/help/dlgdiralignwithitem.html
+@(,,644) lib/beyondcompare/help/dlgdirfind.html
+@(,,644) lib/beyondcompare/help/dlgdirotherfilteritem.html
+@(,,644) lib/beyondcompare/help/dlgexport.html
+@(,,644) lib/beyondcompare/help/dlgfileformatmanager.html
+@(,,644) lib/beyondcompare/help/dlgimport.html
+@(,,644) lib/beyondcompare/help/dlgnag.html
+@(,,644) lib/beyondcompare/help/dlgopenwithitem.html
+@(,,644) lib/beyondcompare/help/dlgprofilebrowse.html
+@(,,644) lib/beyondcompare/help/dlgprofilemanager.html
+@(,,644) lib/beyondcompare/help/dlgprogoptions.html
+@(,,644) lib/beyondcompare/help/dlgregister.html
+@(,,644) lib/beyondcompare/help/dlgreport.html
+@(,,644) lib/beyondcompare/help/dlgrestore.html
+@(,,644) lib/beyondcompare/help/dlgsnapshot.html
+@(,,644) lib/beyondcompare/help/dlgsourcecontrolmanager.html
+@(,,644) lib/beyondcompare/help/dlgsupport.html
+@(,,644) lib/beyondcompare/help/dlgtextfindinfiles.html
+@(,,644) lib/beyondcompare/help/dlgtextgrammaritem.html
+@(,,644) lib/beyondcompare/help/dlgtextreplacementitem.html
+@(,,644) lib/beyondcompare/help/dlgworkspacemanager.html
+@(,,644) lib/beyondcompare/help/down.png
+@(,,644) lib/beyondcompare/help/dropdown.png
+@(,,644) lib/beyondcompare/help/editing_text.html
+@(,,644) lib/beyondcompare/help/expandall.png
+@(,,644) lib/beyondcompare/help/favall.png
+@(,,644) lib/beyondcompare/help/favdiff.png
+@(,,644) lib/beyondcompare/help/favnone.png
+@(,,644) lib/beyondcompare/help/favorleft.png
+@(,,644) lib/beyondcompare/help/favorright.png
+@(,,644) lib/beyondcompare/help/favsame.png
+@(,,644) lib/beyondcompare/help/file_formats.html
+@(,,644) lib/beyondcompare/help/file_masks.html
+@(,,644) lib/beyondcompare/help/filecopyselright.png
+@(,,644) lib/beyondcompare/help/filefavconflict.png
+@(,,644) lib/beyondcompare/help/filefavleft.png
+@(,,644) lib/beyondcompare/help/filefavmergeable.png
+@(,,644) lib/beyondcompare/help/filefavright.png
+@(,,644) lib/beyondcompare/help/fileformatmanager.png
+@(,,644) lib/beyondcompare/help/filetakesectioncenter.png
+@(,,644) lib/beyondcompare/help/filetakesectionleft.png
+@(,,644) lib/beyondcompare/help/filetakesectionright.png
+@(,,644) lib/beyondcompare/help/filteredlinecount.png
+@(,,644) lib/beyondcompare/help/filters.png
+@(,,644) lib/beyondcompare/help/find.png
+@(,,644) lib/beyondcompare/help/findinfiles.png
+@(,,644) lib/beyondcompare/help/findnext.png
+@(,,644) lib/beyondcompare/help/findprev.png
+@(,,644) lib/beyondcompare/help/formatdata.html
+@(,,644) lib/beyondcompare/help/formatdataconversion.html
+@(,,644) lib/beyondcompare/help/formatdatageneral.html
+@(,,644) lib/beyondcompare/help/formatdataregional.html
+@(,,644) lib/beyondcompare/help/formatdatatype.html
+@(,,644) lib/beyondcompare/help/formatexternalgeneral.html
+@(,,644) lib/beyondcompare/help/formathex.html
+@(,,644) lib/beyondcompare/help/formathexconversion.html
+@(,,644) lib/beyondcompare/help/formathexgeneral.html
+@(,,644) lib/beyondcompare/help/formatpix.html
+@(,,644) lib/beyondcompare/help/formatpixconversion.html
+@(,,644) lib/beyondcompare/help/formatpixgeneral.html
+@(,,644) lib/beyondcompare/help/formattext.html
+@(,,644) lib/beyondcompare/help/formattextconversion.html
+@(,,644) lib/beyondcompare/help/formattextgeneral.html
+@(,,644) lib/beyondcompare/help/formattextgrammar.html
+@(,,644) lib/beyondcompare/help/formattextmisc.html
+@(,,644) lib/beyondcompare/help/fulledit.png
+@(,,644) lib/beyondcompare/help/fullrefresh.png
+@(,,644) lib/beyondcompare/help/fullscreen.png
+@(,,644) lib/beyondcompare/help/glossary.html
+@(,,644) lib/beyondcompare/help/goto.png
+@(,,644) lib/beyondcompare/help/grammars.html
+@(,,644) lib/beyondcompare/help/headerkey.png
+@(,,644) lib/beyondcompare/help/helpcontents.png
+@(,,644) lib/beyondcompare/help/helpman_navigation.js
+@(,,644) lib/beyondcompare/help/helpman_settings.js
+@(,,644) lib/beyondcompare/help/helpman_topicinit.js
+@(,,644) lib/beyondcompare/help/highlight.js
+@(,,644) lib/beyondcompare/help/hmcontent.html
+@(,,644) lib/beyondcompare/help/hmcontextids.js
+@(,,644) lib/beyondcompare/help/hmftsearch.html
+@(,,644) lib/beyondcompare/help/hmkwindex.html
+@(,,644) lib/beyondcompare/help/ignored.png
+@(,,644) lib/beyondcompare/help/index.html
+@(,,644) lib/beyondcompare/help/info.png
+@(,,644) lib/beyondcompare/help/insigignored.png
+@(,,644) lib/beyondcompare/help/jquery.js
+@(,,644) lib/beyondcompare/help/license_agreement.html
+@(,,644) lib/beyondcompare/help/license_agreement_7-zip.html
+@(,,644) lib/beyondcompare/help/license_agreement_fpc.html
+@(,,644) lib/beyondcompare/help/license_agreement_gpl3.html
+@(,,644) lib/beyondcompare/help/license_agreement_htmlviewer.html
+@(,,644) lib/beyondcompare/help/license_agreement_httpget.html
+@(,,644) lib/beyondcompare/help/license_agreement_innosetup.html
+@(,,644) lib/beyondcompare/help/license_agreement_intlck64.html
+@(,,644) lib/beyondcompare/help/license_agreement_lgpl.html
+@(,,644) lib/beyondcompare/help/license_agreement_mpl.html
+@(,,644) lib/beyondcompare/help/license_agreement_pcre.html
+@(,,644) lib/beyondcompare/help/license_agreement_regexpr.html
+@(,,644) lib/beyondcompare/help/license_agreement_textdiff.html
+@(,,644) lib/beyondcompare/help/license_agreement_wavpack.html
+@(,,644) lib/beyondcompare/help/license_agreement_wix.html
+@(,,644) lib/beyondcompare/help/license_agreement_zlib.html
+@(,,644) lib/beyondcompare/help/linux.png
+@(,,644) lib/beyondcompare/help/mac.png
+@(,,644) lib/beyondcompare/help/maclineending.png
+@(,,644) lib/beyondcompare/help/managing_sessions.html
+@(,,644) lib/beyondcompare/help/mergebase.png
+@(,,644) lib/beyondcompare/help/mergenobase.png
+@(,,644) lib/beyondcompare/help/mirrorleft.png
+@(,,644) lib/beyondcompare/help/mirrorright.png
+@(,,644) lib/beyondcompare/help/moveboth.png
+@(,,644) lib/beyondcompare/help/moveleftorright.png
+@(,,644) lib/beyondcompare/help/moveright.png
+@(,,644) lib/beyondcompare/help/moveto.png
+@(,,644) lib/beyondcompare/help/moving_bc_to_another_computer.html
+@(,,644) lib/beyondcompare/help/mp3play.png
+@(,,644) lib/beyondcompare/help/mp3play2.png
+@(,,644) lib/beyondcompare/help/newfolder.png
+@(,,644) lib/beyondcompare/help/next-dis.png
+@(,,644) lib/beyondcompare/help/next-hot.png
+@(,,644) lib/beyondcompare/help/next.png
+@(,,644) lib/beyondcompare/help/note.png
+@(,,644) lib/beyondcompare/help/opattrib.html
+@(,,644) lib/beyondcompare/help/opcompare.html
+@(,,644) lib/beyondcompare/help/opcopy.html
+@(,,644) lib/beyondcompare/help/opcopyto.html
+@(,,644) lib/beyondcompare/help/opcopytooutput.html
+@(,,644) lib/beyondcompare/help/opdelete.html
+@(,,644) lib/beyondcompare/help/opexchange.html
+@(,,644) lib/beyondcompare/help/opexclude.html
+@(,,644) lib/beyondcompare/help/opmerge.html
+@(,,644) lib/beyondcompare/help/opmove.html
+@(,,644) lib/beyondcompare/help/opmoveto.html
+@(,,644) lib/beyondcompare/help/opnewfolder.html
+@(,,644) lib/beyondcompare/help/oprename.html
+@(,,644) lib/beyondcompare/help/opsync.html
+@(,,644) lib/beyondcompare/help/options.png
+@(,,644) lib/beyondcompare/help/optionsarchive.html
+@(,,644) lib/beyondcompare/help/optionsbackup.html
+@(,,644) lib/beyondcompare/help/optionscolor.html
+@(,,644) lib/beyondcompare/help/optionscommand.html
+@(,,644) lib/beyondcompare/help/optionsdircolor.html
+@(,,644) lib/beyondcompare/help/optionsfilecolor.html
+@(,,644) lib/beyondcompare/help/optionsnextdiff.html
+@(,,644) lib/beyondcompare/help/optionsop.html
+@(,,644) lib/beyondcompare/help/optionsopenwith.html
+@(,,644) lib/beyondcompare/help/optionspixcolor.html
+@(,,644) lib/beyondcompare/help/optionsstartup.html
+@(,,644) lib/beyondcompare/help/optionstab.html
+@(,,644) lib/beyondcompare/help/optionstext.html
+@(,,644) lib/beyondcompare/help/optionstweak.html
+@(,,644) lib/beyondcompare/help/optouch.html
+@(,,644) lib/beyondcompare/help/outputwindow.png
+@(,,644) lib/beyondcompare/help/overunder.png
+@(,,644) lib/beyondcompare/help/pin.png
+@(,,644) lib/beyondcompare/help/pix_how_to_compare.html
+@(,,644) lib/beyondcompare/help/pixautoscale.png
+@(,,644) lib/beyondcompare/help/pixblendtoggle.png
+@(,,644) lib/beyondcompare/help/pixcomparetags.png
+@(,,644) lib/beyondcompare/help/pixdiffblend.png
+@(,,644) lib/beyondcompare/help/pixdiffrange.png
+@(,,644) lib/beyondcompare/help/pixdifftolerance.png
+@(,,644) lib/beyondcompare/help/pixfliphorz.png
+@(,,644) lib/beyondcompare/help/pixflipvert.png
+@(,,644) lib/beyondcompare/help/pixrotateleft.png
+@(,,644) lib/beyondcompare/help/pixrotateright.png
+@(,,644) lib/beyondcompare/help/pixzoomactual.png
+@(,,644) lib/beyondcompare/help/pixzoomfit.png
+@(,,644) lib/beyondcompare/help/prefsinterface.png
+@(,,644) lib/beyondcompare/help/prev-dis.png
+@(,,644) lib/beyondcompare/help/prev-hot.png
+@(,,644) lib/beyondcompare/help/prev.png
+@(,,644) lib/beyondcompare/help/pro.png
+@(,,644) lib/beyondcompare/help/profileamazons3.html
+@(,,644) lib/beyondcompare/help/profiledropbox.html
+@(,,644) lib/beyondcompare/help/profileftp.html
+@(,,644) lib/beyondcompare/help/profileftpconnection.html
+@(,,644) lib/beyondcompare/help/profileftpglobal.html
+@(,,644) lib/beyondcompare/help/profileftplisting.html
+@(,,644) lib/beyondcompare/help/profileftplogin.html
+@(,,644) lib/beyondcompare/help/profileftpproxy.html
+@(,,644) lib/beyondcompare/help/profileftpserver.html
+@(,,644) lib/beyondcompare/help/profileftptransfer.html
+@(,,644) lib/beyondcompare/help/profileonedrive.html
+@(,,644) lib/beyondcompare/help/profilesvn.html
+@(,,644) lib/beyondcompare/help/profilewebdav.html
+@(,,644) lib/beyondcompare/help/recompare.png
+@(,,644) lib/beyondcompare/help/red-bg.jpg
+@(,,644) lib/beyondcompare/help/redo.png
+@(,,644) lib/beyondcompare/help/refresh.png
+@(,,644) lib/beyondcompare/help/regular_expression_reference.html
+@(,,644) lib/beyondcompare/help/remote_services.html
+@(,,644) lib/beyondcompare/help/rename.png
+@(,,644) lib/beyondcompare/help/replace.png
+@(,,644) lib/beyondcompare/help/report.png
+@(,,644) lib/beyondcompare/help/rules.png
+@(,,644) lib/beyondcompare/help/rules_vs_file_formats.html
+@(,,644) lib/beyondcompare/help/rulesvsformats.png
+@(,,644) lib/beyondcompare/help/sample_regular_expressions.html
+@(,,644) lib/beyondcompare/help/sample_scripts.html
+@(,,644) lib/beyondcompare/help/save.png
+@(,,644) lib/beyondcompare/help/savesnapshot.png
+@(,,644) lib/beyondcompare/help/scheduling_a_script.html
+@(,,644) lib/beyondcompare/help/scripting_reference.html
+@(,,644) lib/beyondcompare/help/scripts.html
+@(,,644) lib/beyondcompare/help/searchedit.png
+@(,,644) lib/beyondcompare/help/searching_for_text.html
+@(,,644) lib/beyondcompare/help/selectall.png
+@(,,644) lib/beyondcompare/help/selectallfiles.png
+@(,,644) lib/beyondcompare/help/session_settings.html
+@(,,644) lib/beyondcompare/help/sessiondata.html
+@(,,644) lib/beyondcompare/help/sessiondataalignment.html
+@(,,644) lib/beyondcompare/help/sessiondatacolumns.html
+@(,,644) lib/beyondcompare/help/sessiondataformats.html
+@(,,644) lib/beyondcompare/help/sessiondataspecs.html
+@(,,644) lib/beyondcompare/help/sessiondir.html
+@(,,644) lib/beyondcompare/help/sessiondircomparison.html
+@(,,644) lib/beyondcompare/help/sessiondirhandling.html
+@(,,644) lib/beyondcompare/help/sessiondirmerge.html
+@(,,644) lib/beyondcompare/help/sessiondirmergecomparison.html
+@(,,644) lib/beyondcompare/help/sessiondirmergehandling.html
+@(,,644) lib/beyondcompare/help/sessiondirmergemisc.html
+@(,,644) lib/beyondcompare/help/sessiondirmergenamefilter.html
+@(,,644) lib/beyondcompare/help/sessiondirmergeotherfilters.html
+@(,,644) lib/beyondcompare/help/sessiondirmergespecs.html
+@(,,644) lib/beyondcompare/help/sessiondirmisc.html
+@(,,644) lib/beyondcompare/help/sessiondirnamefilter.html
+@(,,644) lib/beyondcompare/help/sessiondirotherfilters.html
+@(,,644) lib/beyondcompare/help/sessiondirspecs.html
+@(,,644) lib/beyondcompare/help/sessiondirsync.html
+@(,,644) lib/beyondcompare/help/sessiondirsynccomparison.html
+@(,,644) lib/beyondcompare/help/sessiondirsynchandling.html
+@(,,644) lib/beyondcompare/help/sessiondirsyncmisc.html
+@(,,644) lib/beyondcompare/help/sessiondirsyncnamefilter.html
+@(,,644) lib/beyondcompare/help/sessiondirsyncops.html
+@(,,644) lib/beyondcompare/help/sessiondirsyncotherfilters.html
+@(,,644) lib/beyondcompare/help/sessiondirsyncspecs.html
+@(,,644) lib/beyondcompare/help/sessionedit.png
+@(,,644) lib/beyondcompare/help/sessionhex.html
+@(,,644) lib/beyondcompare/help/sessionhexcomparison.html
+@(,,644) lib/beyondcompare/help/sessionhexformats.html
+@(,,644) lib/beyondcompare/help/sessionhexspecs.html
+@(,,644) lib/beyondcompare/help/sessionlocked.png
+@(,,644) lib/beyondcompare/help/sessionmp3.html
+@(,,644) lib/beyondcompare/help/sessionmp3importance.html
+@(,,644) lib/beyondcompare/help/sessionmp3specs.html
+@(,,644) lib/beyondcompare/help/sessionpix.html
+@(,,644) lib/beyondcompare/help/sessionpixformats.html
+@(,,644) lib/beyondcompare/help/sessionpixreplacements.html
+@(,,644) lib/beyondcompare/help/sessionpixspecs.html
+@(,,644) lib/beyondcompare/help/sessionreg.html
+@(,,644) lib/beyondcompare/help/sessionregspecs.html
+@(,,644) lib/beyondcompare/help/sessionsave.png
+@(,,644) lib/beyondcompare/help/sessionsaveas.png
+@(,,644) lib/beyondcompare/help/sessiontext.html
+@(,,644) lib/beyondcompare/help/sessiontextalignment.html
+@(,,644) lib/beyondcompare/help/sessiontextformats.html
+@(,,644) lib/beyondcompare/help/sessiontextimportance.html
+@(,,644) lib/beyondcompare/help/sessiontextmerge.html
+@(,,644) lib/beyondcompare/help/sessiontextmergealignment.html
+@(,,644) lib/beyondcompare/help/sessiontextmergeformats.html
+@(,,644) lib/beyondcompare/help/sessiontextmergeimportance.html
+@(,,644) lib/beyondcompare/help/sessiontextmergespecs.html
+@(,,644) lib/beyondcompare/help/sessiontextreplacements.html
+@(,,644) lib/beyondcompare/help/sessiontextspecs.html
+@(,,644) lib/beyondcompare/help/sessionver.html
+@(,,644) lib/beyondcompare/help/sessionverimportance.html
+@(,,644) lib/beyondcompare/help/sessionverspecs.html
+@(,,644) lib/beyondcompare/help/settings.js
+@(,,644) lib/beyondcompare/help/settings_reference.html
+@(,,644) lib/beyondcompare/help/sharedsessions.png
+@(,,644) lib/beyondcompare/help/sharing_sessions.html
+@(,,644) lib/beyondcompare/help/showaligndetails.png
+@(,,644) lib/beyondcompare/help/showcenter.png
+@(,,644) lib/beyondcompare/help/showcontext.png
+@(,,644) lib/beyondcompare/help/showhexdetails.png
+@(,,644) lib/beyondcompare/help/showitemnum.png
+@(,,644) lib/beyondcompare/help/showruler.png
+@(,,644) lib/beyondcompare/help/showsyntaxhighlighting.png
+@(,,644) lib/beyondcompare/help/showtextdetails.png
+@(,,644) lib/beyondcompare/help/showthumbnail.png
+@(,,644) lib/beyondcompare/help/showws.png
+@(,,644) lib/beyondcompare/help/sidebyside.png
+@(,,644) lib/beyondcompare/help/snapshots.html
+@(,,644) lib/beyondcompare/help/space.png
+@(,,644) lib/beyondcompare/help/specs.html
+@(,,644) lib/beyondcompare/help/specsback.png
+@(,,644) lib/beyondcompare/help/specsforward.png
+@(,,644) lib/beyondcompare/help/standard_vs_pro.html
+@(,,644) lib/beyondcompare/help/support_ordering_and_license.html
+@(,,644) lib/beyondcompare/help/suppressfilters.png
+@(,,644) lib/beyondcompare/help/swap.png
+@(,,644) lib/beyondcompare/help/synccopydeleteleft.png
+@(,,644) lib/beyondcompare/help/synccopydeleteright.png
+@(,,644) lib/beyondcompare/help/synccopyleft.png
+@(,,644) lib/beyondcompare/help/synccopyright.png
+@(,,644) lib/beyondcompare/help/syncdelete.png
+@(,,644) lib/beyondcompare/help/syncprompt.png
+@(,,644) lib/beyondcompare/help/syncrun.png
+@(,,644) lib/beyondcompare/help/tab.png
+@(,,644) lib/beyondcompare/help/texteditsession.png
+@(,,644) lib/beyondcompare/help/textmergesession.png
+@(,,644) lib/beyondcompare/help/textpatchsession.png
+@(,,644) lib/beyondcompare/help/todir.png
+@(,,644) lib/beyondcompare/help/todirflatten.png
+@(,,644) lib/beyondcompare/help/todirkeepbase.png
+@(,,644) lib/beyondcompare/help/todirkeeprelative.png
+@(,,644) lib/beyondcompare/help/toolbardropdown.png
+@(,,644) lib/beyondcompare/help/toolbarfavorites.png
+@(,,644) lib/beyondcompare/help/toolbarfilefilters.png
+@(,,644) lib/beyondcompare/help/toolbartoggles.png
+@(,,644) lib/beyondcompare/help/top-hot.png
+@(,,644) lib/beyondcompare/help/top.png
+@(,,644) lib/beyondcompare/help/touch.png
+@(,,644) lib/beyondcompare/help/undo.png
+@(,,644) lib/beyondcompare/help/unixlineending.png
+@(,,644) lib/beyondcompare/help/up.png
+@(,,644) lib/beyondcompare/help/updateboth.png
+@(,,644) lib/beyondcompare/help/updateleft.png
+@(,,644) lib/beyondcompare/help/updateright.png
+@(,,644) lib/beyondcompare/help/uponelevel.png
+@(,,644) lib/beyondcompare/help/using_bc.html
+@(,,644) lib/beyondcompare/help/using_text_merge.html
+@(,,644) lib/beyondcompare/help/viewdata.html
+@(,,644) lib/beyondcompare/help/viewdata.jpg
+@(,,644) lib/beyondcompare/help/viewdata_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewdir.html
+@(,,644) lib/beyondcompare/help/viewdir.jpg
+@(,,644) lib/beyondcompare/help/viewdir_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewdirmerge.html
+@(,,644) lib/beyondcompare/help/viewdirmerge.jpg
+@(,,644) lib/beyondcompare/help/viewdirmerge_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewdirsync.html
+@(,,644) lib/beyondcompare/help/viewdirsync.jpg
+@(,,644) lib/beyondcompare/help/viewdirsync_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewhex.html
+@(,,644) lib/beyondcompare/help/viewhex.jpg
+@(,,644) lib/beyondcompare/help/viewhex_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewhome.html
+@(,,644) lib/beyondcompare/help/viewhome.jpg
+@(,,644) lib/beyondcompare/help/viewhome_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewmp3.jpg
+@(,,644) lib/beyondcompare/help/viewmp3_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewother.html
+@(,,644) lib/beyondcompare/help/viewpix.html
+@(,,644) lib/beyondcompare/help/viewpix.jpg
+@(,,644) lib/beyondcompare/help/viewpix_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewreg.html
+@(,,644) lib/beyondcompare/help/viewreg.jpg
+@(,,644) lib/beyondcompare/help/viewreg_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewtext.html
+@(,,644) lib/beyondcompare/help/viewtext.jpg
+@(,,644) lib/beyondcompare/help/viewtext_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewtextedit.html
+@(,,644) lib/beyondcompare/help/viewtextedit.jpg
+@(,,644) lib/beyondcompare/help/viewtextedit_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewtextmerge.html
+@(,,644) lib/beyondcompare/help/viewtextmerge.jpg
+@(,,644) lib/beyondcompare/help/viewtextmerge_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewtextpatch.html
+@(,,644) lib/beyondcompare/help/viewtextpatch.jpg
+@(,,644) lib/beyondcompare/help/viewtextpatch_zoom33.jpg
+@(,,644) lib/beyondcompare/help/viewver.jpg
+@(,,644) lib/beyondcompare/help/viewver_zoom33.jpg
*** 16 LINES SKIPPED ***


More information about the dev-commits-ports-main mailing list