Skip to content

Commit a8d0ae0

Browse files
Release 0.2.0
1 parent bb02870 commit a8d0ae0

File tree

2 files changed

+35
-27
lines changed

2 files changed

+35
-27
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.2.0-SNAPSHOT
4+
version=0.2.0
55
ideaVersion=145.258.11
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: 34 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,53 +2,61 @@
22
<id>io.protostuff.protostuff-jetbrains-plugin</id>
33
<name>Protobuf Support</name>
44
<version>0.1.0</version>
5-
<vendor email="[email protected]"
6-
url="https://github.com/protostuff/protostuff-jetbrains-plugin">
7-
Kostiantyn Shchepanovskyi
8-
</vendor>
5+
<vendor email="[email protected]">Kostiantyn Shchepanovskyi</vendor>
96

107
<description><![CDATA[
11-
128
<h1>Protobuf Support</h1>
13-
<br/>
9+
<br>
1410
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin">GitHub</a> |
15-
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/issues">Issues</a>
16-
<br/>
17-
<br/>
18-
<a href="https://developers.google.com/protocol-buffers/">Google Protocol Buffers</a>
19-
support for Jetbrains products.
11+
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/issues">Issues</a> |
12+
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/wiki/Roadmap">Roadmap</a> |
13+
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/wiki/Gallery">Gallery</a>
14+
<br>
15+
<br>
16+
<a href="https://developers.google.com/protocol-buffers/">Google Protobuf</a> support for Jetbrains products.
2017
<br>
2118
<br>
2219
<b>Features:</b>
2320
<ul>
24-
<li>Syntax highlight</li>
25-
<li>Syntax validation (full proto3 support)</li>
26-
<li>Fonts & Colors configuration</li>
21+
<li>Syntax highlighting and validation (full proto3 support).</li>
22+
<li>Fonts & Colors configuration (Editor &rarr; Colors &amp; Fonts &rarr; Protobuf).</li>
23+
<li>Structure View. Activation keys: <i>Alt+7</i> and <i>Ctrl+F12</i> (popup).</li>
24+
<li>Brace matching.</li>
25+
<li>Line and block commenting using <i>Ctrl+/</i> and <i>Ctrl+Shift+/</i>.</li>
2726
</ul>
28-
<br/>
27+
<br>
2928
]]></description>
3029

3130
<change-notes><![CDATA[
3231
32+
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/releases/tag/protostuff-jetbrains-plugin-0.2.0">
33+
<b>v0.2.0</b>
34+
</a> (2016-04-16)
35+
<ul>
36+
<li>Add structure view.</li>
37+
<li>Add brace matching.</li>
38+
<li>Add commenter.</li>
39+
</ul>
40+
<br>
3341
3442
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/releases/tag/protostuff-jetbrains-plugin-0.1.1">
3543
<b>v0.1.1</b>
3644
</a> (2016-04-08)
37-
38-
<br/>
39-
<br/>
40-
41-
<i>Enhancements:</i>
42-
4345
<ul>
44-
<li>Add support for new keywords: "stream" and "reserved"</li>
45-
<li>Enable syntax highlight for embedded code blocks in Markdown editor</li>
46+
<li>Add support for new keywords: "stream" and "reserved".</li>
47+
<li>Enable syntax highlighting for embedded code blocks in Markdown editor.</li>
4648
</ul>
49+
<br>
4750
51+
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/releases/tag/protostuff-jetbrains-plugin-0.1.0">
52+
<b>v0.1.0</b>
53+
</a> (2016-04-03)
54+
First public release. Supports syntax highlighting for proto2/proto3 and basic validations.
55+
<br>
56+
<br>
4857
<a href="https://github.com/protostuff/protostuff-jetbrains-plugin/releases">
4958
<b>Full Changelog History</b>
5059
</a>
51-
5260
]]>
5361
</change-notes>
5462

@@ -60,6 +68,7 @@
6068
on how to target different products -->
6169
<depends>com.intellij.modules.lang</depends>
6270

71+
6372
<project-components>
6473
<component>
6574
<implementation-class>io.protostuff.jetbrains.plugin.ProtostuffPluginController</implementation-class>
@@ -89,5 +98,4 @@
8998
<!-- Add your actions here -->
9099
</actions>
91100

92-
93-
</idea-plugin>
101+
</idea-plugin>

0 commit comments

Comments
 (0)