Skip to content

Commit

Permalink
release 1.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Dec 13, 2020
1 parent 60f7aa9 commit 06bf0bf
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
[![Java 8.0+](https://img.shields.io/badge/java-8.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![NetBeans](https://img.shields.io/badge/netbeans-8.0%2b-green.svg)](http://plugins.netbeans.org/plugin/60188/nb-mindmap-editor)
[![Intellij IDEA](https://img.shields.io/badge/idea-14.0.5%2b-green.svg)](https://plugins.jetbrains.com/plugin/8045)
[![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)
[![YooMoney donation](https://img.shields.io/badge/donation-Я.деньги-yellow.svg)](https://yoomoney.ru/to/41001158080699)
[![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)
[![YooMoney donation](https://img.shields.io/badge/donation-Yoo.money-blue.svg)](https://yoomoney.ru/to/41001158080699)

# Introduction
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.
Expand All @@ -14,7 +14,7 @@ Initially I developed plugin for NetBeans IDE but because in companies, where I
![Screenshots from all](./assets/screenshots_all.png)

# Changelog
__1.4.10 (SNAPSHOT)__
__1.4.10 (14-dec-2020)__
- SR: added View-Zoom into the main menu toolbar
- ALL: added password protection for notes (AES-256)
- ALL: decreased topic dragging start sensitivity [#77](https://github.com/raydac/netbeans-mmd-plugin/issues/77)
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__1.4.10 (SNAPSHOT)__
__1.4.10 (14-dec-2020)__
- SR: added View-Zoom into the main menu toolbar
- ALL: added password protection for notes (AES-256)
- ALL: decreased topic dragging start sensitivity [#77](https://github.com/raydac/netbeans-mmd-plugin/issues/77)
Expand Down
4 changes: 2 additions & 2 deletions mind-map/idea-mindmap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
mavenLocal()
}

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

intellij {
version 'IC-139.1803.20'
Expand All @@ -18,7 +18,7 @@ intellij {
updateSinceUntilBuild false
}

def mindMapModelVersion = project.hasProperty('mm_model_version') ? project.getProperty('mm_model_version') : "1.4.10-SNAPSHOT"
def mindMapModelVersion = project.hasProperty('mm_model_version') ? project.getProperty('mm_model_version') : "1.4.10"
def mindMapCommonVersion = project.hasProperty('mm_ide_common_version') ? project.getProperty('mm_ide_common_version') : project.version
def mindMapPanelVersion = project.hasProperty('mm_panel_version') ? project.getProperty('mm_panel_version') : project.version
def commonsIoVersion = project.hasProperty('commonsio_version') ? project.getProperty('commonsio_version') : "2.5"
Expand Down
2 changes: 1 addition & 1 deletion mind-map/idea-mindmap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
</parent>

<artifactId>idea-mindmap</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mind-map/idea-mindmap/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
]]></description>

<change-notes><![CDATA[
<p>1.4.10 (SNAPSHOT)</p>
<p>1.4.10 (14-dec-2020)</p>
<ul>
<li>minor bugfix and refactoring</li>
<li>added password protection for notes (AES-256)</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ public void editTextForTopic(final Topic topic) {
}
} catch (RuntimeException ex) {
this.dialogProvider.msgError(this.getPanel(),
"Can't decode encrypted text for error! May be broken data!");
"Can't decode encrypted text for error!\nEither broken data or current JDK security policy doesn't support AES-256!");
LOGGER.error("Can't decode encrypted note", ex);
}
}
Expand Down Expand Up @@ -496,7 +496,7 @@ public void editTextForTopic(final Topic topic) {
newNoteText = CryptoUtils.encrypt(result.getPassword(), result.getText());
} catch (RuntimeException ex) {
this.dialogProvider
.msgError(this.getPanel(), "Can't encrypt text for error! Examine log!");
.msgError(this.getPanel(), "Can't encrypt text for error!\nExamine log and check JDK security policy for AES-256 support!");
LOGGER.error("Can't encrypt note", ex);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion mind-map/mind-map-ide-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
</parent>

<artifactId>mind-map-ide-common</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions mind-map/mind-map-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
</parent>

<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map-model</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
<packaging>jar</packaging>

<name>NB Mind Map model</name>
Expand Down
2 changes: 1 addition & 1 deletion mind-map/mind-map-swing-panel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
</parent>

<artifactId>mind-map-swing-panel</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mind-map/nb-mind-map/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
</parent>

<artifactId>nb-mind-map</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1465,7 +1465,7 @@ private void editTextForTopic(final Topic topic) {
} catch (RuntimeException ex) {
DialogProviderManager.getInstance().getDialogProvider()
.msgError(this,
"Can't decode encrypted text for error! May be broken data!");
"Can't decode encrypted text for error!\nEither broken data or current JDK security policy doesn't support AES-256!");
LOGGER.error("Can't decode encrypted note", ex);
}
}
Expand Down Expand Up @@ -1498,7 +1498,7 @@ private void editTextForTopic(final Topic topic) {
} catch (RuntimeException ex) {
DialogProviderManager.getInstance().getDialogProvider()
.msgError(this,
"Can't encrypt text for error! Examine log!");
"Can't encrypt text for error!\nExamine log and check JDK security policy for AES-256 support!");
LOGGER.error("Can't encrypt note", ex);
return;
}
Expand Down
8 changes: 4 additions & 4 deletions mind-map/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
<packaging>pom</packaging>

<inceptionYear>2015</inceptionYear>
Expand All @@ -12,13 +12,13 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<main.version.raw>1.4.10</main.version.raw>

<main.version>${main.version.raw}-SNAPSHOT</main.version>
<!--main.version>${main.version.raw}</main.version-->
<!--main.version>${main.version.raw}-SNAPSHOT</main.version-->
<main.version>${main.version.raw}</main.version>

<meta.version>1.1.3</meta.version>
<uber.pom>1.0.3</uber.pom>
<iam.commons.version>1.0.0</iam.commons.version>
<mindmap.model.version>1.4.10-SNAPSHOT</mindmap.model.version>
<mindmap.model.version>1.4.10</mindmap.model.version>
<jsoup.version>1.11.3</jsoup.version>
<json.version>20180813</json.version>
<iharder.version>2.3.9</iharder.version>
Expand Down
2 changes: 1 addition & 1 deletion mind-map/scia-reto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mind-map</artifactId>
<version>1.4.10-SNAPSHOT</version>
<version>1.4.10</version>
</parent>

<artifactId>scia-reto</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ private void editTextForTopic(@Nonnull final Topic topic) {
} catch (RuntimeException ex) {
DialogProviderManager.getInstance().getDialogProvider()
.msgError(Main.getApplicationFrame(),
"Can't decode encrypted text for error! May be broken data!");
"Can't decode encrypted text for error!\nEither broken data or current JDK security policy doesn't support AES-256!");
logger.error("Can't decode encrypted note", ex);
}
}
Expand Down Expand Up @@ -1054,7 +1054,7 @@ private void editTextForTopic(@Nonnull final Topic topic) {
} catch (RuntimeException ex) {
DialogProviderManager.getInstance().getDialogProvider()
.msgError(this.getMainComponent(),
"Can't encrypt text for error! Examine log!");
"Can't encrypt text for error!\nExamine log and check JDK security policy for AES-256 support!");
logger.error("Can't encrypt note", ex);
return;
}
Expand Down

0 comments on commit 06bf0bf

Please sign in to comment.