11plugins {
22 id ' java'
3- id ' org.jetbrains.kotlin.jvm' version ' 1.3.61 '
4- id ' org.jetbrains.intellij' version ' 0.4.21 '
3+ id ' org.jetbrains.kotlin.jvm' version ' 1.5.20 '
4+ id " org.jetbrains.intellij" version " 1.1.4 "
55}
66
77group ' com.andrewbrookins.idea.wrap'
@@ -14,16 +14,88 @@ repositories {
1414}
1515
1616dependencies {
17- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
17+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
1818}
1919
2020// See https://github.com/JetBrains/gradle-intellij-plugin/
2121intellij {
22- version ' 2020.2'
23- updateSinceUntilBuild false
22+ version = ' 2021.2'
2423}
24+
2525patchPluginXml {
26- changeNotes """
27- Add change notes here.<br>
28- <em>most HTML tags may be used</em>"""
26+ sinceBuild = " 141"
27+ changeNotes = """
28+ <b>1.5.0</b>
29+ <ul>
30+ <li>Fix plugin XML compatibility with newer Intellij versions.</li>
31+ <li>Special thanks to <b>Edgars Irmejs</b> and <b>Aleksei Kniazev</b> for fixes!</li>
32+ </ul>
33+
34+ <b>1.4.0</b>
35+ <ul>
36+ <li>Add a new action: Wrap Paragraph to Column.</li>
37+ </ul>
38+
39+ <b>1.3.2</b>
40+ <ul>
41+ <li>Add a keyboard shortcut for Windows.</li>
42+ </ul>
43+
44+ <b>1.3.1</b>
45+ <ul>
46+ <li>Fix "kotlin/jvm/internal/Intrinsics" error found in Intellij 14.1.x-based editors.</li>
47+ </ul>
48+
49+ <b>1.3.0</b>
50+ <ul>
51+ <li>New feature: Use an optional "minimum raggedness" algorithm. You can enable this in Tools -> Wrap to Column.</li>
52+ </ul>
53+
54+ <b>1.2.0</b>
55+ <ul>
56+ <li>Reflow text containing tabs based on the configured tab width setting.</li>
57+ </ul>
58+
59+ <b>1.1.0</b>
60+ <ul>
61+ <li>New feature: Set a column width override in Settings: Tools -> Wrap to Column. Overrides style and global column width settings.</li>
62+ </ul>
63+
64+ <b>1.0.1</b>
65+ <ul>
66+ <li>Fix a bug in handling continuations of C-style multi-line comments</li>
67+ </ul>
68+
69+ <b>1.0</b>
70+ <ul>
71+ <li>Use the language-specific right margin setting if one is configured</li>
72+ </ul>
73+
74+ <b>0.1.4</b>
75+ <ul>
76+ <li>Strip trailing spaces before wrapping</li>
77+ <li>Preserve paragraphs within comments</li>
78+ </ul>
79+
80+ <b>0.1.3</b>
81+ <ul>
82+ <li>Stop adding an erroneous leading space if the first line of the selection is a newline/carriage return.<li>
83+ <li>Detect the period "." as a bullet point indentation.</li>
84+ </ul>
85+
86+ <b>0.1.2</b>
87+ <ul>
88+ <li>Fix plugin for Windows users</l>
89+ </ul>
90+
91+ <b>0.1.1</b>
92+ <ul>
93+ <li>Better support for multi-line C-style comments.</li>
94+ </ul>
95+
96+ <b>0.1</b>
97+ <ul>
98+ <li>Initial commit.</li>
99+ </ul>
100+ """
29101}
0 commit comments