Skip to content

Commit

Permalink
removed btc
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Aug 25, 2017
1 parent 03b89af commit afb19f6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 23 deletions.
4 changes: 1 addition & 3 deletions README.md
Expand Up @@ -3,7 +3,7 @@

[ignore.hsz.mobi][website]

[![Gitter][badge-gitter-img]][badge-gitter] [![Build Status][badge-travis-img]][badge-travis] [![Donate][badge-paypal-img]][badge-paypal] [![Donate][badge-bitcoin-img]][badge-bitcoin]
[![Gitter][badge-gitter-img]][badge-gitter] [![Build Status][badge-travis-img]][badge-travis] [![Donate][badge-paypal-img]][badge-paypal]

[![Version](http://phpstorm.espend.de/badge/7495/version)](https://plugins.jetbrains.com/plugin/7495)
[![Downloads](http://phpstorm.espend.de/badge/7495/downloads)](https://plugins.jetbrains.com/plugin/7495)
Expand Down Expand Up @@ -215,5 +215,3 @@ Copyright (c) 2017 hsz Jakub Chrzanowski. See the [LICENSE](./LICENSE) file for
[badge-coveralls]: https://coveralls.io/github/hsz/idea-gitignore?branch=master
[badge-paypal-img]: https://img.shields.io/badge/donate-paypal-yellow.svg
[badge-paypal]: https://www.paypal.me/hsz
[badge-bitcoin-img]: https://img.shields.io/badge/donate-bitcoin-yellow.svg
[badge-bitcoin]: https://blockchain.info/address/1BUbqKrUBmGGSnMybzGCsJyAWJbh4CcwE1
3 changes: 0 additions & 3 deletions docs/index.html
Expand Up @@ -24,9 +24,6 @@
<a class="item" href="https://www.paypal.me/hsz" data-title="Donate my work with PayPal">
<i class="paypal icon"></i>
</a>
<a class="item" href="https://blockchain.info/address/1BUbqKrUBmGGSnMybzGCsJyAWJbh4CcwE1" data-title="Donate my work with Bitcoin">
<i class="bitcoin icon"></i>
</a>
</div>
</div>
</div>
Expand Down
3 changes: 0 additions & 3 deletions docs/scss/style.scss
Expand Up @@ -29,9 +29,6 @@ body {
.paypal {
color: #009cde;
}
.bitcoin {
color: #ffd900;
}
}
}

Expand Down
5 changes: 2 additions & 3 deletions resources/META-INF/plugin.xml
Expand Up @@ -10,9 +10,8 @@
<a href="http://ignore.hsz.mobi">Website</a> |
<a href="https://github.com/hsz/idea-gitignore">GitHub</a> |
<a href="https://github.com/hsz/idea-gitignore/issues">Issues</a> | Donate (
<a href="https://www.paypal.me/hsz">PayPal</a> or
<a href="https://blockchain.info/address/1BUbqKrUBmGGSnMybzGCsJyAWJbh4CcwE1">BTC</a> )
<a href="https://github.com/hsz/idea-gitignore/issues">Issues</a> |
<a href="https://www.paypal.me/hsz">Donate with PayPal</a>
<br/>
<br/>
Expand Down
8 changes: 2 additions & 6 deletions resources/messages/IgnoreBundle.properties
Expand Up @@ -153,9 +153,7 @@ 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, donate me using <br/><b>\
<a href="https://www.paypal.me/hsz">PayPal</a> or \
<a href="https://blockchain.info/address/1BUbqKrUBmGGSnMybzGCsJyAWJbh4CcwE1">BTC</a></b><br/><br/>\
If you find my plugin helpful, <b><a href="https://www.paypal.me/hsz">Donate with PayPal</a></b><br/><br/>\
Features:<br/>\
- <b>Migration to the native IDE indexing</b><br/>\
- EAP repository channel<br/>\
Expand All @@ -171,6 +169,4 @@ Fixes:<br/>\
- NoClassDefFoundError VcsRepositoryManager (#406)<br/>\
- "Outer" ignore rules include extraneous files (#401)<br/>\
<br/>\
If you find my plugin helpful, donate me using <br/><b>\
<a href="https://www.paypal.me/hsz">PayPal</a> or \
<a href="https://blockchain.info/address/1BUbqKrUBmGGSnMybzGCsJyAWJbh4CcwE1">BTC</a></b>
If you find my plugin helpful, donate me using <br/><b><a href="https://www.paypal.me/hsz">Donate with PayPal</a></b>
6 changes: 1 addition & 5 deletions src/mobi/hsz/idea/gitignore/ui/IgnoreSettingsPanel.java
Expand Up @@ -165,13 +165,9 @@ private void createUIComponents() {
donatePanel.setBorder(new EmptyBorder(10, 0, 10, 0));
donatePanel.add(new JBLabel(IgnoreBundle.message("settings.general.donate")), BorderLayout.WEST);
donatePanel.add(createLink(
"PayPal",
"Donate with PayPal",
"https://www.paypal.me/hsz"
), BorderLayout.CENTER);
donatePanel.add(createLink(
"BTC",
"https://blockchain.info/address/1BUbqKrUBmGGSnMybzGCsJyAWJbh4CcwE1"
), BorderLayout.EAST);
}

/**
Expand Down

0 comments on commit afb19f6

Please sign in to comment.