Skip to content

Commit

Permalink
Version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
King2500 committed May 21, 2015
1 parent 579719b commit 2460f2d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

### 1.0.5
* Added completion support for DateTime constructor / DateTime::modify / strtotime DateTime notations
* AutoPopup completion implemented

### 1.0.4
* Changed date format info for 'W' ([#1](https://github.com/King2500/PhpAdvancedAutoComplete/pull/1))
* Fixed StringIndexOutOfBoundsException: String index out of range ([#2](https://github.com/King2500/PhpAdvancedAutoComplete/issues/2))
Expand Down
14 changes: 10 additions & 4 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin version="2">
<id>net.king2500.plugins.PhpAdvancedAutoComplete</id>
<name>PHP Advanced AutoComplete</name>
<version>1.0.4</version>
<version>1.0.5</version>
<vendor email="phpstorm@king2500.net" url="https://github.com/King2500/PhpAdvancedAutoComplete">Thomas Schulz</vendor>

<description><![CDATA[
Expand All @@ -12,8 +12,10 @@
HTTP response headers, status codes, charsets, mime-types, locations, and much more<br><br></li>
<li><b>File and folder related functions and methods (fopen, file_get_contents, dir...)</b><br>
Files and/or folders paths relative to the current file (completion and reference)<br><br></li>
<li><b>date</b><br>
<li><b>date / strftime / DateTime::format etc</b><br>
Format characters and common format strings<br><br></li>
<li><b>strtotime / DateTime constructor / DateTime::modify</b><br>
DateTime notations<br><br></li>
<li><b>htmlentities/htmlspecialchars</b><br>
Supported charsets<br><br></li>
<li><b>mb_string functions</b><br>
Expand All @@ -34,14 +36,18 @@
Supported charsets for MySQL<br><br></li>
</ul>
<p><b>Important:</b> You have to start a string literal and press <i>Ctrl</i> + <i>Space</i> to activate the completion popup</p>
<p>If you have further suggestions/ideas, just send me an e-mail.</p>
<p><a href="http://plugins.jetbrains.com/plugin/writeComment?pr=&pluginId=7276">Commend and rate this plugin here</a></p>
]]></description>

<change-notes><![CDATA[
<h2>1.0.5</h2>
<ul>
<li>Added completion support for DateTime constructor / DateTime::modify / strtotime DateTime notations</li>
<li>AutoPopup completion implemented</li>
</ul>
<h2>1.0.4</h2>
<ul>
<li>Changed date format info for 'W' (<a href="https://github.com/King2500/PhpAdvancedAutoComplete/pull/1">#1</a>)</li>
Expand Down
Binary file modified PhpAdvancedAutoComplete.jar
Binary file not shown.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ The following functions are currently supported:
* <b>File and folder related functions and methods (fopen, file_get_contents, dir...)</b><br>
Files and/or folders paths relative to the current file (completion and reference)

* <b>date</b><br>
* <b>date / strftime / DateTime::format etc</b><br>
Format characters and common format strings

* <b>strtotime / DateTime constructor / DateTime::modify</b><br>
DateTime notations

* <b>htmlentities / htmlspecialchars</b><br>
Supported charsets

Expand Down Expand Up @@ -43,7 +46,4 @@ The following functions are currently supported:
* <b>mysql_set_charset/mysqli_set_charset/mysqli::set_charset</b><br>
Supported charsets for MySQL

<b>Important:</b><br>
You have to start a string literal and press <i>Ctrl</i> + <i>Space</i> to activate the completion popup

If you have further suggestions/ideas, just send me an e-mail to <i>phpstorm at king2500.net</i>.

0 comments on commit 2460f2d

Please sign in to comment.