Skip to content

Commit 6447db9

Browse files
committed
[INTERNAL] rebase
1 parent 8a4d035 commit 6447db9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
NEW: improved font handling in table editor #122
55
FIX: proper font handling in balloon tooltips
66

7+
NOTE: IDE versions older than 2017.3.* are no longer supported!
8+
79
2.7.1
810
Sep 26, 2019
911

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jacocoTestReport {
2424
}
2525

2626
group 'net.seesharpsoft.intellij.plugins'
27-
version '2.7.1'
27+
version '2.8.0'
2828

2929
apply plugin: 'java'
3030
sourceCompatibility = javaVersion
@@ -71,7 +71,7 @@ idea {
7171
apply plugin: 'org.jetbrains.intellij'
7272
intellij {
7373
// IDE version - https://www.jetbrains.com/intellij-repository/releases
74-
version = System.getenv().getOrDefault('IDEA_VERSION', 'IC-192.6817.14')
74+
version = System.getenv().getOrDefault('IDEA_VERSION', 'IC-191.5701.16')
7575
pluginName = 'CSV Plugin'
7676
instrumentCode = true
7777
updateSinceUntilBuild = false

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,33 @@
3939
<hr /><br>
4040
<span style="color: #555555">
4141
<b>IntelliJ IDEA Ultimate/PhpStorm/DataGrip/etc.:</b> The plugin is fully compatible with the <em>'Edit as Table...'</em> functionality.<br><br>
42-
In IDE releases prior v2017.3, the shortcut in the editor context menu becomes invisible when using this plugin. However, the option can still be accessed via Toolbar -> Edit -> <em>'Edit as Table...'</em>.
4342
</span>
4443
]]></description>
4544

4645
<change-notes><![CDATA[
4746
<pre style="font-family: sans-serif">
4847
NEW: improved font handling in table editor #122
4948
FIX: proper font handling in balloon tooltips
49+
50+
NOTE: IDE versions prior to 2017.3.* are no longer supported!
5051
</pre>
5152
]]>
5253
</change-notes>
5354

5455
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
5556
<idea-version since-build="173.2099.1" />
57+
<!-- <idea-version since-build="192" until-build="192.*" />-->
5658

5759
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
5860
on how to target different products -->
5961
<depends>com.intellij.modules.lang</depends>
6062

6163
<extensions defaultExtensionNs="com.intellij">
64+
<!-- required for 192.* -->
65+
<!-- <fileType name="FileType_CSV" implementationClass="net.seesharpsoft.intellij.plugins.csv.CsvFileType" extensions="csv"/>-->
66+
<!-- <fileType name="FileType_TSV" implementationClass="net.seesharpsoft.intellij.plugins.tsv.TsvFileType" extensions="tsv;tab"/>-->
67+
<!-- <fileType name="FileType_PSV" implementationClass="net.seesharpsoft.intellij.plugins.psv.PsvFileType" extensions="psv"/>-->
68+
6269
<fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.csv.CsvFileTypeFactory"/>
6370
<fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.tsv.TsvFileTypeFactory"/>
6471
<fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.psv.PsvFileTypeFactory"/>

0 commit comments

Comments
 (0)