Skip to content

Commit 3d5eb93

Browse files
Release 0.12.0
1 parent a24c2f7 commit 3d5eb93

File tree

2 files changed

+10
-46
lines changed

2 files changed

+10
-46
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Available idea versions:
22
# https://www.jetbrains.com/intellij-repository/releases
33
# https://www.jetbrains.com/intellij-repository/snapshots
4-
version=0.11.0
4+
version=0.12.0
55
ideaVersion=2018.2.1
66
# https://intellij-support.jetbrains.com/hc/en-us/articles/206544879-Selecting-the-JDK-version-the-IDE-will-run-under
77
# Java 8 is required to run IntelliJ IDEA starting from version 16

src/main/resources/META-INF/plugin.xml

Lines changed: 9 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>io.protostuff.protostuff-jetbrains-plugin</id>
33
<name>Protobuf Support</name>
4-
<version>0.11.0</version>
4+
<version>0.12.0</version>
55
<vendor email="[email protected]">Kostiantyn Shchepanovskyi</vendor>
66

77
<description><![CDATA[
@@ -22,6 +22,7 @@
2222
<li>Code formatting.</li>
2323
<li>Navigation to message, enum or service by name (Ctrl+N)</li>
2424
<li>Rename refactoring (files, messages, enums and fields).</li>
25+
<li>Spell checking.</li>
2526
</ul>
2627
<br>
2728
<a href="https://github.com/protostuff/protobuf-jetbrains-plugin/wiki/Roadmap">Roadmap</a>
@@ -32,58 +33,21 @@
3233

3334
<change-notes><![CDATA[
3435
35-
<a href="https://github.com/protostuff/protobuf-jetbrains-plugin/releases/tag/v0.11.0">
36-
<b>v0.11.0</b>
37-
</a> (2018-09-03)
36+
<a href="https://github.com/protostuff/protobuf-jetbrains-plugin/releases/tag/v0.12.0">
37+
<b>v0.12.0</b>
38+
</a> (2018-09-20)
3839
<br>
3940
<br>
40-
This release contains multiple fixes and improvements:
41+
This release contains multiple improvements:
4142
<ul>
4243
<li>
43-
Change IDE compatibility to 2018.2 and higher versions.
44+
Add spell checking support.
4445
</li>
4546
<li>
46-
Bundle full protobuf sources archive with plugin.
47-
Following imports now will be resolved automatically:
48-
<ul>
49-
<li>google/protobuf/empty.proto
50-
<li>google/protobuf/api.proto
51-
<li>google/protobuf/wrappers.proto
52-
<li>google/protobuf/descriptor.proto
53-
<li>google/protobuf/timestamp.proto
54-
<li>google/protobuf/type.proto
55-
<li>google/protobuf/source_context.proto
56-
<li>google/protobuf/struct.proto
57-
<li>google/protobuf/duration.proto
58-
<li>google/protobuf/field_mask.proto
59-
<li>google/protobuf/any.proto
60-
<li>google/protobuf/compiler/plugin.proto
61-
</ul>
47+
Add support for custom region foolding.
6248
</li>
6349
<li>
64-
Add support for `php_namespace` option.
65-
</li>
66-
<li>
67-
Add support for `json_name` option.
68-
</li>
69-
<li>
70-
Improve imports resolution.
71-
Plugin tries to resolve imports relative to source file's location using following rules:
72-
<ol>
73-
<li> Try to look in the same folder where source file is.
74-
<li> Try to look from parent folder.
75-
<li> Repeat step 2 until reference is resolved or there's no parent folder anymore.
76-
</ol>
77-
Max nesting level is 10.
78-
</li>
79-
<li>
80-
Add support for `reserved` keyword inside of enums.
81-
</li>
82-
<li>
83-
Fix NullPointerException on reset plugin settings without open project.
84-
</li>
85-
<li>
86-
Fix resolving references to types defined inside of extend block.
50+
Add support for setting custom include paths for new projects (global settings).
8751
</li>
8852
</ul>
8953

0 commit comments

Comments
 (0)