Skip to content

Commit c536f73

Browse files
committed
Version 1.1.0
1 parent 813a3b8 commit c536f73

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
Changelog
22
=========
33

4-
### 1.0.5
4+
### 1.1.0
55
* Added completion support for DateTime constructor / DateTime::modify / strtotime DateTime notations
6+
* Added completion for environment variables in getenv() ([#11](https://github.com/King2500/idea-php-advanced-autocomplete/issues/11))
7+
* Added support for DateTimeImmutable (DateTime formats and notations) ([#12](https://github.com/King2500/idea-php-advanced-autocomplete/issues/12))
68
* AutoPopup completion implemented
9+
* Improved file reference contributor
10+
* Updated HTTP header completion tokens
11+
* Changed HTTP header field completion to insert space char
12+
* Fixed HTTP header field completions after colon ([#5](https://github.com/King2500/idea-php-advanced-autocomplete/issues/5))
13+
* Fixed full header completion in header_remove() function
14+
* Fixed prefixed completion for DateTime notations (also [#5](https://github.com/King2500/idea-php-advanced-autocomplete/issues/5))
15+
* Fixed completion auto-popup for '-' char in date formats
16+
* Fixed date format infos for ISO-8601 weeks
17+
* Fixed duplicate completion entries when PHP Toolbox plugin is installed ([#15](https://github.com/King2500/idea-php-advanced-autocomplete/issues/15))
18+
* Changes to compile against JDK 1.8 / PhpStorm 2019.1
19+
* Minimum IDEA version changed to 2018.2+
720

821
### 1.0.4
922
* Changed date format info for 'W' ([#1](https://github.com/King2500/idea-php-advanced-autocomplete/pull/1))

META-INF/plugin.xml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>net.king2500.plugins.PhpAdvancedAutoComplete</id>
33
<name>PHP Advanced AutoComplete</name>
4-
<version>1.0.5</version>
4+
<version>1.1.0</version>
55
<vendor email="phpstorm@king2500.net" url="https://github.com/King2500">Thomas Schulz</vendor>
66

77
<description><![CDATA[
@@ -34,6 +34,8 @@
3434
Usernames and database names from data sources defined in project<br><br></li>
3535
<li><b>mysql_set_charset/mysqli_set_charset/mysqli::set_charset</b><br>
3636
Supported charsets for MySQL<br><br></li>
37+
<li><b>getenv</b><br>
38+
Common environment variables (like in $_SERVER array keys)<br><br></li>
3739
</ul>
3840
3941
<p>If you have further suggestions/ideas, just send me an e-mail.</p>
@@ -42,10 +44,23 @@
4244

4345
<change-notes><![CDATA[
4446
45-
<h2>1.0.5</h2>
47+
<h2>1.1.0</h2>
4648
<ul>
4749
<li>Added completion support for DateTime constructor / DateTime::modify / strtotime DateTime notations</li>
50+
<li>Added completion for environment variables in getenv() (<a href="https://github.com/King2500/idea-php-advanced-autocomplete/issues/11">#11</a>)</li>
51+
<li>Added support for DateTimeImmutable (DateTime formats and notations) (<a href="https://github.com/King2500/idea-php-advanced-autocomplete/issues/12">#12</a>)</li>
4852
<li>AutoPopup completion implemented</li>
53+
<li>Improved file reference contributor</li>
54+
<li>Updated HTTP header completion tokens</li>
55+
<li>Changed HTTP header field completion to insert space char</li>
56+
<li>Fixed HTTP header field completions after colon (<a href="https://github.com/King2500/idea-php-advanced-autocomplete/issues/5">#5</a>)</li>
57+
<li>Fixed full header completion in header_remove() function</li>
58+
<li>Fixed prefixed completion for DateTime notations (also <a href="https://github.com/King2500/idea-php-advanced-autocomplete/issues/5">#5</a>)</li>
59+
<li>Fixed completion auto-popup for '-' char in date formats</li>
60+
<li>Fixed date format infos for ISO-8601 weeks</li>
61+
<li>Fixed duplicate completion entries when PHP Toolbox plugin is installed (<a href="https://github.com/King2500/idea-php-advanced-autocomplete/issues/15">#15</a>)</li>
62+
<li>Changes to compile against JDK 1.8 / PhpStorm 2019.1</li>
63+
<li>Minimum IDEA version changed to 2018.2+</li>
4964
</ul>
5065
5166
<h2>1.0.4</h2>

0 commit comments

Comments
 (0)