Skip to content

Commit 06bf0bf

Browse files
committed
release 1.4.10
1 parent 60f7aa9 commit 06bf0bf

File tree

14 files changed

+24
-24
lines changed

14 files changed

+24
-24
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
[![Java 8.0+](https://img.shields.io/badge/java-8.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
55
[![NetBeans](https://img.shields.io/badge/netbeans-8.0%2b-green.svg)](http://plugins.netbeans.org/plugin/60188/nb-mindmap-editor)
66
[![Intellij IDEA](https://img.shields.io/badge/idea-14.0.5%2b-green.svg)](https://plugins.jetbrains.com/plugin/8045)
7-
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-red.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
8-
[![YooMoney donation](https://img.shields.io/badge/donation-Я.деньги-yellow.svg)](https://yoomoney.ru/to/41001158080699)
7+
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-cyan.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
8+
[![YooMoney donation](https://img.shields.io/badge/donation-Yoo.money-blue.svg)](https://yoomoney.ru/to/41001158080699)
99

1010
# Introduction
1111
The Main part of a software project is not code but knowledge generated during the project. I guess knowledge is the main part of every business today and it is very important to move the generated knowledge from non-formal level to formal level to avoid its loss. There are many approaches to save knowledge and [a mind map diagram](https://en.wikipedia.org/wiki/Mind_map) is one of them. Also it is very important to keep the "distance" between project and its knowledge as short as possible and the ideal variant is to keep knowledge just within the project as a document set. If you use any external knowledge engineering tool then the distance already is not so short and for the cause I had decided to develop some plugin which would allow to form mind maps and keep knowledge graph just within projects and allow to work with the graphs just with the IDE.
@@ -14,7 +14,7 @@ Initially I developed plugin for NetBeans IDE but because in companies, where I
1414
![Screenshots from all](./assets/screenshots_all.png)
1515

1616
# Changelog
17-
__1.4.10 (SNAPSHOT)__
17+
__1.4.10 (14-dec-2020)__
1818
- SR: added View-Zoom into the main menu toolbar
1919
- ALL: added password protection for notes (AES-256)
2020
- ALL: decreased topic dragging start sensitivity [#77](https://github.com/raydac/netbeans-mmd-plugin/issues/77)

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__1.4.10 (SNAPSHOT)__
1+
__1.4.10 (14-dec-2020)__
22
- SR: added View-Zoom into the main menu toolbar
33
- ALL: added password protection for notes (AES-256)
44
- ALL: decreased topic dragging start sensitivity [#77](https://github.com/raydac/netbeans-mmd-plugin/issues/77)

mind-map/idea-mindmap/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
mavenLocal()
1010
}
1111

12-
version = project.hasProperty('mm_plugin_version') ? project.getProperty('mm_plugin_version') : "1.4.10-SNAPSHOT"
12+
version = project.hasProperty('mm_plugin_version') ? project.getProperty('mm_plugin_version') : "1.4.10"
1313

1414
intellij {
1515
version 'IC-139.1803.20'
@@ -18,7 +18,7 @@ intellij {
1818
updateSinceUntilBuild false
1919
}
2020

21-
def mindMapModelVersion = project.hasProperty('mm_model_version') ? project.getProperty('mm_model_version') : "1.4.10-SNAPSHOT"
21+
def mindMapModelVersion = project.hasProperty('mm_model_version') ? project.getProperty('mm_model_version') : "1.4.10"
2222
def mindMapCommonVersion = project.hasProperty('mm_ide_common_version') ? project.getProperty('mm_ide_common_version') : project.version
2323
def mindMapPanelVersion = project.hasProperty('mm_panel_version') ? project.getProperty('mm_panel_version') : project.version
2424
def commonsIoVersion = project.hasProperty('commonsio_version') ? project.getProperty('commonsio_version') : "2.5"

mind-map/idea-mindmap/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.10-SNAPSHOT</version>
8+
<version>1.4.10</version>
99
</parent>
1010

1111
<artifactId>idea-mindmap</artifactId>

mind-map/idea-mindmap/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
]]></description>
1313

1414
<change-notes><![CDATA[
15-
<p>1.4.10 (SNAPSHOT)</p>
15+
<p>1.4.10 (14-dec-2020)</p>
1616
<ul>
1717
<li>minor bugfix and refactoring</li>
1818
<li>added password protection for notes (AES-256)</li>

mind-map/idea-mindmap/src/com/igormaznitsa/ideamindmap/editor/MindMapPanelControllerImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ public void editTextForTopic(final Topic topic) {
462462
}
463463
} catch (RuntimeException ex) {
464464
this.dialogProvider.msgError(this.getPanel(),
465-
"Can't decode encrypted text for error! May be broken data!");
465+
"Can't decode encrypted text for error!\nEither broken data or current JDK security policy doesn't support AES-256!");
466466
LOGGER.error("Can't decode encrypted note", ex);
467467
}
468468
}
@@ -496,7 +496,7 @@ public void editTextForTopic(final Topic topic) {
496496
newNoteText = CryptoUtils.encrypt(result.getPassword(), result.getText());
497497
} catch (RuntimeException ex) {
498498
this.dialogProvider
499-
.msgError(this.getPanel(), "Can't encrypt text for error! Examine log!");
499+
.msgError(this.getPanel(), "Can't encrypt text for error!\nExamine log and check JDK security policy for AES-256 support!");
500500
LOGGER.error("Can't encrypt note", ex);
501501
return;
502502
}

mind-map/mind-map-ide-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>mind-map</artifactId>
7-
<version>1.4.10-SNAPSHOT</version>
7+
<version>1.4.10</version>
88
</parent>
99

1010
<artifactId>mind-map-ide-common</artifactId>

mind-map/mind-map-model/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.10-SNAPSHOT</version>
8+
<version>1.4.10</version>
99
</parent>
1010

1111
<groupId>com.igormaznitsa</groupId>
1212
<artifactId>mind-map-model</artifactId>
13-
<version>1.4.10-SNAPSHOT</version>
13+
<version>1.4.10</version>
1414
<packaging>jar</packaging>
1515

1616
<name>NB Mind Map model</name>

mind-map/mind-map-swing-panel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>mind-map</artifactId>
7-
<version>1.4.10-SNAPSHOT</version>
7+
<version>1.4.10</version>
88
</parent>
99

1010
<artifactId>mind-map-swing-panel</artifactId>

mind-map/nb-mind-map/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.10-SNAPSHOT</version>
8+
<version>1.4.10</version>
99
</parent>
1010

1111
<artifactId>nb-mind-map</artifactId>

mind-map/nb-mind-map/src/main/java/com/igormaznitsa/nbmindmap/nb/editor/MMDGraphEditor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ private void editTextForTopic(final Topic topic) {
14651465
} catch (RuntimeException ex) {
14661466
DialogProviderManager.getInstance().getDialogProvider()
14671467
.msgError(this,
1468-
"Can't decode encrypted text for error! May be broken data!");
1468+
"Can't decode encrypted text for error!\nEither broken data or current JDK security policy doesn't support AES-256!");
14691469
LOGGER.error("Can't decode encrypted note", ex);
14701470
}
14711471
}
@@ -1498,7 +1498,7 @@ private void editTextForTopic(final Topic topic) {
14981498
} catch (RuntimeException ex) {
14991499
DialogProviderManager.getInstance().getDialogProvider()
15001500
.msgError(this,
1501-
"Can't encrypt text for error! Examine log!");
1501+
"Can't encrypt text for error!\nExamine log and check JDK security policy for AES-256 support!");
15021502
LOGGER.error("Can't encrypt note", ex);
15031503
return;
15041504
}

mind-map/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.igormaznitsa</groupId>
55
<artifactId>mind-map</artifactId>
6-
<version>1.4.10-SNAPSHOT</version>
6+
<version>1.4.10</version>
77
<packaging>pom</packaging>
88

99
<inceptionYear>2015</inceptionYear>
@@ -12,13 +12,13 @@
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<main.version.raw>1.4.10</main.version.raw>
1414

15-
<main.version>${main.version.raw}-SNAPSHOT</main.version>
16-
<!--main.version>${main.version.raw}</main.version-->
15+
<!--main.version>${main.version.raw}-SNAPSHOT</main.version-->
16+
<main.version>${main.version.raw}</main.version>
1717

1818
<meta.version>1.1.3</meta.version>
1919
<uber.pom>1.0.3</uber.pom>
2020
<iam.commons.version>1.0.0</iam.commons.version>
21-
<mindmap.model.version>1.4.10-SNAPSHOT</mindmap.model.version>
21+
<mindmap.model.version>1.4.10</mindmap.model.version>
2222
<jsoup.version>1.11.3</jsoup.version>
2323
<json.version>20180813</json.version>
2424
<iharder.version>2.3.9</iharder.version>

mind-map/scia-reto/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.10-SNAPSHOT</version>
8+
<version>1.4.10</version>
99
</parent>
1010

1111
<artifactId>scia-reto</artifactId>

mind-map/scia-reto/src/main/java/com/igormaznitsa/sciareto/ui/editors/MMDEditor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ private void editTextForTopic(@Nonnull final Topic topic) {
10231023
} catch (RuntimeException ex) {
10241024
DialogProviderManager.getInstance().getDialogProvider()
10251025
.msgError(Main.getApplicationFrame(),
1026-
"Can't decode encrypted text for error! May be broken data!");
1026+
"Can't decode encrypted text for error!\nEither broken data or current JDK security policy doesn't support AES-256!");
10271027
logger.error("Can't decode encrypted note", ex);
10281028
}
10291029
}
@@ -1054,7 +1054,7 @@ private void editTextForTopic(@Nonnull final Topic topic) {
10541054
} catch (RuntimeException ex) {
10551055
DialogProviderManager.getInstance().getDialogProvider()
10561056
.msgError(this.getMainComponent(),
1057-
"Can't encrypt text for error! Examine log!");
1057+
"Can't encrypt text for error!\nExamine log and check JDK security policy for AES-256 support!");
10581058
logger.error("Can't encrypt note", ex);
10591059
return;
10601060
}

0 commit comments

Comments
 (0)