Skip to content

Commit f5cbb75

Browse files
committed
Update change-notes and description
1 parent 8d72eba commit f5cbb75

5 files changed

Lines changed: 31 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Change Log
1+
# Change Log
22

33
## Todo
44

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ task wrapper(type: Wrapper) {
6565
// Information about the plugin
6666

6767
// Plugin version number
68-
version '3.0pre14'
68+
version '3.0beta1'
6969

7070
intellij {
7171
version = '2018.1.3'
@@ -83,3 +83,7 @@ patchPluginXml {
8383
pluginDescription = htmlFixer('resources/META-INF/description.html')
8484
sinceBuild = '181'
8585
}
86+
87+
publishPlugin {
88+
channels 'beta'
89+
}
Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
<html>
2-
<i>New features and bug-fixes in version 3:</i>
2+
<i>New features and bug-fixes in version 3 (check out the
3+
<a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/blob/develop/CHANGELOG.md">ChangeLog</a> for
4+
more information):</i>
35
<br/>
46
<ul>
57
<li>Support for Mathematica source libraries</li>
6-
<li>Project wide completion</li>
7-
<li>Fix for a bug in IDEA 2018</li>
8+
<li>Complete rework of the module and library system</li>
9+
<li>Project wide auto-completion and symbol resolving</li>
10+
<li>Goto Symbol feature</li>
11+
<li>Extended navigation to all declarations of a functions</li>
12+
<li>Quick documentation for package functions with usage message</li>
813
<li>Make asterix in multi-line comments more usable. Now, the only Jetbrains API is used and no custom hacks</li>
914
<li>Fix for additional, wrong completions that come from a different project</li>
10-
<li>Fix for FullForm creator</li>
15+
<li>FullForm creator</li>
1116
</ul>
1217
</html>

resources/META-INF/description.html

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
user-friendly
1414
documentation of various features on the <a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/wiki">Wiki
1515
pages of GitHub</a>.
16-
If you want to discuss specific topics, then ping me
17-
(<a href="http://mathematica.stackexchange.com/users/187/halirutan?tab=profile">halirutan</a>) in the dedicated
18-
<a href="http://chat.stackexchange.com/rooms/8636/intellijidea-plugin-for-mathematica">chat room on stackexchange</a>.
16+
If you want to discuss specific topics or if you have any questions,
17+
you can join the <a href="https://gitter.im/Mathematica-IntelliJ/Lobby">Gitter chatroom</a>.
18+
1919
<br/>
2020
<b>Features:</b>
2121
<ul>
@@ -24,15 +24,23 @@
2424
<li>Smart completion for function options, messages and comment tags</li>
2525
<li>Coloring and resolving of Module/Block/Table/... variables</li>
2626
<li>Renaming of variables and functions</li>
27-
<li>Code folding support for localization constructs like Module, With, Block, ...
28-
<li>Quick documentation lookup for all built-in symbols and operators</li>
27+
<li>Code folding support for localization constructs like Module, With, Block, Table, and more.
28+
<li>Quick documentation lookup for all built-in symbols, operators, and your own functions</li>
2929
<li>Structured View for package definitions</li>
3030
<li>Correct display of Mathematica's <a
3131
href="https://reference.wolfram.com/language/guide/ListingOfNamedCharacters.html">named characters</a>
32-
<li>Inspections for version mismatch of symbols, possible errors through multiplicaton at linebreak, and missing
33-
commas and semicolons
32+
<li>Inspections for version mismatch of symbols, possible errors through multiplicaton at linebreak, missing
33+
commas and semicolons, and unresolved symbols
3434
<li>Autocompletion suggestions sorted by importance</li>
3535
<li>Highlighting and smart inserting of braces, brackets and parenthesis</li>
3636
<li>Quick navigation between symbol usages with Navigate - Related Symbol</li>
37+
<li>Quick navigation to the declaration of a functions</li>
38+
<li>Import of other Mathematica packages as library for completion and highlighting of external package functions
39+
</li>
40+
<li>Goto Symbol for quick navigation to a function by typing its name</li>
41+
<li>Spellcheck that already contains the dictionary of all Mathematica symbols</li>
42+
<li>Code folding of expressions and sections</li>
43+
<li>Live-Templates to create all frequently used constructs</li>
44+
<li>Surround providers that can wrap an expression with another one</li>
3745
</ul>
3846
</html>

resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<name>Mathematica Support</name>
2727
<category>Custom Language</category>
2828
<vendor url="http://mathematicaplugin.halirutan.de">Patrick Scheibe</vendor>
29-
<idea-version since-build="182"/>
29+
<idea-version since-build="181"/>
3030
<depends>com.intellij.modules.lang</depends>
3131

3232
<extensions defaultExtensionNs="com.intellij">

0 commit comments

Comments
 (0)