Page MenuHomeSolus

D9017.id.diff
No OneTemporary

D9017.id.diff

diff --git a/files/0001-fix-failing-gradle-build.patch b/files/0001-fix-failing-gradle-build.patch
new file mode 100644
--- /dev/null
+++ b/files/0001-fix-failing-gradle-build.patch
@@ -0,0 +1,107 @@
+From e1d6707ffd56e705fd68a2c24caf5f4cc44e5dcf Mon Sep 17 00:00:00 2001
+From: Beniamin Kalinowski <beniamin.kalinowski@gmail.com>
+Date: Fri, 22 May 2020 10:49:22 +0200
+Subject: [PATCH] fix failing gradle build (#160)
+
+---
+ build.gradle | 2 +-
+ .../ui/menubuilders/menu/MenuBuildProcessFactoryTest.java | 5 +++++
+ freeplane_api/src/main/java/org/freeplane/api/Connector.java | 4 ++--
+ .../src/main/java/org/freeplane/api/ConnectorRO.java | 4 ++--
+ freeplane_api/src/main/java/org/freeplane/api/Link.java | 4 ++--
+ 5 files changed, 12 insertions(+), 7 deletions(-)
+
+diff --git a/build.gradle b/build.gradle
+index caef729e8..49146e7dc 100644
+--- a/build.gradle
++++ b/build.gradle
+@@ -8,7 +8,7 @@ buildscript {
+ }
+
+ plugins {
+- id 'nebula.ospackage' version '8.1.0'
++ id 'nebula.ospackage' version '8.3.0'
+ id 'com.github.ben-manes.versions' version '0.28.0'
+ id 'org.owasp.dependencycheck' version '5.3.0' apply false
+ }
+diff --git a/freeplane/src/test/java/org/freeplane/core/ui/menubuilders/menu/MenuBuildProcessFactoryTest.java b/freeplane/src/test/java/org/freeplane/core/ui/menubuilders/menu/MenuBuildProcessFactoryTest.java
+index 10fab77d7..0bd087951 100644
+--- a/freeplane/src/test/java/org/freeplane/core/ui/menubuilders/menu/MenuBuildProcessFactoryTest.java
++++ b/freeplane/src/test/java/org/freeplane/core/ui/menubuilders/menu/MenuBuildProcessFactoryTest.java
+@@ -11,6 +11,7 @@ import javax.swing.JMenu;
+
+ import org.freeplane.core.ui.IUserInputListenerFactory;
+ import org.freeplane.core.ui.components.FreeplaneMenuBar;
++import org.freeplane.core.ui.menubuilders.HeadlessFreeplaneRunner;
+ import org.freeplane.core.ui.menubuilders.XmlEntryStructureBuilder;
+ import org.freeplane.core.ui.menubuilders.action.EntriesForAction;
+ import org.freeplane.core.ui.menubuilders.action.IAcceleratorMap;
+@@ -29,6 +30,10 @@ public class MenuBuildProcessFactoryTest {
+ private PhaseProcessor phaseProcessor;
+ private FreeplaneActions freeplaneActions;
+
++ static {
++ new HeadlessFreeplaneRunner();
++ }
++
+ @Before
+ public void setup() {
+ freeplaneActions = mock(FreeplaneActions.class);
+diff --git a/freeplane_api/src/main/java/org/freeplane/api/Connector.java b/freeplane_api/src/main/java/org/freeplane/api/Connector.java
+index 14e317de8..f6b5265c0 100644
+--- a/freeplane_api/src/main/java/org/freeplane/api/Connector.java
++++ b/freeplane_api/src/main/java/org/freeplane/api/Connector.java
+@@ -42,7 +42,7 @@ public interface Connector extends ConnectorRO {
+ void setDashArray(int[] dashArray);
+
+ /**
+- * 0 <= opacity <= 255
++ * 0 &lt;= opacity &lt;= 255
+ *
+ * Since 1.7.10
+ */
+@@ -65,4 +65,4 @@ public interface Connector extends ConnectorRO {
+ void setLabelFontSize(int size);
+
+
+-}
+\ No newline at end of file
++}
+diff --git a/freeplane_api/src/main/java/org/freeplane/api/ConnectorRO.java b/freeplane_api/src/main/java/org/freeplane/api/ConnectorRO.java
+index f12cde32b..9808db91c 100644
+--- a/freeplane_api/src/main/java/org/freeplane/api/ConnectorRO.java
++++ b/freeplane_api/src/main/java/org/freeplane/api/ConnectorRO.java
+@@ -22,7 +22,7 @@ public interface ConnectorRO {
+ int[] getDashArray();
+
+ /**
+- * 0 <= opacity <= 255
++ * 0 &lt;= opacity &lt;= 255
+ *
+ * Since 1.7.10
+ */
+@@ -71,4 +71,4 @@ public interface ConnectorRO {
+ /** returns a Point.
+ * @since 1.3.3 */
+ List<Integer> getEndInclination();
+-}
+\ No newline at end of file
++}
+diff --git a/freeplane_api/src/main/java/org/freeplane/api/Link.java b/freeplane_api/src/main/java/org/freeplane/api/Link.java
+index ba5f681d4..fc7df8a41 100644
+--- a/freeplane_api/src/main/java/org/freeplane/api/Link.java
++++ b/freeplane_api/src/main/java/org/freeplane/api/Link.java
+@@ -43,7 +43,7 @@ public interface Link extends LinkRO {
+ boolean set(String target);
+
+ /** removes the link. Same as <code>node.link.text = null</code>.
+- * @return <tt>true</tt> if there was a link to remove.
++ * @return <code>true</code> if there was a link to remove.
+ * @since 1.4 */
+ boolean remove();
+-}
+\ No newline at end of file
++}
+--
+2.27.0
+
diff --git a/files/freeplane.sh b/files/freeplane.sh
--- a/files/freeplane.sh
+++ b/files/freeplane.sh
@@ -1,3 +1,11 @@
#!/bin/sh
-JAVACMD=/usr/lib64/openjdk-8/bin/java exec /usr/share/freeplane/freeplane.sh
\ No newline at end of file
+if [ -z "$JAVA_HOME" ]; then
+ export JAVA_HOME=/usr/lib64/openjdk-11
+fi
+
+if [ -z "$JAVACMD" ]; then
+ export JAVACMD=$JAVA_HOME/bin/java
+fi
+
+exec /usr/share/freeplane/freeplane.sh
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,8 +1,8 @@
name : freeplane
-version : 1.7.10
-release : 9
+version : 1.8.5
+release : 10
source :
- - https://github.com/freeplane/freeplane/archive/release-1.7.10.tar.gz : cffe68cb342cb221effb885ae9ddaeb0feab50184b15552cb01f62a43b7f55dc
+ - https://github.com/freeplane/freeplane/archive/release-1.8.5.tar.gz : 68e9688ef3d689c13a219f8b6ccad90607ab08cdba9d1f84cd47f02a24def426
homepage : https://www.freeplane.org
license : GPL-2.0-or-later
component : office
@@ -16,15 +16,13 @@
- gradle
rundeps :
- fontconfig
- - openjdk-8
+ - openjdk-11
setup : |
- # Remove this on the next update.
- sed 's|http://|https://|' -i build.gradle
-
rm -rf freeplane_mac
build : |
- export GRADLE_USER_HOME=~/
- gradle build
+ %patch -p1 < $pkgfiles/0001-fix-failing-gradle-build.patch
+ export GRADLE_USER_HOME=$workdir/.gradle
+ gradle --no-daemon build
install : |
install -dm00755 $installdir/usr/share/freeplane
cp -a BIN/* $installdir/usr/share/freeplane
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -3,8 +3,8 @@
<Name>freeplane</Name>
<Homepage>https://www.freeplane.org</Homepage>
<Packager>
- <Name>Fabio Forni</Name>
- <Email>livingsilver94.solus@redaril.me</Email>
+ <Name>Campbell Jones</Name>
+ <Email>dev@serebit.com</Email>
</Packager>
<License>GPL-2.0-or-later</License>
<PartOf>office</PartOf>
@@ -23,21 +23,29 @@
<Path fileType="executable">/usr/bin/freeplane</Path>
<Path fileType="data">/usr/share/applications/freeplane.desktop</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/SimplyHTML-0.17.3.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/SimplyHTML-0.17.6.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/annotations-16.0.1.jar</Path>
- <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/commons-codec-1.8.jar</Path>
- <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/commons-io-2.4.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/common-image-3.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/common-io-3.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/common-lang-3.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/commons-codec-1.14.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/commons-io-2.6.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/commons-lang-2.6.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/darcula-2018.2.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/data-url-1.0.1.jar</Path>
- <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplane_mac-1.7.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplaneeditor-1.7.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplaneosgi-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/emoji-12.1.4.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplane_mac-1.8.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplaneapi_viewer.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplaneeditor-1.8.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplaneosgi-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/freeplaneviewer.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/idw-gpl-1.6.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/imageio-core-3.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/imageio-jpeg-3.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/imageio-metadata-3.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/jgoodies-common-1.8.1.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/jgoodies-forms-1.9.0.jar</Path>
- <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/jortho-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/jortho-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/core/org.freeplane.core/lib/kitfox-svg-salamander-1.1.1-p1.jar</Path>
<Path fileType="data">/usr/share/freeplane/doc/Freeplane_LaTeX.mm</Path>
<Path fileType="data">/usr/share/freeplane/doc/Images/Preferences_Joining nodes.png</Path>
@@ -79,13 +87,43 @@
<Path fileType="data">/usr/share/freeplane/doc/Images/other/workspace/view - toolbars.png</Path>
<Path fileType="data">/usr/share/freeplane/doc/Images/other/workspace/view - view settings.png</Path>
<Path fileType="data">/usr/share/freeplane/doc/Images/properties toolbar - collapsed.png</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/allclasses-frame.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/allclasses-noframe.html</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/allclasses-index.html</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/allclasses.html</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/allpackages-index.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/constant-values.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/deprecated-list.html</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/element-list</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/help-doc.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/index-all.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/index.html</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/external/jquery/jquery.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-bg_glass_65_dadada_1x400.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-bg_glass_75_dadada_1x400.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-bg_glass_95_fef1ec_1x400.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-icons_222222_256x240.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-icons_2e83ff_256x240.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-icons_454545_256x240.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-icons_888888_256x240.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/images/ui-icons_cd0a0a_256x240.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-3.3.1.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-migrate-3.0.1.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-ui.css</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-ui.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-ui.min.css</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-ui.min.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-ui.structure.css</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jquery-ui.structure.min.css</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jszip-utils/dist/jszip-utils-ie.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jszip-utils/dist/jszip-utils-ie.min.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jszip-utils/dist/jszip-utils.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jszip-utils/dist/jszip-utils.min.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jszip/dist/jszip.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/jquery/jszip/dist/jszip.min.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/member-search-index.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/member-search-index.zip</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/AttributeCondition.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/AttributeValueSerializer.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/Attributes.html</Path>
@@ -133,12 +171,11 @@
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/Reminder.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/ReminderRO.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/Script.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/package-frame.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/package-summary.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/api/package-tree.html</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/ui/components/UITools.Defaults.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/ui/components/UITools.InsertEolAction.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/ui/components/UITools.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/ui/components/package-frame.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/ui/components/package-summary.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/ui/components/package-tree.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/util/FreeplaneVersion.html</Path>
@@ -149,16 +186,13 @@
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/util/MenuUtils.MenuEntryTreeBuilder.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/util/MenuUtils.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/util/TextUtils.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/util/package-frame.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/util/package-summary.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/core/util/package-tree.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/launcher/Launcher.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/launcher/package-frame.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/launcher/package-summary.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/launcher/package-tree.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/FreeplaneScriptBaseClass.ConfigProperties.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/FreeplaneScriptBaseClass.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/package-frame.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/package-summary.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/package-tree.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/proxy/Convertible.html</Path>
@@ -194,16 +228,20 @@
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/proxy/Proxy.ReminderRO.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/proxy/Proxy.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/proxy/ScriptUtils.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/proxy/package-frame.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/proxy/package-summary.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/org/freeplane/plugin/script/proxy/package-tree.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/overview-frame.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/overview-summary.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/overview-tree.html</Path>
- <Path fileType="data">/usr/share/freeplane/doc/api/package-list</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/package-search-index.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/package-search-index.zip</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/resources/glass.png</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/resources/x.png</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/script.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/search.js</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/serialized-form.html</Path>
<Path fileType="data">/usr/share/freeplane/doc/api/stylesheet.css</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/type-search-index.js</Path>
+ <Path fileType="data">/usr/share/freeplane/doc/api/type-search-index.zip</Path>
<Path fileType="data">/usr/share/freeplane/doc/examplepicture_nl.JPG</Path>
<Path fileType="data">/usr/share/freeplane/doc/freeplane.jpg</Path>
<Path fileType="data">/usr/share/freeplane/doc/freeplaneApplications.mm</Path>
@@ -230,73 +268,70 @@
<Path fileType="data">/usr/share/freeplane/freeplane.svg</Path>
<Path fileType="data">/usr/share/freeplane/freeplaneConsole.l4j.ini</Path>
<Path fileType="data">/usr/share/freeplane/freeplanelauncher.jar</Path>
- <Path fileType="data">/usr/share/freeplane/fwdir/condperm</Path>
- <Path fileType="data">/usr/share/freeplane/fwdir/perms</Path>
<Path fileType="data">/usr/share/freeplane/init.xargs</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.bugreport/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.bugreport/lib/plugin-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.bugreport/lib/plugin-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.formula/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.formula/lib/plugin-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.formula/lib/plugin-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.jsyntaxpane/META-INF/MANIFEST.MF</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.jsyntaxpane/lib/jsyntaxpane-0.9.6~r156-7.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.jsyntaxpane/lib/plugin-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.jsyntaxpane/lib/plugin-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.latex/META-INF/MANIFEST.MF</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.latex/lib/jlatexmath-1.0.7.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.latex/lib/jlatexmath-font-cyrillic-1.0.7.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.latex/lib/jlatexmath-font-greek-1.0.7.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.latex/lib/plugin-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.latex/lib/plugin-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.openmaps/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.openmaps/lib/jmapviewer-1.14.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.openmaps/lib/plugin-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.openmaps/lib/jmapviewer-2.9.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.openmaps/lib/plugin-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-console-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-datetime-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-dateutil-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-groovysh-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-jmx-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-json-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-jsr223-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-macro-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-nio-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-servlet-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-sql-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-swing-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-templates-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-xml-2.5.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/ivy-2.4.0.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-console-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-datetime-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-dateutil-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-groovysh-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-jmx-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-json-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-jsr223-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-macro-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-nio-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-servlet-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-sql-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-swing-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-templates-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/groovy-xml-3.0.1.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/ivy-2.5.0.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/jline-2.14.6.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/plugin-1.7.10.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.script/lib/plugin-1.8.5.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/avalon-framework-api-4.3.1.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/avalon-framework-impl-4.3.1.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-anim-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-awt-util-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-bridge-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-codec-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-constants-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-css-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-dom-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-ext-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-extension-1.9.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-gui-util-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-gvt-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-i18n-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-parser-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-script-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-svg-dom-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-svggen-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-swing-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-transcoder-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-util-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-xml-1.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/commons-logging-1.2.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/fontbox-2.0.4.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/fop-2.2.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/plugin-1.7.10.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/xml-apis-1.3.04.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-anim-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-awt-util-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-bridge-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-codec-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-constants-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-css-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-dom-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-ext-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-gui-util-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-gvt-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-i18n-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-parser-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-script-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-svg-dom-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-svggen-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-swing-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-transcoder-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-util-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/batik-xml-1.12.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/commons-logging-1.0.4.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/fontbox-2.0.16.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/fop-core-2.4.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/fop-events-2.4.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/fop-util-2.4.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/plugin-1.8.5.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/xml-apis-1.4.01.jar</Path>
<Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/xml-apis-ext-1.3.04.jar</Path>
- <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/xmlgraphics-commons-2.2.jar</Path>
+ <Path fileType="data">/usr/share/freeplane/plugins/org.freeplane.plugin.svg/lib/xmlgraphics-commons-2.4.jar</Path>
<Path fileType="data">/usr/share/freeplane/props.xargs</Path>
<Path fileType="data">/usr/share/freeplane/resources/ortho/dictionary_de.ortho</Path>
<Path fileType="data">/usr/share/freeplane/resources/ortho/dictionary_en.ortho</Path>
@@ -345,12 +380,12 @@
</Files>
</Package>
<History>
- <Update release="9">
- <Date>2020-04-24</Date>
- <Version>1.7.10</Version>
+ <Update release="10">
+ <Date>2020-06-07</Date>
+ <Version>1.8.5</Version>
<Comment>Packaging update</Comment>
- <Name>Fabio Forni</Name>
- <Email>livingsilver94.solus@redaril.me</Email>
+ <Name>Campbell Jones</Name>
+ <Email>dev@serebit.com</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Fri, Aug 11, 3:53 PM (3 h, 5 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5820390
Default Alt Text
D9017.id.diff (35 KB)

Event Timeline