Skip to content

Commit a72d5a9

Browse files
authored
Merge pull request #44 from abrookins/edgarsi/master
More updates
2 parents 31a98a8 + 052beb3 commit a72d5a9

File tree

3 files changed

+88
-10
lines changed

3 files changed

+88
-10
lines changed

build.gradle

Lines changed: 80 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
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

77
group 'com.andrewbrookins.idea.wrap'
@@ -14,16 +14,88 @@ repositories {
1414
}
1515

1616
dependencies {
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/
2121
intellij {
22-
version '2020.2'
23-
updateSinceUntilBuild false
22+
version = '2021.2'
2423
}
24+
2525
patchPluginXml {
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
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Thu Jan 16 10:04:33 EET 2020
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>com.andrewbrookins.wrap_to_column</id>
33
<name>Wrap to Column</name>
4-
<version>1.4.0</version>
4+
<version>1.5.0</version>
55
<vendor email="a@andrewbrookins.com" url="http://andrewbrookins.com">Andrew Brookins</vendor>
66

77
<description><![CDATA[
@@ -35,6 +35,12 @@
3535
]]></description>
3636

3737
<change-notes><![CDATA[
38+
<b>1.5.0</b>
39+
<ul>
40+
<li>Fix plugin XML compatibility with newer Intellij versions.</li>
41+
<li>Special thanks to <b>Edgars Irmejs</b> and <b>Aleksei Kniazev</b> for fixes!</li>
42+
</ul>
43+
3844
<b>1.4.0</b>
3945
<ul>
4046
<li>Add a new action: Wrap Paragraph to Column.</li>

0 commit comments

Comments
 (0)