diff --git a/deskutils/freeplane/Makefile b/deskutils/freeplane/Makefile index f740c84e8b33..1e272bbddd97 100644 --- a/deskutils/freeplane/Makefile +++ b/deskutils/freeplane/Makefile @@ -1,35 +1,38 @@ PORTNAME= freeplane -DISTVERSION= 1.11.2 +DISTVERSION= 1.11.4 CATEGORIES= deskutils editors java MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable DISTNAME= ${PORTNAME}_bin-${PORTVERSION} MAINTAINER= nivit@FreeBSD.org COMMENT= Free mind mapping and knowledge management software WWW= https://www.freeplane.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/license.txt RUN_DEPENDS= bash:shells/bash -USES= cpe shebangfix zip +USES= cpe desktop-file-utils shebangfix zip USE_JAVA= yes SHEBANG_FILES= ${WRKSRC}/freeplane.sh NO_ARCH= yes NO_BUILD= yes +SUB_FILES= freeplane freeplane.desktop +SUB_LIST= DATADIR=${DATADIR} \ + PREFIX=${PREFIX} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PLIST_SUB= PORTVERSION="${PORTVERSION}" + do-install: cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} \ - "! ( -name license\.txt -or -name *\.bat -or -name *\.exe )" -# Install freeplane.sh with the right permission - ${SED} -e 's|%%DATADIR%%|${DATADIR}|' < ${FILESDIR}/freeplane.in > \ - ${WRKSRC}/freeplane - ${INSTALL_SCRIPT} ${WRKSRC}/freeplane ${STAGEDIR}${PREFIX}/bin/ + "! ( -name license\.txt -or -name *\.bat -or -name *\.exe -or -name *\.orig -or -name *\.bak -or -name freeplane.sh )" + ${INSTALL_DATA} ${WRKDIR}/freeplane.desktop ${STAGEDIR}${DESKTOPDIR}/ + ${INSTALL_SCRIPT} ${WRKSRC}/freeplane.sh ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/freeplane ${STAGEDIR}${PREFIX}/bin/ .include diff --git a/deskutils/freeplane/distinfo b/deskutils/freeplane/distinfo index 55f233217422..ab3dc79378bb 100644 --- a/deskutils/freeplane/distinfo +++ b/deskutils/freeplane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1683618234 -SHA256 (freeplane_bin-1.11.2.zip) = ff2f6482f66873fb66c4e82494fa67a3ec7a913ff8eeb0adb690b0ead5a173ef -SIZE (freeplane_bin-1.11.2.zip) = 52987091 +TIMESTAMP = 1685353064 +SHA256 (freeplane_bin-1.11.4.zip) = 90f290ae88b92b554885677c61ff69b91ee1a51b07d7ddf7ff6e90047975d629 +SIZE (freeplane_bin-1.11.4.zip) = 53088167 diff --git a/deskutils/freeplane/files/freeplane.desktop.in b/deskutils/freeplane/files/freeplane.desktop.in new file mode 100644 index 000000000000..2bb5e5b2cf8e --- /dev/null +++ b/deskutils/freeplane/files/freeplane.desktop.in @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Name=Freeplane +Categories=Office; +Comment=A free tool to structure and organise your information with mind mapping +Exec=%%PREFIX%%/bin/freeplane %F +GenericName=Freeplane +Icon=%%DATADIR%%/freeplane.svg +Keywords=Mindmaps; Knowledge management; Organize information; Brainstorming; ...; +MimeType=application/x-freeplane; +StartupNotify=true +StartupWMClass=org-knopflerfish-framework-BundleThread +Terminal=false +Type=Application diff --git a/deskutils/freeplane/files/freeplane.in b/deskutils/freeplane/files/freeplane.in index 979424a424e4..c61217966e84 100644 --- a/deskutils/freeplane/files/freeplane.in +++ b/deskutils/freeplane/files/freeplane.in @@ -1,3 +1,3 @@ #!/bin/sh -exec /bin/sh %%DATADIR%%/freeplane.sh +exec %%DATADIR%%/freeplane.sh "$@" diff --git a/deskutils/freeplane/files/patch-freeplane.sh b/deskutils/freeplane/files/patch-freeplane.sh index 946d90da0874..49a21b5c745d 100644 --- a/deskutils/freeplane/files/patch-freeplane.sh +++ b/deskutils/freeplane/files/patch-freeplane.sh @@ -1,28 +1,21 @@ ---- freeplane.sh.orig 2022-07-04 06:07:42 UTC +--- freeplane.sh.orig 2023-05-28 13:36:42 UTC +++ freeplane.sh -@@ -57,7 +57,7 @@ findjava() { - fi - fi +@@ -1,5 +1,9 @@ + #!/bin/bash -- JAVA_VERSION=$(${JAVACMD} -version |& grep -E "[[:alnum:]]+ version" | awk '{print $3}' | tr -d '"') -+ JAVA_VERSION=$(${JAVACMD} -version | grep -E "[[:alnum:]]+ version" | awk '{print $3}' | tr -d '"') - JAVA_MAJOR_VERSION=$(echo $JAVA_VERSION | sed -e 's/^1\.//' | awk -F. '{print $1}') - if [ $JAVA_MAJOR_VERSION -lt 8 ] || [ $JAVA_MAJOR_VERSION -gt 17 ] || [ $JAVA_MAJOR_VERSION -eq 10 ]; then - if [ -z "${FREEPLANE_USE_UNSUPPORTED_JAVA_VERSION}" ]; then -@@ -142,15 +142,7 @@ fi - - output_debug_info - --if [ -x $(which readlink) ] && [ "`echo $OSTYPE | cut -b1-6`" != "darwin" ]; then -- # if we have 'readlink' we can use it to get an absolute path -- # -m should be faster and link does always resolve, else this script -- # wouldn't be called, would it? ++if [ -z "$OSTYPE" ]; then ++ OSTYPE="$(uname -o)" ++fi ++ + # we only want to test the script, not Freeplane itself + if ( echo "${DEBUG}" | grep -qe "script" ); then + set -x +@@ -146,7 +150,7 @@ if [ -x $(which readlink) ] && [ "`echo $OSTYPE | cut + # if we have 'readlink' we can use it to get an absolute path + # -m should be faster and link does always resolve, else this script + # wouldn't be called, would it? - freefile=$(readlink -mn "$0") -- _debug "Link '$0' resolved to '${freefile}'." --else -- freefile="$0" --fi -+freefile="$0" - - if [ "`echo $OSTYPE | cut -b1-6`" == "darwin" ]; then - xdockname='-Xdock:name=Freeplane' ++ freefile=$(readlink -fn "$0") + _debug "Link '$0' resolved to '${freefile}'." + else + freefile="$0" diff --git a/deskutils/freeplane/pkg-plist b/deskutils/freeplane/pkg-plist index 6369a7a6ce72..22226f38da76 100644 --- a/deskutils/freeplane/pkg-plist +++ b/deskutils/freeplane/pkg-plist @@ -1,439 +1,439 @@ bin/freeplane +share/applications/freeplane.desktop %%DATADIR%%/core/org.freeplane.core/META-INF/MANIFEST.MF %%DATADIR%%/core/org.freeplane.core/lib/common-image-3.9.4.jar %%DATADIR%%/core/org.freeplane.core/lib/common-io-3.9.4.jar %%DATADIR%%/core/org.freeplane.core/lib/common-lang-3.9.4.jar %%DATADIR%%/core/org.freeplane.core/lib/commons-codec-1.15.jar %%DATADIR%%/core/org.freeplane.core/lib/commons-io-2.11.0.jar %%DATADIR%%/core/org.freeplane.core/lib/commons-lang-2.6.jar %%DATADIR%%/core/org.freeplane.core/lib/data-url-2.0.jar %%DATADIR%%/core/org.freeplane.core/lib/flatlaf-3.0.jar %%DATADIR%%/core/org.freeplane.core/lib/freeplane_mac-%%PORTVERSION%%.jar %%DATADIR%%/core/org.freeplane.core/lib/freeplaneapi_viewer.jar %%DATADIR%%/core/org.freeplane.core/lib/freeplaneeditor-%%PORTVERSION%%.jar %%DATADIR%%/core/org.freeplane.core/lib/freeplaneosgi-%%PORTVERSION%%.jar %%DATADIR%%/core/org.freeplane.core/lib/freeplaneviewer.jar %%DATADIR%%/core/org.freeplane.core/lib/idw-gpl-1.6.1.jar %%DATADIR%%/core/org.freeplane.core/lib/imageio-core-3.9.4.jar %%DATADIR%%/core/org.freeplane.core/lib/imageio-jpeg-3.9.4.jar %%DATADIR%%/core/org.freeplane.core/lib/imageio-metadata-3.9.4.jar %%DATADIR%%/core/org.freeplane.core/lib/jgoodies-common-1.8.1.jar %%DATADIR%%/core/org.freeplane.core/lib/jgoodies-forms-1.9.0.jar %%DATADIR%%/core/org.freeplane.core/lib/jortho-%%PORTVERSION%%.jar %%DATADIR%%/core/org.freeplane.core/lib/kitfox-svg-salamander-1.1.1-p1.jar %%DATADIR%%/core/org.freeplane.core/lib/simplyhtml-0.18.12.jar %%DATADIR%%/core/org.freeplane.core/lib/twemoji-12.1.4.jar %%DATADIR%%/doc/Freeplane_LaTeX.mm %%DATADIR%%/doc/Images/Preferences_Joining nodes.png %%DATADIR%%/doc/Images/doc/BackgroundContextMenu.png %%DATADIR%%/doc/Images/doc/BackgroundContextMenu_nl.png %%DATADIR%%/doc/Images/doc/HotKeysTable.png %%DATADIR%%/doc/Images/doc/HotKeysTable_nl.png %%DATADIR%%/doc/Images/doc/MenusPropertiesPanel.png %%DATADIR%%/doc/Images/doc/MenusPropertiesPanel_nl.png %%DATADIR%%/doc/Images/doc/freeplaneApplications.png %%DATADIR%%/doc/Images/doc/goto node with ID.png %%DATADIR%%/doc/Images/doc/key mapping dialog.png %%DATADIR%%/doc/Images/doc/mapView v outlineView.png %%DATADIR%%/doc/Images/doc/right-click menu - open maps.png %%DATADIR%%/doc/Images/doc/tabs in workspace.png %%DATADIR%%/doc/Images/examples.png %%DATADIR%%/doc/Images/eyes.png %%DATADIR%%/doc/Images/icons toolbar - collapsed.png %%DATADIR%%/doc/Images/mouse/mouse_RB.png %%DATADIR%%/doc/Images/other/workspace/Freeplane workspace (annotated).png %%DATADIR%%/doc/Images/other/workspace/Freeplane workspace.png %%DATADIR%%/doc/Images/other/workspace/details arrow_.png %%DATADIR%%/doc/Images/other/workspace/f bar - split.png %%DATADIR%%/doc/Images/other/workspace/f bar.png %%DATADIR%%/doc/Images/other/workspace/filter toolbar - split.png %%DATADIR%%/doc/Images/other/workspace/filter toolbar.png %%DATADIR%%/doc/Images/other/workspace/icons toolbar.png %%DATADIR%%/doc/Images/other/workspace/menubar.png %%DATADIR%%/doc/Images/other/workspace/notes panel.png %%DATADIR%%/doc/Images/other/workspace/properties panel.png %%DATADIR%%/doc/Images/other/workspace/resize arrows.png %%DATADIR%%/doc/Images/other/workspace/right-click menu.png %%DATADIR%%/doc/Images/other/workspace/scroll bars.png %%DATADIR%%/doc/Images/other/workspace/status line.png %%DATADIR%%/doc/Images/other/workspace/submenu flyouts (basic).png %%DATADIR%%/doc/Images/other/workspace/submenu flyouts.png %%DATADIR%%/doc/Images/other/workspace/toolbar - split.png %%DATADIR%%/doc/Images/other/workspace/toolbar.png %%DATADIR%%/doc/Images/other/workspace/view - toolbars.png %%DATADIR%%/doc/Images/other/workspace/view - view settings.png %%DATADIR%%/doc/Images/properties toolbar - collapsed.png %%DATADIR%%/doc/api/allclasses-index.html %%DATADIR%%/doc/api/allpackages-index.html %%DATADIR%%/doc/api/constant-values.html %%DATADIR%%/doc/api/deprecated-list.html %%DATADIR%%/doc/api/element-list %%DATADIR%%/doc/api/help-doc.html %%DATADIR%%/doc/api/index-all.html %%DATADIR%%/doc/api/index.html %%DATADIR%%/doc/api/jquery-ui.overrides.css %%DATADIR%%/doc/api/member-search-index.js %%DATADIR%%/doc/api/module-search-index.js %%DATADIR%%/doc/api/org/freeplane/api/AttributeCondition.html %%DATADIR%%/doc/api/org/freeplane/api/AttributeValueSerializer.html %%DATADIR%%/doc/api/org/freeplane/api/Attributes.html %%DATADIR%%/doc/api/org/freeplane/api/AttributesRO.html %%DATADIR%%/doc/api/org/freeplane/api/ChildNodesAlignment.html %%DATADIR%%/doc/api/org/freeplane/api/ChildNodesLayout.html %%DATADIR%%/doc/api/org/freeplane/api/ChildrenSides.html %%DATADIR%%/doc/api/org/freeplane/api/Cloud.html %%DATADIR%%/doc/api/org/freeplane/api/ConditionalStyle.html %%DATADIR%%/doc/api/org/freeplane/api/ConditionalStyleNotFoundException.html %%DATADIR%%/doc/api/org/freeplane/api/ConditionalStyleRO.html %%DATADIR%%/doc/api/org/freeplane/api/ConditionalStyles.html %%DATADIR%%/doc/api/org/freeplane/api/ConditionalStylesRO.html %%DATADIR%%/doc/api/org/freeplane/api/Connector.html %%DATADIR%%/doc/api/org/freeplane/api/ConnectorRO.html %%DATADIR%%/doc/api/org/freeplane/api/Controller.html %%DATADIR%%/doc/api/org/freeplane/api/ControllerRO.html %%DATADIR%%/doc/api/org/freeplane/api/ConversionException.html %%DATADIR%%/doc/api/org/freeplane/api/Convertible.html %%DATADIR%%/doc/api/org/freeplane/api/Dependencies.Element.html %%DATADIR%%/doc/api/org/freeplane/api/Dependencies.html %%DATADIR%%/doc/api/org/freeplane/api/DependencyLookup.html %%DATADIR%%/doc/api/org/freeplane/api/Edge.html %%DATADIR%%/doc/api/org/freeplane/api/EdgeRO.html %%DATADIR%%/doc/api/org/freeplane/api/EdgeStyle.html %%DATADIR%%/doc/api/org/freeplane/api/ExternalObject.html %%DATADIR%%/doc/api/org/freeplane/api/ExternalObjectRO.html %%DATADIR%%/doc/api/org/freeplane/api/Font.html %%DATADIR%%/doc/api/org/freeplane/api/FontRO.html %%DATADIR%%/doc/api/org/freeplane/api/FreeplaneVersion.html %%DATADIR%%/doc/api/org/freeplane/api/HeadlessLoader.html %%DATADIR%%/doc/api/org/freeplane/api/HeadlessMapCreator.html %%DATADIR%%/doc/api/org/freeplane/api/Icons.html %%DATADIR%%/doc/api/org/freeplane/api/IconsRO.html %%DATADIR%%/doc/api/org/freeplane/api/LayoutOrientation.html %%DATADIR%%/doc/api/org/freeplane/api/LengthUnit.html %%DATADIR%%/doc/api/org/freeplane/api/Link.html %%DATADIR%%/doc/api/org/freeplane/api/LinkRO.html %%DATADIR%%/doc/api/org/freeplane/api/Loader.html %%DATADIR%%/doc/api/org/freeplane/api/Map.html %%DATADIR%%/doc/api/org/freeplane/api/MapRO.html %%DATADIR%%/doc/api/org/freeplane/api/MindMap.html %%DATADIR%%/doc/api/org/freeplane/api/MindMapRO.html %%DATADIR%%/doc/api/org/freeplane/api/Node.html %%DATADIR%%/doc/api/org/freeplane/api/NodeChangeListener.html %%DATADIR%%/doc/api/org/freeplane/api/NodeChanged.ChangedElement.html %%DATADIR%%/doc/api/org/freeplane/api/NodeChanged.html %%DATADIR%%/doc/api/org/freeplane/api/NodeCondition.html %%DATADIR%%/doc/api/org/freeplane/api/NodeGeometry.html %%DATADIR%%/doc/api/org/freeplane/api/NodeGeometryRO.html %%DATADIR%%/doc/api/org/freeplane/api/NodeNotFoundException.html %%DATADIR%%/doc/api/org/freeplane/api/NodeRO.html %%DATADIR%%/doc/api/org/freeplane/api/NodeShape.html %%DATADIR%%/doc/api/org/freeplane/api/NodeStyle.html %%DATADIR%%/doc/api/org/freeplane/api/NodeStyleRO.html %%DATADIR%%/doc/api/org/freeplane/api/NodeToComparableMapper.html %%DATADIR%%/doc/api/org/freeplane/api/PhysicalUnit.html %%DATADIR%%/doc/api/org/freeplane/api/Properties.html %%DATADIR%%/doc/api/org/freeplane/api/Quantity.html %%DATADIR%%/doc/api/org/freeplane/api/Reminder.html %%DATADIR%%/doc/api/org/freeplane/api/ReminderRO.html %%DATADIR%%/doc/api/org/freeplane/api/Script.html %%DATADIR%%/doc/api/org/freeplane/api/Side.html %%DATADIR%%/doc/api/org/freeplane/api/package-summary.html %%DATADIR%%/doc/api/org/freeplane/api/package-tree.html %%DATADIR%%/doc/api/org/freeplane/core/ui/components/UITools.Defaults.html %%DATADIR%%/doc/api/org/freeplane/core/ui/components/UITools.InsertEolAction.html %%DATADIR%%/doc/api/org/freeplane/core/ui/components/UITools.html %%DATADIR%%/doc/api/org/freeplane/core/ui/components/package-summary.html %%DATADIR%%/doc/api/org/freeplane/core/ui/components/package-tree.html %%DATADIR%%/doc/api/org/freeplane/core/util/FreeplaneVersion.html %%DATADIR%%/doc/api/org/freeplane/core/util/HtmlUtils.IndexPair.html %%DATADIR%%/doc/api/org/freeplane/core/util/HtmlUtils.html %%DATADIR%%/doc/api/org/freeplane/core/util/LogUtils.html %%DATADIR%%/doc/api/org/freeplane/core/util/MenuUtils.MenuEntry.html %%DATADIR%%/doc/api/org/freeplane/core/util/MenuUtils.MenuEntryTreeBuilder.html %%DATADIR%%/doc/api/org/freeplane/core/util/MenuUtils.html %%DATADIR%%/doc/api/org/freeplane/core/util/TextUtils.html %%DATADIR%%/doc/api/org/freeplane/core/util/package-summary.html %%DATADIR%%/doc/api/org/freeplane/core/util/package-tree.html %%DATADIR%%/doc/api/org/freeplane/launcher/Launcher.html %%DATADIR%%/doc/api/org/freeplane/launcher/package-summary.html %%DATADIR%%/doc/api/org/freeplane/launcher/package-tree.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/FreeplaneScriptBaseClass.ConfigProperties.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/FreeplaneScriptBaseClass.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/package-summary.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/package-tree.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Convertible.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Attributes.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.AttributesRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Cloud.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ConditionalStyle.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ConditionalStyleRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ConditionalStyles.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ConditionalStylesRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Connector.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ConnectorRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Controller.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ControllerRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.DependencyLookup.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Edge.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.EdgeRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ExternalObject.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ExternalObjectRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Font.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.FontRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Icons.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.IconsRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Link.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.LinkRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Loader.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Map.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.MapRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.MindMap.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.MindMapRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Node.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeGeometry.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeGeometryRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeStyle.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeStyleRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Properties.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Reminder.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ReminderRO.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/ScriptUtils.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/package-summary.html %%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/package-tree.html %%DATADIR%%/doc/api/overview-summary.html %%DATADIR%%/doc/api/overview-tree.html %%DATADIR%%/doc/api/package-search-index.js %%DATADIR%%/doc/api/resources/glass.png %%DATADIR%%/doc/api/resources/x.png %%DATADIR%%/doc/api/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png %%DATADIR%%/doc/api/script-dir/images/ui-bg_glass_65_dadada_1x400.png %%DATADIR%%/doc/api/script-dir/images/ui-bg_glass_75_dadada_1x400.png %%DATADIR%%/doc/api/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png %%DATADIR%%/doc/api/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png %%DATADIR%%/doc/api/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png %%DATADIR%%/doc/api/script-dir/images/ui-icons_222222_256x240.png %%DATADIR%%/doc/api/script-dir/images/ui-icons_2e83ff_256x240.png %%DATADIR%%/doc/api/script-dir/images/ui-icons_454545_256x240.png %%DATADIR%%/doc/api/script-dir/images/ui-icons_888888_256x240.png %%DATADIR%%/doc/api/script-dir/images/ui-icons_cd0a0a_256x240.png %%DATADIR%%/doc/api/script-dir/jquery-3.5.1.min.js %%DATADIR%%/doc/api/script-dir/jquery-ui.min.css %%DATADIR%%/doc/api/script-dir/jquery-ui.min.js %%DATADIR%%/doc/api/script-dir/jquery-ui.structure.min.css %%DATADIR%%/doc/api/script.js %%DATADIR%%/doc/api/search.js %%DATADIR%%/doc/api/serialized-form.html %%DATADIR%%/doc/api/stylesheet.css %%DATADIR%%/doc/api/tag-search-index.js %%DATADIR%%/doc/api/type-search-index.js %%DATADIR%%/doc/examplepicture_nl.JPG %%DATADIR%%/doc/freeplane.jpg %%DATADIR%%/doc/freeplaneApplications.mm %%DATADIR%%/doc/freeplaneApplications_ja.mm %%DATADIR%%/doc/freeplaneApplications_nl.mm %%DATADIR%%/doc/freeplaneFunctions.mm %%DATADIR%%/doc/freeplaneFunctions_ja.mm %%DATADIR%%/doc/freeplaneFunctions_nl.mm %%DATADIR%%/doc/freeplaneUserGuide.mm %%DATADIR%%/doc/freeplaneUserGuide.mmfilter %%DATADIR%%/doc/freeplaneUserGuide_ja.mm %%DATADIR%%/doc/freeplaneUserGuide_ja.mmfilter %%DATADIR%%/doc/freeplaneUserGuide_nl.mm %%DATADIR%%/doc/freeplaneUserGuide_nl.mmfilter %%DATADIR%%/doc/freeplane_menuposition_nl.jpg %%DATADIR%%/doc/history_en.txt %%DATADIR%%/doc/latestFreeplaneFeatures.mm %%DATADIR%%/doc/latestFreeplaneFeatures_files/layouts.png %%DATADIR%%/flatlaf-windows-x86.dll %%DATADIR%%/flatlaf-windows-x86_64.dll %%DATADIR%%/framework.jar %%DATADIR%%/freeplane.l4j.ini %%DATADIR%%/freeplane.png %%DATADIR%%/freeplane.policy %%DATADIR%%/freeplane.sh -%%DATADIR%%/freeplane.sh.orig %%DATADIR%%/freeplane.svg %%DATADIR%%/freeplaneConsole.l4j.ini %%DATADIR%%/freeplaneIcons.dll %%DATADIR%%/freeplanelauncher.jar %%DATADIR%%/gitinfo.txt %%DATADIR%%/init.xargs %%DATADIR%%/libflatlaf-linux-x86_64.so %%DATADIR%%/plugins/org.freeplane.plugin.bugreport/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.bugreport/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.formula/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.formula/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.jsyntaxpane/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.jsyntaxpane/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.jsyntaxpane/lib/syntaxpane-1.3.0.jar %%DATADIR%%/plugins/org.freeplane.plugin.latex/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/jlatexmath-1.0.7.jar %%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/jlatexmath-font-cyrillic-1.0.7.jar %%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/jlatexmath-font-greek-1.0.7.jar %%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.markdown/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.markdown/lib/jsoup-1.15.3.jar %%DATADIR%%/plugins/org.freeplane.plugin.markdown/lib/markedj-1.0.17.jar %%DATADIR%%/plugins/org.freeplane.plugin.markdown/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.openmaps/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.openmaps/lib/jmapviewer-2.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.openmaps/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/ant-1.10.12.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/ant-antlr-1.10.12.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/ant-junit-1.10.12.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/ant-launcher-1.10.12.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/asm-9.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/asm-analysis-9.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/asm-tree-9.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/asm-util-9.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-ant-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-cli-picocli-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-console-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-datetime-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-dateutil-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-docgenerator-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-groovydoc-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-groovysh-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-jmx-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-json-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-jsr223-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-macro-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-nio-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-servlet-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-sql-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-swing-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-templates-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-test-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-test-junit5-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-xml-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-yaml-4.0.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/hamcrest-core-1.3.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/ivy-2.5.0.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/jackson-annotations-2.13.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/jackson-core-2.13.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/jackson-databind-2.13.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/jackson-dataformat-yaml-2.13.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/javaparser-core-3.24.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/jline-2.14.6.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/junit-4.13.2.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/junit-jupiter-api-5.9.1.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/junit-jupiter-engine-5.9.1.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/junit-platform-commons-1.9.1.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/junit-platform-engine-1.9.1.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/junit-platform-launcher-1.9.1.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/opentest4j-1.2.0.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/org.abego.treelayout.core-1.0.3.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/picocli-4.6.3.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/qdox-1.12.1.jar %%DATADIR%%/plugins/org.freeplane.plugin.script/lib/snakeyaml-1.31.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/META-INF/MANIFEST.MF %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-anim-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-awt-util-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-bridge-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-codec-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-constants-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-css-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-dom-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-ext-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-gui-util-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-gvt-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-i18n-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-parser-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-script-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-shared-resources-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-svg-dom-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-svggen-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-swing-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-transcoder-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-util-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-xml-1.16.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/commons-io-1.3.1.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/commons-logging-1.0.4.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/fontbox-3.0.0-RC1.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/fop-core-2.7.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/fop-events-2.7.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/fop-util-2.7.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/plugin-%%PORTVERSION%%.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/xml-apis-ext-1.3.04.jar %%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/xmlgraphics-commons-2.7.jar %%DATADIR%%/props.xargs %%DATADIR%%/resources/gitinfo.properties %%DATADIR%%/resources/linkDecoration.ini %%DATADIR%%/resources/ortho/dictionary_de.ortho %%DATADIR%%/resources/ortho/dictionary_en.ortho %%DATADIR%%/resources/ortho/dictionary_fr.ortho %%DATADIR%%/resources/templates/BigMap.mm %%DATADIR%%/resources/templates/BigMap.svg %%DATADIR%%/resources/templates/BuzanMap.mm %%DATADIR%%/resources/templates/BuzanMap.svg %%DATADIR%%/resources/templates/Darcula-1.7.mm %%DATADIR%%/resources/templates/Darcula-1.7.svg %%DATADIR%%/resources/templates/conceptMap.mm %%DATADIR%%/resources/templates/conceptMap.svg %%DATADIR%%/resources/templates/dark_gruvbox_template.mm %%DATADIR%%/resources/templates/dark_gruvbox_template.svg %%DATADIR%%/resources/templates/dark_nord_template.mm %%DATADIR%%/resources/templates/dark_nord_template.svg %%DATADIR%%/resources/templates/dark_purple_neon_template.mm %%DATADIR%%/resources/templates/dark_purple_neon_template.svg %%DATADIR%%/resources/templates/dark_solarized_template.mm %%DATADIR%%/resources/templates/dark_solarized_template.svg %%DATADIR%%/resources/templates/essay.mm %%DATADIR%%/resources/templates/essay.svg %%DATADIR%%/resources/templates/light_grey_straight_template.mm %%DATADIR%%/resources/templates/light_grey_straight_template.svg %%DATADIR%%/resources/templates/light_grey_template.mm %%DATADIR%%/resources/templates/light_grey_template.svg %%DATADIR%%/resources/templates/light_gruvbox_template.mm %%DATADIR%%/resources/templates/light_gruvbox_template.svg %%DATADIR%%/resources/templates/light_nord_template.mm %%DATADIR%%/resources/templates/light_nord_template.svg %%DATADIR%%/resources/templates/light_purple_neon_template.mm %%DATADIR%%/resources/templates/light_purple_neon_template.svg %%DATADIR%%/resources/templates/light_sepia_template.mm %%DATADIR%%/resources/templates/light_sepia_template.svg %%DATADIR%%/resources/templates/light_sky_element_template.mm %%DATADIR%%/resources/templates/light_sky_element_template.svg %%DATADIR%%/resources/templates/light_solarized_template.mm %%DATADIR%%/resources/templates/light_solarized_template.svg %%DATADIR%%/resources/templates/light_super_hero_template.mm %%DATADIR%%/resources/templates/light_super_hero_template.svg %%DATADIR%%/resources/templates/standard-1.6-noEdgeColor.mm %%DATADIR%%/resources/templates/standard-1.6-noEdgeColor.svg %%DATADIR%%/resources/templates/standard-1.6.mm %%DATADIR%%/resources/templates/standard-1.6.svg %%DATADIR%%/resources/xml/filemodemenu.xml %%DATADIR%%/resources/xml/mindmapmodemenu.xml %%DATADIR%%/resources/xml/preferences.xml %%DATADIR%%/resources/xml/stylemodemenu.xml %%DATADIR%%/resources/xslt/export2oowriter.manifest.xsl %%DATADIR%%/resources/xslt/export2oowriter.styles.xsl %%DATADIR%%/resources/xslt/export2oowriter.xsl %%DATADIR%%/resources/xslt/mm2adoc.xsl %%DATADIR%%/resources/xslt/mm2freeplane1_1-mm.xsl %%DATADIR%%/resources/xslt/mm2html.xsl %%DATADIR%%/resources/xslt/mm2latexartcl.xsl %%DATADIR%%/resources/xslt/mm2latexbeamer_richcontent_1.3.x.xsl %%DATADIR%%/resources/xslt/mm2latexbook.xsl %%DATADIR%%/resources/xslt/mm2latexinput.xsl %%DATADIR%%/resources/xslt/mm2markdown.xsl %%DATADIR%%/resources/xslt/mm2msp_utf8.xsl %%DATADIR%%/resources/xslt/mm2msp_utf8_TEMPLATE.mm %%DATADIR%%/resources/xslt/mm2mwiki.xsl %%DATADIR%%/resources/xslt/mm2opml.xsl %%DATADIR%%/resources/xslt/mm2raw.xsl %%DATADIR%%/resources/xslt/mm2text.xsl %%DATADIR%%/resources/xslt/mm2wordml_utf8.xsl %%DATADIR%%/resources/xslt/mm2wordml_utf8_TEMPLATE.mm %%DATADIR%%/resources/xslt/mm2xbel.xsl %%DATADIR%%/resources/xslt/mm2xls_utf8.xsl %%DATADIR%%/resources/xslt/mm2xml.xsl %%DATADIR%%/resources/xslt/tohtml.xsl %%DATADIR%%/resources/xslt/xbel2mm.xsl %%DATADIR%%/scripts/apiGenerator.groovy %%DATADIR%%/scripts/installScriptAddOn.groovy