diff --git a/CHANGELOG.md b/CHANGELOG.md index 2988aed..282594a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,22 @@ Changelog ========= -### 1.0.5 +### 1.1.0 * Added completion support for DateTime constructor / DateTime::modify / strtotime DateTime notations +* Added completion for environment variables in getenv() ([#11](https://github.com/King2500/idea-php-advanced-autocomplete/issues/11)) +* Added support for DateTimeImmutable (DateTime formats and notations) ([#12](https://github.com/King2500/idea-php-advanced-autocomplete/issues/12)) * AutoPopup completion implemented +* Improved file reference contributor +* Updated HTTP header completion tokens +* Changed HTTP header field completion to insert space char +* Fixed HTTP header field completions after colon ([#5](https://github.com/King2500/idea-php-advanced-autocomplete/issues/5)) +* Fixed full header completion in header_remove() function +* Fixed prefixed completion for DateTime notations (also [#5](https://github.com/King2500/idea-php-advanced-autocomplete/issues/5)) +* Fixed completion auto-popup for '-' char in date formats +* Fixed date format infos for ISO-8601 weeks +* Fixed duplicate completion entries when PHP Toolbox plugin is installed ([#15](https://github.com/King2500/idea-php-advanced-autocomplete/issues/15)) +* Changes to compile against JDK 1.8 / PhpStorm 2019.1 +* Minimum IDEA version changed to 2018.2+ ### 1.0.4 * Changed date format info for 'W' ([#1](https://github.com/King2500/idea-php-advanced-autocomplete/pull/1)) diff --git a/META-INF/plugin.xml b/META-INF/plugin.xml index 1b592f8..49f2082 100644 --- a/META-INF/plugin.xml +++ b/META-INF/plugin.xml @@ -1,7 +1,7 @@ net.king2500.plugins.PhpAdvancedAutoComplete PHP Advanced AutoComplete - 1.0.5 + 1.1.0 Thomas Schulz
  • mysql_set_charset/mysqli_set_charset/mysqli::set_charset
    Supported charsets for MySQL

  • +
  • getenv
    + Common environment variables (like in $_SERVER array keys)

  • If you have further suggestions/ideas, just send me an e-mail.

    @@ -42,10 +44,23 @@ 1.0.5 +

    1.1.0

    • Added completion support for DateTime constructor / DateTime::modify / strtotime DateTime notations
    • +
    • Added completion for environment variables in getenv() (#11)
    • +
    • Added support for DateTimeImmutable (DateTime formats and notations) (#12)
    • AutoPopup completion implemented
    • +
    • Improved file reference contributor
    • +
    • Updated HTTP header completion tokens
    • +
    • Changed HTTP header field completion to insert space char
    • +
    • Fixed HTTP header field completions after colon (#5)
    • +
    • Fixed full header completion in header_remove() function
    • +
    • Fixed prefixed completion for DateTime notations (also #5)
    • +
    • Fixed completion auto-popup for '-' char in date formats
    • +
    • Fixed date format infos for ISO-8601 weeks
    • +
    • Fixed duplicate completion entries when PHP Toolbox plugin is installed (#15)
    • +
    • Changes to compile against JDK 1.8 / PhpStorm 2019.1
    • +
    • Minimum IDEA version changed to 2018.2+

    1.0.4