Skip to content

Releases: eviweb/netbeans-case-converter

NetBeans Case Converter - version 0.2.3

03 Oct 07:19
Compare
Choose a tag to compare

0.2.3 - 2020-10-03

Changed

  • Revert compiler settings to support Java 1.8

Fixed

  • Fix issue #2: get rid of java.lang.String.stripLeading to get backward compatibility with JDK 1.8

NetBeans Case Converter - version 0.2.2

29 Sep 20:51
Compare
Choose a tag to compare

0.2.2 - 2020-09-29

Fixed

  • Fix issue #1: set Java minimal version to JDK 11

NetBeans Case Converter - version 0.2.1

29 Sep 19:47
Compare
Choose a tag to compare

0.2.1 - 2020-09-29

Fixed

  • Fix background compatibility to NetBeans version 11.0+

NetBeans Case Converter - version 0.2.0

29 Sep 15:04
Compare
Choose a tag to compare

0.2.0 - 2020-09-29

Changed

  • Update enabled menu screenshot
  • Change builder from Ant to Maven
  • Update README
  • Set NetBeans API version compatibility to 12.1

Fixed

  • Fix module description

NetBeans Case Converter - version 0.1.1

24 May 21:43
Compare
Choose a tag to compare

0.1.1 - 2019-05-24

Changed

  • Swap Status and Installation sections in README
  • Change module display category to Editing instead of Tools
  • Enhance the module description with HTML to make it more readable

Added

  • Descriptions of each converter in README
  • Add StringUtils.uncapitalizeFirstChar() method
  • Add ToPascalCaseConverter converter
  • Add ConvertToPascalCaseAction action

Fixed

  • Wrong image link for disabled menu in README
  • Typo in README
  • Wrong link to the downloadable NBM file at Github
  • Fix camelCase by uncapitalizing the first character

NetBeans Case Converter - version 0.1.0

23 May 19:39
Compare
Choose a tag to compare

0.1.0 - 2019-05-23

Added

  • package files
  • Actions:
    • ConvertToPopupAction
    • ConvertToAction abstract class
    • ConvertToCamelCaseAction
    • ConvertToHyphenCaseAction
    • ConvertToLowerCaseAction
    • ConvertToSentenceCaseAction
    • ConvertToSnakeCaseAction
    • ConvertToTitleCaseAction
    • ConvertToUpperCaseAction
  • Converters:
    • Converter interface
    • ConverterFactory abstract class
    • ToCamelCaseConverter
    • ToHyphenCaseConverter
    • ToLowerCaseConverter
    • ToSentenceCaseConverter
    • ToSnakeCaseConverter
    • ToTitleCaseConverter
    • ToUpperCaseConverter
  • Utils:
    • StringUtils