Skip to content

Commit f611c8c

Browse files
committed
build 0.10.41
1 parent e138ad7 commit f611c8c

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ Changelog
55
0.9.x: PhpStorm 6
66
0.10.x: PhpStorm 7
77

8+
### 0.10.41
9+
* Add code folding provider for php with support for route, template and repository
10+
* Add code folding provider for twig path and url function
11+
* Add settings for all code folding provider (default=true)
12+
* Add overwrite linemarker for twig blocks #75
13+
* Add yaml static service config completion (class, arguments, ... )
14+
* Readd twig completion workaround for filters (hell!)
15+
* Fix error on class name with trailing backslash on yaml annotator
16+
* Migrate template references, to resolve #46 fully
17+
818
### 0.10.40
919
* Add support for "Navigate > Related Files" (Ctrl+Alt+Home) inside controller action #191
1020
* Rename plugin settings key to more unique name "Symfony2PluginSettings" #209 #122

META-INF/plugin.xml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<idea-plugin version="2" url="https://github.com/haehnchen/idea-php-symfony2-plugin">
22
<id>fr.adrienbrault.idea.symfony2plugin</id>
33
<name>Symfony2 Plugin</name>
4-
<version>0.10.40</version>
4+
<version>0.10.41</version>
55
<vendor email="daniel@espendiller.net" url="http://espend.de">Daniel Espendiller</vendor>
66

77
<description><![CDATA[
88
<h1>Symfony2 plugin.</h1>
99
1010
<br/>
11-
<p style="color:red"><b>New Settings key</b>: Re-enable plugin in project settings! Need settings migration? Rename "Settings" to "Symfony2PluginSettings" in ".idea/symfony2.xml" and reopen PhpStorm</p>
11+
<p style="color:red"><b>New Settings key</b>: Re-enable plugin in project settings (=<0.10.39) ! Need settings migration? Rename "Settings" to "Symfony2PluginSettings" in ".idea/symfony2.xml" and reopen PhpStorm</p>
1212
<br/>
1313
1414
<a href="http://symfony2-plugin.espend.de/">Documentation</a> | <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin-doc">Doc on GitHub</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5ZTGW6H4Y7MT8">Donate</a>
@@ -98,6 +98,18 @@
9898
0.10.x: PhpStorm 7<br>
9999
<br>
100100
101+
<h2>0.10.41</h2>
102+
<ul>
103+
<li>Add code folding provider for php with support for route, template and repository</li>
104+
<li>Add code folding provider for twig path and url function</li>
105+
<li>Add settings for all code folding provider (default=true)</li>
106+
<li>Add overwrite linemarker for twig blocks #75</li>
107+
<li>Add yaml static service config completion (class, arguments, ... )</li>
108+
<li>Readd twig completion workaround for filters (hell!)</li>
109+
<li>Fix error on class name with trailing backslash on yaml annotator</li>
110+
<li>Migrate template references, to resolve #46 fully</li>
111+
</ul>
112+
101113
<h2>0.10.40</h2>
102114
<ul>
103115
<li>Add support for "Navigate > Related Files" (Ctrl+Alt+Home) inside controller action <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/191">#191</a></li>
@@ -318,6 +330,8 @@
318330
<lang.foldingBuilder language="PHP" implementationClass="fr.adrienbrault.idea.symfony2plugin.navigation.PhpFoldingBuilder"/>
319331
<lang.foldingBuilder language="Twig" implementationClass="fr.adrienbrault.idea.symfony2plugin.navigation.TwigFoldingBuilder"/>
320332

333+
<typedHandler implementation="fr.adrienbrault.idea.symfony2plugin.templating.WorkaroundTwigTypedHandler"/>
334+
321335
<completion.contributor language="PHP" implementationClass="fr.adrienbrault.idea.symfony2plugin.config.annotation.AnnotationCompletionContributor"/>
322336
<completion.contributor language="PHP" implementationClass="fr.adrienbrault.idea.symfony2plugin.templating.annotation.AnnotationCompletionContributor"/>
323337
<completion.contributor language="XML" implementationClass="fr.adrienbrault.idea.symfony2plugin.config.xml.XmlCompletionContributor"/>

0 commit comments

Comments
 (0)