Skip to content

Commit cec5ca9

Browse files
authored
Merge pull request #301 from SeeSharpSoft/master
Release 2.17.1
2 parents 1b9dd69 + d25fa80 commit cec5ca9

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
2.17.1
2+
Jun 30, 2021
3+
4+
FIX: Plugin not showing column at caret Ctr+F1 #300
5+
FIX: Past few versions of this plugin don't show colors #298
6+
17
2.17.0
2-
Jun 20, 2021
8+
Jun 21, 2021
39

410
NEW: Plugin name change: CSV
511
FIX: Null pointer when using csv rendering in Markdown documentation #292

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jacocoTestReport {
2828
}
2929

3030
group 'net.seesharpsoft.intellij.plugins'
31-
version '2.17.0'
31+
version '2.17.1'
3232

3333
apply plugin: 'java'
3434
project.sourceCompatibility = JavaVersion.VERSION_11

src/main/java/net/seesharpsoft/intellij/plugins/csv/editor/CsvAnnotator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class CsvAnnotator implements Annotator {
2727
protected static final Key<Boolean> SHOW_INFO_BALLOON_KEY = Key.create("CSV_PLUGIN_SHOW_INFO_BALLOON");
2828

2929
public static final HighlightSeverity CSV_COLUMN_INFO_SEVERITY =
30-
new HighlightSeverity("CSV_COLUMN_INFO_SEVERITY", INFORMATION.myVal - 1);
30+
new HighlightSeverity("CSV_COLUMN_INFO_SEVERITY", INFORMATION.myVal);
3131

3232
@Override
3333
public void annotate(@NotNull final PsiElement element, @NotNull final AnnotationHolder holder) {

src/main/java/net/seesharpsoft/intellij/plugins/csv/settings/CsvColorSettings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class CsvColorSettings implements ColorSettingsPage {
4040

4141
COLUMN_COLORING_ATTRIBUTES = new ArrayList<>();
4242
for (int i = 0; i < MAX_COLUMN_COLORING_COLORS; ++i) {
43-
TextAttributesKey textAttributesKey = createTextAttributesKey(String.format("CSV_PLUGIN_COLUMN_COLORING_ATTRIBUTE_%d", i + 1), CsvSyntaxHighlighter.TEXT);
43+
TextAttributesKey textAttributesKey = createTextAttributesKey(String.format("CSV_PLUGIN_COLUMN_COLORING_ATTRIBUTE_%d", i), CsvSyntaxHighlighter.TEXT);
4444
COLUMN_COLORING_ATTRIBUTES.add(textAttributesKey);
4545
attributesDescriptors.add(new AttributesDescriptor(String.format("Column Color %d", i + 1), textAttributesKey));
4646
}

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

+2-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@
5050

5151
<change-notes><![CDATA[
5252
<pre style="font-family: sans-serif">
53-
NEW: Plugin name change: CSV
54-
FIX: Null pointer when using csv rendering in Markdown documentation #292
55-
FIX: NullPointerException on startup #295
53+
FIX: Plugin not showing column at caret Ctr+F1 #300
54+
FIX: Past few versions of this plugin don't show colors #298
5655
</pre>
5756
]]>
5857
</change-notes>

0 commit comments

Comments
 (0)