Skip to content

Commit

Permalink
v2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed May 21, 2018
1 parent 7384205 commit 6909a86
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 39 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Change Log
----------

### [v2.6.2](https://github.com/hsz/idea-gitignore/tree/v2.6.2) (2018-05-22)

[Full Changelog](https://github.com/hsz/idea-gitignore/compare/v2.6.1...v2.6.2)

**Fixed bugs:**

- Entries using wildcard never considered as used [\#543](https://github.com/hsz/idea-gitignore/issues/543)
- IndexId ClassNotFoundException [\#534](https://github.com/hsz/idea-gitignore/issues/534)
- "Already disposed: Project" in UntrackFilesDialog [\#539](https://github.com/hsz/idea-gitignore/issues/539)
- Drop project cache from ExternalIndexableSetContributor - thanks to @denofevil [\#545](https://github.com/hsz/idea-gitignore/pull/545)


### [v2.6.1](https://github.com/hsz/idea-gitignore/tree/v2.6.1) (2018-04-13)

[Full Changelog](https://github.com/hsz/idea-gitignore/compare/v2.5.0...v2.6.1)
Expand Down
20 changes: 7 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.ignore 2.6.1
.ignore 2.6.2
=============

[![Gitter][badge-gitter-img]][badge-gitter] [![Build Status][badge-travis-img]][badge-travis]
Expand Down Expand Up @@ -128,22 +128,16 @@ Usage
Changelog
---------

### [v2.6.1](https://github.com/hsz/idea-gitignore/tree/v2.6.1) (2018-04-13)
### [v2.6.2](https://github.com/hsz/idea-gitignore/tree/v2.6.2) (2018-05-22)

[Full Changelog](https://github.com/hsz/idea-gitignore/compare/v2.5.0...v2.6.1)

**Implemented enhancements:**

- Multirow tabs for outer rules panel [\#501](https://github.com/hsz/idea-gitignore/issues/501)
[Full Changelog](https://github.com/hsz/idea-gitignore/compare/v2.6.1...v2.6.2)

**Fixed bugs:**

- The following plugins are incompatible with the current IDE build [\#530](https://github.com/hsz/idea-gitignore/issues/530)
- NullPointerException on File indexing (IgnoreFilesIndex), infinite loop of failing re-indexes - thanks to @nicity ! [\#527](https://github.com/hsz/idea-gitignore/issues/527)

**Closed issues:**

- Have you considered Open Collective? [opencollective.com/ignore](https://opencollective.com/ignore) [\#497](https://github.com/hsz/idea-gitignore/issues/497)
- Entries using wildcard never considered as used [\#543](https://github.com/hsz/idea-gitignore/issues/543)
- IndexId ClassNotFoundException [\#534](https://github.com/hsz/idea-gitignore/issues/534)
- "Already disposed: Project" in UntrackFilesDialog [\#539](https://github.com/hsz/idea-gitignore/issues/539)
- Drop project cache from ExternalIndexableSetContributor - thanks to @denofevil [\#545](https://github.com/hsz/idea-gitignore/pull/545)


[Full Changelog History](./CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runGenerators = true

pluginGroup = mobi.hsz.idea
pluginName = .ignore
pluginVersion = 2.6.1
pluginVersion = 2.6.2

publishPluginId = 7495
publishUsername = hsz
Expand Down
24 changes: 7 additions & 17 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>mobi.hsz.idea.gitignore</id>
<name>.ignore</name>
<version>2.6.1</version>
<version>2.6.2</version>
<vendor email="[email protected]" url="http://ignore.hsz.mobi">hsz</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -78,26 +78,16 @@

<change-notes><![CDATA[
<a href="https://github.com/hsz/idea-gitignore/tree/v2.6.1"><b>v2.6.1</b></a> (2018-04-13) <br/><br/>
<a href="https://github.com/hsz/idea-gitignore/compare/v2.5.0...v2.6.1"><small>Full Changelog</small></a> <br/><br/>
<i>Implemented enhancements:</i>
<ul>
<li>Multirow tabs for outer rules panel (<a href="https://github.com/hsz/idea-gitignore/issues/501">501</a>)</li>
</ul>
<a href="https://github.com/hsz/idea-gitignore/tree/v2.6.2"><b>v2.6.2</b></a> (2018-05-22) <br/><br/>
<a href="https://github.com/hsz/idea-gitignore/compare/v2.6.1...v2.6.2"><small>Full Changelog</small></a> <br/><br/>
<i>Fixed bugs:</i>
<ul>
<li>The following plugins are incompatible with the current IDE build (<a href="https://github.com/hsz/idea-gitignore/issues/530">530</a>)</li>
<li>NullPointerException on File indexing (IgnoreFilesIndex), infinite loop of failing re-indexes - thanks to @nicity ! (<a href="https://github.com/hsz/idea-gitignore/issues/527">527</a>)</li>
</ul>
<i>Closed issues:</i>
<ul>
<li>Have you considered Open Collective? <a href="https://opencollective.com/ignore">opencollective.com/ignore</a> (<a href="https://github.com/hsz/idea-gitignore/issues/497">497</a>)</li>
<li>Entries using wildcard never considered as used (<a href="https://github.com/hsz/idea-gitignore/issues/543">543</a>)</li>
<li>IndexId ClassNotFoundException (<a href="https://github.com/hsz/idea-gitignore/issues/534">534</a>)</li>
<li>"Already disposed: Project" in UntrackFilesDialog (<a href="https://github.com/hsz/idea-gitignore/issues/539">539</a>)</li>
<li>Drop project cache from ExternalIndexableSetContributor - thanks to @denofevil (<a href="https://github.com/hsz/idea-gitignore/pull/545">545</a>)</li>
</ul>
<a href="https://github.com/hsz/idea-gitignore/blob/master/CHANGELOG.md"><b>Full Changelog History</b></a>
Expand Down
14 changes: 6 additions & 8 deletions resources/messages/IgnoreBundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,11 @@ notification.untrack.content=<b>.ignore</b> plugin found some files that are tra
which are also listed in .gitignore file. <a href="#">Show details</a> <a href="#disable">Don't show</a>
notification.update.title=<b>.ignore</b> plugin updated to v{0}
notification.update.content=<br/>\
If you find my plugin helpful, <b><a href="https://www.paypal.me/hsz">Donate with PayPal</a></b><br/><br/>\
Implemented enhancements:<br/>\
- Multirow tabs for outer rules panel (#501)<br/>\
Helpful? <b><a href="https://www.paypal.me/hsz">Donate with PayPal</a> or <a href="https://opencollective.com/ignore">OpenCollective!</a></b><br/><br/>\
Fixes:<br/>\
- The following plugins are incompatible with the current IDE build (#530)<br/>\
- NullPointerException on File indexing (IgnoreFilesIndex), infinite loop of failing re-indexes - thanks to @nicity ! (#527)<br/>\
Closed:<br/>\
- Have you considered Open Collective? <a href="https://opencollective.com/ignore">opencollective.com/ignore</a> (#497)<br/>\
- Entries using wildcard never considered as used (#543)<br/>\
- IndexId ClassNotFoundException (#534)<br/>\
- "Already disposed: Project" in UntrackFilesDialog (#539)<br/>\
- Drop project cache from ExternalIndexableSetContributor - thanks to @denofevil (#545)<br/>\
<br/>\
If you find my plugin helpful, donate me using <br/><b><a href="https://www.paypal.me/hsz">Donate with PayPal</a></b>
If you find my plugin helpful, donate me using <br/><b><a href="https://www.paypal.me/hsz">Donate with PayPal</a> or <a href="https://opencollective.com/ignore">OpenCollective!</a></b>

0 comments on commit 6909a86

Please sign in to comment.