-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from nette-intellij/mn-fixed-deprecated-0-4-4
Mn fixed deprecated 0 4 4
- Loading branch information
Showing
10 changed files
with
181 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
out/ | ||
*.jar | ||
*.jar | ||
.idea |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module type="PLUGIN_MODULE" version="4"> | ||
<component name="DevKit.ModuleBuildProperties" url="file://$MODULE_DIR$/META-INF/plugin.xml" /> | ||
<component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> | ||
</content> | ||
<orderEntry type="inheritedJdk" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
</component> | ||
</module> | ||
|
||
<component name="DevKit.ModuleBuildProperties" url="file://$MODULE_DIR$/resources/META-INF/plugin.xml" /> | ||
<component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" /> | ||
</content> | ||
<orderEntry type="inheritedJdk" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="library" exported="" scope="PROVIDED" name="php" level="project" /> | ||
<orderEntry type="library" exported="" scope="PROVIDED" name="php-openapi" level="project" /> | ||
<orderEntry type="library" exported="" scope="PROVIDED" name="php-openapi-src" level="project" /> | ||
</component> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<idea-plugin> | ||
<name>Nette framework helpers</name> | ||
<description>Nette development with pleasure - (annotations, components...)</description> | ||
<version>0.4.4</version> | ||
<vendor>juzna.cz</vendor> | ||
<change-notes><![CDATA[ | ||
<h2>0.4.4</h2> | ||
<ul> | ||
<li>ComponentTypeProvider: upgrade to PhpTypeProvider4</li> | ||
<li>Fixed compatibility with new PhpStorm versions (more deprecated fixed)</li> | ||
<li>Temporarily disabled one feature in "component tree popup" (will be fixed in next version)</li> | ||
</ul> | ||
<h2>0.4.3</h2> | ||
<ul> | ||
<li>ComponentTypeProvider: upgrade to PhpTypeProvider3</li> | ||
<li>Remove Nette object support</li> | ||
</ul> | ||
<h2>0.4.2</h2> | ||
<ul> | ||
<li>ComponentTypeProvider: Fixed index access during indexing</li> | ||
</ul> | ||
<h2>0.4.1</h2> | ||
<ul> | ||
<li>Fixed RuntimeException Invalid Signature</li> | ||
<li>Fixed StackOverflowException</li> | ||
<li>Fixed: find magic methods only in the Nette Object</li> | ||
</ul> | ||
<h2>0.4.0</h2> | ||
<ul> | ||
<li>Fixed deadlocks</li> | ||
<li>Added support for dash separated subcomponents in getComponent or array access + components refactoring</li> | ||
</ul> | ||
<h2>0.3.1</h2> | ||
<ul> | ||
<li>Fixed StringIndexOutOfBoundsException exception in ClassFinder</li> | ||
</ul> | ||
<h2>0.3.0</h2> | ||
<ul> | ||
<li>Added component tree popup</li> | ||
<li>Added inspection that createComponent returns UI\Form</li> | ||
<li>Added EventInvocationGoToDeclarationHandler [#15]</li> | ||
<li>Added predefined Nette Code style [#20]</li> | ||
<li>Added support for @persistent annotation (completion and inspection)</li> | ||
<li>Fixed few issues in TypeProviders causing ide freeze</li> | ||
</ul> | ||
<h2>0.2.0</h2> | ||
<ul> | ||
<li>Components: created completion contributor for component access using ArrayAccess or getComponent method</li> | ||
<li>Components: created reference contributor from ArrayAccess/getComponent access to createComponent* method</li> | ||
<li>Components: added references search for "Find usages" action</li> | ||
<li>Components: added TypeProvider for components access</li> | ||
<li>Components: added refactoring support (rename component access when renaming createComponent* method)</li> | ||
<li>@inject annotation completion provider</li> | ||
<li>@inject annotation inspection: check if property is public</li> | ||
<li>Added listener generator action for nette/object events (experimental)</li> | ||
<li>Refactoring, removed deprecated stuffs..</li> | ||
<li>Removed Pd\Entity support</li> | ||
</ul> | ||
<h2>0.1.0</h2> | ||
<ul> | ||
<li>Initial version</li> | ||
</ul> | ||
]]> | ||
</change-notes> | ||
|
||
<idea-version since-build="191.8026.42"/> | ||
<depends>com.intellij.modules.lang</depends> | ||
<depends>com.jetbrains.php</depends> | ||
|
||
<extensions defaultExtensionNs="com.jetbrains.php"> | ||
<typeProvider4 implementation="cz.juzna.intellij.nette.typeProvider.ComponentTypeProvider"/> | ||
</extensions> | ||
<extensions defaultExtensionNs="com.intellij"> | ||
<!-- Nette --> | ||
<completion.contributor language="PHP" implementationClass="cz.juzna.intellij.nette.completion.ComponentCompletionContributor"/> | ||
<completion.contributor language="PHP" implementationClass="cz.juzna.intellij.nette.completion.CompilerExtensionCompletionContributor"/> | ||
<completion.contributor language="PHP" implementationClass="cz.juzna.intellij.nette.completion.PhpDocCompletionContributor"/> | ||
<psi.referenceContributor language="PHP" implementation="cz.juzna.intellij.nette.reference.ComponentReferenceContributor"/> | ||
<referencesSearch implementation="cz.juzna.intellij.nette.reference.ComponentReferenceSearch"/> | ||
|
||
<localInspection language="PHP" shortName="NonPublicInject" id="NonPublicInject" displayName="Non-public @inject property" | ||
groupName="Nette" | ||
implementationClass="cz.juzna.intellij.nette.inspections.NonPublicInjectInspection" | ||
level="ERROR" enabledByDefault="true"/> | ||
<localInspection language="PHP" shortName="NonPublicPersistent" id="NonPublicPersistent" displayName="Non-public @persistent property" | ||
groupName="Nette" | ||
implementationClass="cz.juzna.intellij.nette.inspections.NonPublicPersistentInspection" | ||
level="ERROR" enabledByDefault="true"/> | ||
<localInspection language="PHP" shortName="CreateComponentReturnFormType" id="CreateComponentReturnFormType" displayName="Form return type of createComponent*" | ||
groupName="Nette" | ||
implementationClass="cz.juzna.intellij.nette.inspections.CreateComponentReturnFormTypeInspection" | ||
level="WARNING" enabledByDefault="true"/> | ||
<predefinedCodeStyle implementation="cz.juzna.intellij.nette.codeStyle.NetteCodeStyle"/> | ||
<gotoDeclarationHandler implementation="cz.juzna.intellij.nette.reference.EventInvocationGoToDeclarationHandler"/> | ||
</extensions> | ||
|
||
<actions> | ||
<group id="ListenerGenerators"> | ||
<action class="cz.juzna.intellij.nette.actions.GenerateInlineListenerAction" id="GenerateInlineListenerAction2" | ||
text="Event Listener" | ||
description="Create inline listener."/> | ||
<add-to-group group-id="GenerateGroup" anchor="last"/> | ||
</group> | ||
<action class="cz.juzna.intellij.nette.actions.ViewComponentTreeAction" id="ComponentTreePopup" text="Show Component Tree" | ||
description="Shows component tree in presenter or component"/> | ||
</actions> | ||
</idea-plugin> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.