Skip to content

Commit aaf2775

Browse files
committed
release 1.4.2
1 parent 8e45da1 commit aaf2775

File tree

13 files changed

+30
-45
lines changed

13 files changed

+30
-45
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
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.
1313

1414
# Changelog
15-
__1.4.2 (UNDER DEVELOPMENT)__
15+
__1.4.2 (25-feb-2018)__
16+
- SR: [#38](https://github.com/raydac/netbeans-mmd-plugin/issues/38) added option to not show hidden files and folders in proect tree
1617
- ALL: Added paper render quality option
1718
- ALL: [#36](https://github.com/raydac/netbeans-mmd-plugin/issues/36) fixed line break processing in topic title editor under Mac OS
1819
- SR: [#37](https://github.com/raydac/netbeans-mmd-plugin/issues/37) fixed start of SciaReto under Oracle JDK-9 in MacOS

changelog.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
1.4.2 (under development)
1+
1.4.2 (25-feb-2018)
2+
- SR: [#38](https://github.com/raydac/netbeans-mmd-plugin/issues/38) added option to not show hidden files and folders in proect tree
23
- ALL: Added paper render quality option
34
- ALL: [#36](https://github.com/raydac/netbeans-mmd-plugin/issues/36) fixed line break processing in topic title editor under Mac OS
45
- SR: [#37](https://github.com/raydac/netbeans-mmd-plugin/issues/37) fixed start of SciaReto under Oracle JDK-9 in MacOS

mind-map/.projectKnowledge/Main.mmd

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,6 @@ Mind Map generated by NB MindMap plugin
1616
- LINK
1717
<pre>https://github.com/raydac/netbeans-mmd-plugin/issues</pre>
1818

19-
### focus is saved during undo
20-
> fillColor=`#FF6666`
21-
22-
23-
### on macosx the calling window shown over new modal window
24-
> fillColor=`#FF6666`
25-
26-
27-
#### keyboard shortcut in options
28-
> fillColor=`#FF6666`
29-
30-
31-
#### color button
32-
> fillColor=`#FF6666`,mmd.emoticon=`tick`
33-
34-
35-
### on macosx it lost focus but make operation with all previously selected itrems
36-
> fillColor=`#FF6666`
37-
38-
39-
#### non\-edited version\!
40-
> fillColor=`#FF6666`
41-
42-
4319
## To\-Do
4420
> fillColor=`#FDE247`,mmd.emoticon=`role`
4521

@@ -73,7 +49,7 @@ Mind Map generated by NB MindMap plugin
7349

7450

7551
#### UI
76-
> fillColor=`#EC98FF`
52+
> collapsed=`true`,fillColor=`#EC98FF`
7753

7854

7955
##### SCIARETO: Make tabs reorderable

mind-map/idea-mindmap/build.gradle

Lines changed: 1 addition & 1 deletion
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.2-SNAPSHOT"
12+
version = project.hasProperty('mm_plugin_version') ? project.getProperty('mm_plugin_version') : "1.4.2"
1313

1414
intellij {
1515
version 'IC-139.1803.20'

mind-map/idea-mindmap/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.2-SNAPSHOT</version>
9-
<relativePath>../pom.xml</relativePath>
8+
<version>1.4.2</version>
109
</parent>
1110

1211
<artifactId>idea-mindmap</artifactId>

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

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<idea-plugin version="2">
33
<id>nb-mind-map-idea</id>
44
<name>IDEA Mind Map</name>
5-
<version>1.4.1</version>
5+
<version>1.4.2</version>
66
<vendor url="https://www.igormaznitsa.com">Igor Maznitsa</vendor>
77

88
<category>Knowledge management</category>
@@ -18,6 +18,20 @@
1818
]]></description>
1919

2020
<change-notes><![CDATA[
21+
<p>1.4.2 (25-feb-2018)</p>
22+
<ul>
23+
<li>Added paper render quality option</li>
24+
<li>#36 fixed line break processing in topic title editor under Mac OS</li>
25+
<li>#35 added `Use Project base folder as relative path root` option to facet (by default it uses Module folder)</li>
26+
<li>#34 added logic to interpret zero-length MMD file as an empty mind map file with root.</li>
27+
<li>#33 added configuration flag to trim entered topic text, "Trim topic text before set`"</li>
28+
<li>added exporter for AsciiDoc</li>
29+
<li>#31 Imrpoved FreeMind compatibility to support 1.0.1 FreeMind format</li>
30+
<li>#30 Remember setting in "add file"</li>
31+
<li>#29 Remember per session last used directory for files</li>
32+
<li>Added standard text pop-up menu into text fields of both File dialog and URI dialog.</li>
33+
<li>Added select mode with pressed SHIFT</li>
34+
</ul>
2135
<p>1.4.1 (30-sep-2017)</p>
2236
<ul>
2337
<li>Removed use of javax.xml.bind.DatatypeConverter to make compatible with Java 9</li>

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
<parent>
55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>mind-map</artifactId>
7-
<version>1.4.2-SNAPSHOT</version>
8-
<relativePath>../pom.xml</relativePath>
7+
<version>1.4.2</version>
98
</parent>
109

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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.2-SNAPSHOT</version>
9-
<relativePath>../pom.xml</relativePath>
8+
<version>1.4.2</version>
109
</parent>
1110

1211
<groupId>com.igormaznitsa</groupId>

mind-map/mind-map-plugin-archetype/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>mind-map</artifactId>
9-
<version>1.4.2-SNAPSHOT</version>
10-
<relativePath>../pom.xml</relativePath>
9+
<version>1.4.2</version>
1110
</parent>
1211

1312
<artifactId>mind-map-plugin</artifactId>

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
<parent>
55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>mind-map</artifactId>
7-
<version>1.4.2-SNAPSHOT</version>
8-
<relativePath>../pom.xml</relativePath>
7+
<version>1.4.2</version>
98
</parent>
109

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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.2-SNAPSHOT</version>
9-
<relativePath>../pom.xml</relativePath>
8+
<version>1.4.2</version>
109
</parent>
1110

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

mind-map/pom.xml

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

99
<inceptionYear>2015</inceptionYear>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<main.version.raw>1.4.2</main.version.raw>
14-
<main.version>${main.version.raw}-SNAPSHOT</main.version>
14+
<main.version>${main.version.raw}</main.version>
1515
<meta.version>1.1.2</meta.version>
1616
<uber.pom>1.0.1</uber.pom>
1717
<iam.commons.version>1.0.0</iam.commons.version>

mind-map/scia-reto/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mind-map</artifactId>
8-
<version>1.4.2-SNAPSHOT</version>
9-
<relativePath>../pom.xml</relativePath>
8+
<version>1.4.2</version>
109
</parent>
1110

1211
<artifactId>scia-reto</artifactId>

0 commit comments

Comments
 (0)