Skip to content

Commit d0a8b7f

Browse files
committed
[INTERNAL] prepare release 1.8.1
1 parent 5810ec3 commit d0a8b7f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://www.jetbrains.com/intellij-repository/snapshots
44

55
name='CSV Plugin'
6-
pluginVersion=1.8.0
6+
pluginVersion=1.8.1
77
javaVersion=1.8
88
javaTargetVersion=1.8
99
downloadIntellijSources=false

intellij-csv-validator.iml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id="intellij-csv-validator" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="net.seesharpsoft.intellij.plugins" external.system.module.version="1.8.0" relativePaths="true" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="intellij-csv-validator" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="net.seesharpsoft.intellij.plugins" external.system.module.version="1.8.1" relativePaths="true" type="JAVA_MODULE" version="4">
33
<component name="NewModuleRootManager" inherit-compiler-output="true">
44
<exclude-output />
55
<content url="file://$MODULE_DIR$">

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ public void customizeSettings(@NotNull CodeStyleSettingsCustomizable consumer, @
5858
"Tabularize (ignores Trimming settings)");
5959
consumer.showCustomOption(CsvCodeStyleSettings.class,
6060
"ENABLE_WIDE_CHARACTER_DETECTION",
61-
"East Asian fullwidth character support (lowers performance)",
61+
"East Asian charset support (slower!)",
6262
"Tabularize (ignores Trimming settings)");
6363
consumer.showCustomOption(CsvCodeStyleSettings.class,
6464
"TREAT_AMBIGUOUS_CHARACTERS_AS_WIDE",
65-
"EA fullwidth ambiguous characters treated as double wide",
65+
"Double wide EA ambiguous characters",
6666
"Tabularize (ignores Trimming settings)");
6767
}
6868

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

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<change-notes><![CDATA[
4040
<b>NEW:</b> Custom 'Wrapping' settings<br>
4141
<b>NEW:</b> Column highlighter takes whitespaces into account<br>
42+
<b>NEW:</b> East Asian full-width character support for 'Tabularize' (optional) - disabled by default due to lower performance<br>
4243
<b>CHANGE:</b> Column highlighting only happens on selection<br>
4344
<b>FIX:</b> CSV column info tooltip trumps spellchecker tooltip (but keeps the visualization of a typo)<br>
4445
<b>FIX:</b> Show tooltip even when caret is at the last position withing the CSV file<br>

0 commit comments

Comments
 (0)