diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c0cd5d6..af15b151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## [v1.5](https://github.com/hsz/idea-gitignore/tree/v1.5) (2016-06-13) + +[Full Changelog](https://github.com/hsz/idea-gitignore/compare/v1.4.1...v1.5) + +**Implemented enhancements:** + +- Create user templates with existing ignore entries +- Favorite templates feature [\#236](https://github.com/hsz/idea-gitignore/issues/236) +- Generate without comments and empty lines [\#229](https://github.com/hsz/idea-gitignore/issues/229) + +**Fixed bugs:** + +- NoSuchMethodError on ContainerUtil.notNullize [\#232](https://github.com/hsz/idea-gitignore/issues/232) +- Refactoring of the external executable process [\#233](https://github.com/hsz/idea-gitignore/issues/233) + ## [v1.4.1](https://github.com/hsz/idea-gitignore/tree/v1.4.1) (2016-05-24) [Full Changelog](https://github.com/hsz/idea-gitignore/compare/v1.3.3...v1.4.1) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3c36e0c9..fd57a8d3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,6 +20,7 @@ Author **Contributors** - [**@zolotov** Alexander Zolotov](https://github.com/zolotov) +- [**@76200** Bartłomiej Czyż](https://github.com/76200) - [**@bedla** Ivo Šmíd](https://github.com/bedla) - [**@danpfe**](https://github.com/danpfe) diff --git a/README.md b/README.md index 70239fad..aa83c90d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -.ignore [![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] +.ignore v1.5 [![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] ================== @@ -99,30 +99,20 @@ Usage Changelog --------- -## [v1.4.1](https://github.com/hsz/idea-gitignore/tree/v1.4.1) (2016-05-24) +## [v1.5](https://github.com/hsz/idea-gitignore/tree/v1.5) (2016-06-13) -[Full Changelog](https://github.com/hsz/idea-gitignore/compare/v1.3.3...v1.4.1) +[Full Changelog](https://github.com/hsz/idea-gitignore/compare/v1.4.1...v1.5) **Implemented enhancements:** -- Add Unversioned Files to .gitignore (Git) [\#124](https://github.com/hsz/idea-gitignore/issues/124) -- Add to 'exclude' (Git) [\#133](https://github.com/hsz/idea-gitignore/issues/133) -- Exclude file preview (Git) [\#132](https://github.com/hsz/idea-gitignore/issues/132) -- Allow user to specify position of appended entries [\#216](https://github.com/hsz/idea-gitignore/issues/216) -- JetPack (.jpmignore) support [\#215](https://github.com/hsz/idea-gitignore/issues/215) +- Create user templates with existing ignore entries +- Favorite templates feature [\#236](https://github.com/hsz/idea-gitignore/issues/236) +- Generate without comments and empty lines [\#229](https://github.com/hsz/idea-gitignore/issues/229) **Fixed bugs:** -- NoSuchMethodError in IDEA 2016.2 EAP [\#225](https://github.com/hsz/idea-gitignore/issues/225) -- ConcurrentModificationException [\#221](https://github.com/hsz/idea-gitignore/issues/221) -- ClassCastException: ...FileImpl cannot be cast to IgnoreFile [\#220](https://github.com/hsz/idea-gitignore/issues/220) -- Problem files coloring [\#219](https://github.com/hsz/idea-gitignore/issues/219) -- Subfolders recognition [\#218](https://github.com/hsz/idea-gitignore/issues/218) -- Tricky ignore rules issue [\#214](https://github.com/hsz/idea-gitignore/issues/214) -- "Entry never used" invalid [\#213](https://github.com/hsz/idea-gitignore/issues/213) -- NoSuchMethodError exception [\#211](https://github.com/hsz/idea-gitignore/issues/211) -- Double star pattern /\*\* doesn't gray out files in subdirectories [\#165](https://github.com/hsz/idea-gitignore/issues/165) - +- NoSuchMethodError on ContainerUtil.notNullize [\#232](https://github.com/hsz/idea-gitignore/issues/232) +- Refactoring of the external executable process [\#233](https://github.com/hsz/idea-gitignore/issues/233) [Full Changelog History](./CHANGELOG.md) diff --git a/gradle.properties b/gradle.properties index 1be409c7..d6b46499 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ isEAP = false pluginGroup = mobi.hsz.idea pluginName = .ignore -pluginVersion = 1.4.1 +pluginVersion = 1.5 publishPluginId = 7495 publishUsername = hsz diff --git a/resources/META-INF/plugin.xml b/resources/META-INF/plugin.xml index 249dc163..b648e33f 100644 --- a/resources/META-INF/plugin.xml +++ b/resources/META-INF/plugin.xml @@ -1,7 +1,7 @@ mobi.hsz.idea.gitignore .ignore - 1.4.1 + 1.5 hsz Renaming entries from ignore file
  • Close opened ignored files action
  • Custom user templates with import/export features
  • +
  • Create custom templates from existing rules
  • +
  • Favorite templates

  • @@ -52,31 +54,22 @@ v1.4.1 (2016-05-24)

    - Full Changelog

    + v1.5 (2016-06-13)

    + Full Changelog

    Implemented enhancements:
      -
    • Add Unversioned Files to .gitignore (Git) (124)
    • -
    • Add to 'exclude' (Git) (133)
    • -
    • Exclude file preview (Git) (132)
    • -
    • Allow user to specify position of appended entries (216)
    • -
    • JetPack (.jpmignore) support (215)
    • +
    • Create user templates with existing ignore entries
    • +
    • Favorite templates feature (236)
    • +
    • Generate without comments and empty lines (229)
    Fixed bugs:
      -
    • NoSuchMethodError in IDEA 2016.2 EAP (225)
    • -
    • ConcurrentModificationException (221)
    • -
    • ClassCastException: ...FileImpl cannot be cast to IgnoreFile (220)
    • -
    • Problem files coloring (219)
    • -
    • Subfolders recognition (218)
    • -
    • Tricky ignore rules issue (214)
    • -
    • "Entry never used" invalid (213)
    • -
    • NoSuchMethodError exception (211)
    • -
    • Double star pattern /\*\* doesn't gray out files in subdirectories (165) +
    • NoSuchMethodError on ContainerUtil.notNullize (232)
    • +
    • Refactoring of the external executable process (233)
    Full Changelog History diff --git a/resources/messages/IgnoreBundle.properties b/resources/messages/IgnoreBundle.properties index 1a38e7df..aa214193 100644 --- a/resources/messages/IgnoreBundle.properties +++ b/resources/messages/IgnoreBundle.properties @@ -128,20 +128,13 @@ action.importTemplates.error=User templates import failed. update.title=.ignore plugin updated to v{0} update.content=
    \ Features:
    \ -- Add Unversioned Files to .gitignore (Git) (124)
    \ -- Add to 'exclude' (Git) (133)
    \ -- Exclude file preview (Git) (132)
    \ -- Allow user to specify position of appended entries (216)
    \ -- JetPack (.jpmignore) support (215)
    \ +- Create user templates with existing ignore entries
    \ +- Favorite templates feature (236)
    \ +- Generate without comments and empty lines (229)
    \
    \ Fixes:
    \ -- NoSuchMethodError in IDEA 2016.2 EAP (225)
    \ -- ConcurrentModificationException (221)
    \ -- ClassCastException: ...FileImpl cannot be cast to IgnoreFile (220)
    \ -- Problem files coloring (219)
    \ -- Tricky ignore rules issue (214)
    \ -- "Entry never used" invalid (213)
    \ -- NoSuchMethodError exception (211)
    \ +- NoSuchMethodError on ContainerUtil.notNullize (232)
    \ +- Refactoring of the external executable process (233)
    \ - and others...
    \
    \ If you find my plugin helpful, donate me using
    \