diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b91d7a73..db6e0541 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,10 +6,11 @@ After that, create a pull request (PR). ### Some guidance for a successful pull request -- Reference the issue in your PR, hence do not open a PR without a corresponding issue +- Open PR for master branch only +- Reference an issue in your PR, hence do not open a PR without a corresponding issue - Follow the single-purpose principle: Only one fix or feature in one PR - Write tests for newly introduced features or fixes -- Please follow/apply a proper code style that fits to the existing one +- Apply a proper code style that fits to the existing one - Do not change the plugin metadata information (e.g. name, version, description, etc.) in _src/main/resources/META-INF/plugin.xml_ ### Compiling the source code diff --git a/README.md b/README.md index cdb3f206..796c2615 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ +[![Plugin version](https://img.shields.io/jetbrains/plugin/d/10037-csv-plugin.svg)](https://plugins.jetbrains.com/plugin/10037-csv-plugin) [![Build Status](https://travis-ci.org/SeeSharpSoft/intellij-csv-validator.svg?branch=master)](https://travis-ci.org/SeeSharpSoft/intellij-csv-validator) [![Coverage Status](https://coveralls.io/repos/github/SeeSharpSoft/intellij-csv-validator/badge.svg?branch=master)](https://coveralls.io/github/SeeSharpSoft/intellij-csv-validator?branch=master) + # Lightweight CSV Plugin for JetBrains IDE family Compatible with _IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion Gogland DataGrip Rider MPS Android Studio_ - __2016.3.2 and newer__ diff --git a/gradle.properties b/gradle.properties index d32e887a..15d0bf74 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ # https://www.jetbrains.com/intellij-repository/snapshots name='CSV Plugin' -pluginVersion=1.6.0 +pluginVersion=1.6.1 javaVersion=1.8 javaTargetVersion=1.8 downloadIntellijSources=false diff --git a/intellij-csv-validator.iml b/intellij-csv-validator.iml index 91b77bed..1949baed 100644 --- a/intellij-csv-validator.iml +++ b/intellij-csv-validator.iml @@ -1,5 +1,5 @@ - + diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index aadce5af..b4f6d5be 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -27,7 +27,7 @@ ]]> NEW: TSV file support
+ NEW: TSV file support (new icons)
TSV files a recognized as such but treated as a variant of CSV files, the same syntax highlighting and code style settings are applied.
NEW: tab (↹) and pipe (|) as separators added
NEW: spellchecker enabled
diff --git a/src/main/resources/media/icons/csv-icon.AUTHOR b/src/main/resources/media/icons/csv-icon.AUTHOR index fb24b5ab..52ad544d 100644 --- a/src/main/resources/media/icons/csv-icon.AUTHOR +++ b/src/main/resources/media/icons/csv-icon.AUTHOR @@ -1 +1,2 @@ -Icon by Bdate Kaspar/Franziska Sponsel \ No newline at end of file +Martin Sommer +https://github.com/SeeSharpSoft/intellij-csv-validator \ No newline at end of file diff --git a/src/main/resources/media/icons/csv-icon.png b/src/main/resources/media/icons/csv-icon.png index 78fb3727..6c447bf2 100644 Binary files a/src/main/resources/media/icons/csv-icon.png and b/src/main/resources/media/icons/csv-icon.png differ diff --git a/src/main/resources/media/icons/tsv-icon.AUTHOR b/src/main/resources/media/icons/tsv-icon.AUTHOR index b381b684..52ad544d 100644 --- a/src/main/resources/media/icons/tsv-icon.AUTHOR +++ b/src/main/resources/media/icons/tsv-icon.AUTHOR @@ -1 +1,2 @@ -TSV by Matthew Weatherall from the Noun Project \ No newline at end of file +Martin Sommer +https://github.com/SeeSharpSoft/intellij-csv-validator \ No newline at end of file diff --git a/src/main/resources/media/icons/tsv-icon.png b/src/main/resources/media/icons/tsv-icon.png index 68e27382..49114c5a 100644 Binary files a/src/main/resources/media/icons/tsv-icon.png and b/src/main/resources/media/icons/tsv-icon.png differ