Skip to content

Commit

Permalink
Remove ANT build file.
Browse files Browse the repository at this point in the history
Migrate to modern OpenAPI (possibly will works in the next Idea releases)
  • Loading branch information
xBlackCat committed Jan 27, 2020
1 parent 8fa1204 commit d6043d9
Show file tree
Hide file tree
Showing 18 changed files with 1,177 additions and 1,480 deletions.
5 changes: 2 additions & 3 deletions FavoritesFolder.iml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/res" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/res" type="java-resource" />
<excludeFolder url="file://$MODULE_DIR$/.idea" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

</module>
103 changes: 47 additions & 56 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,56 +1,47 @@
<idea-plugin version="2">
<name>FavoriteFolders</name>
<description>Adds favorite folders into FileChooser dialog toolbar.</description>
<change-notes><![CDATA[<ul>
<li><b>v0.0.0.1</b> - Initial revision.</li>
<li><b>v0.0.0.2</b> - Allow to install plugin in all Idea-based products.</li>
<li><b>v0.0.0.3</b> - Allow to set custom name to favorite folder (to show in tooltip)</li>
<li><b>v0.0.0.4</b> - Allow to set custom icon to favorite folder.</li>
<li><b>v0.0.0.5</b> - Browse button to select custom icon for favorite folder. Small fixes.</li>
<li><b>v1.0</b> - Project-level favorite folders configuration.</li>
<li><b>v1.0.0.1</b> - Fix NPE if custom icon is not found. Show warning in this case.</li>
<li><b>v1.0.0.2</b> - Fix NPE at new project opening in Idea 11 (Nika)</li>
<li><b>v1.0.1.0</b> - 'Add folder to favorites' action has been introduced</li>
<li><b>v1.1.0.0</b> - Fix Idea 13 compatibility issues</li>
<li><b>v1.1.0.1</b> - Show registered actions in the FavoriteFolder plugin key map group</li>
<li><b>v1.1.1.0</b> - Fix platform dependencies. Exceptions fix.</li>
<li><b>v1.2.0.0</b> - Migrate to Idea 2016 platform and Java 8. Fix labels in config pane.</li>
<li><b>v1.2.0.1</b> - Fix exception at loading plugin in 2016.2 EAP</li>
</ul>]]>
</change-notes>
<version>1.2.0.1</version>
<vendor email="xblackcat@gmail.com" url="http://code.google.com/p/favoritefolders-idea-plugin/">xBlackCat</vendor>
<idea-version since-build="145.1"/>
<depends>com.intellij.modules.platform</depends>

<application-components>
<!-- Add your application components here -->
<component>
<implementation-class>org.xblackcat.idea.favorites.FavoriteFoldersPlugin</implementation-class>
</component>
</application-components>

<project-components>
<component>
<loadForDefaultProject>true</loadForDefaultProject>
<implementation-class>org.xblackcat.idea.favorites.ProjectFavoriteFoldersPlugin</implementation-class>
</component>
</project-components>

<extensions defaultExtensionNs="com.intellij">
<applicationConfigurable instance="org.xblackcat.idea.favorites.FavoriteFoldersConfigPane"
id="favoritefolders"/>
<projectConfigurable instance="org.xblackcat.idea.favorites.ProjectFavoriteFoldersConfigPane"
id="projectfavoritefolders"/>
</extensions>

<actions>
<action id="FavoriteFolder.AddFavorite"
class="org.xblackcat.idea.favorites.AddFavoriteFolder"
text="Add to favorites"
icon="/general/addFavoritesList.png">
<keyboard-shortcut first-keystroke="ctrl shift F" keymap="$default"/>
<add-to-group group-id="FileChooserToolbar" anchor="last"/>
</action>
</actions>
</idea-plugin>
<idea-plugin>
<name>FavoriteFolders</name>
<description>Adds favorite folders into FileChooser dialog toolbar.</description>
<change-notes><![CDATA[<ul>
<li><b>v0.0.0.1</b> - Initial revision.</li>
<li><b>v0.0.0.2</b> - Allow to install plugin in all Idea-based products.</li>
<li><b>v0.0.0.3</b> - Allow to set custom name to favorite folder (to show in tooltip)</li>
<li><b>v0.0.0.4</b> - Allow to set custom icon to favorite folder.</li>
<li><b>v0.0.0.5</b> - Browse button to select custom icon for favorite folder. Small fixes.</li>
<li><b>v1.0</b> - Project-level favorite folders configuration.</li>
<li><b>v1.0.0.1</b> - Fix NPE if custom icon is not found. Show warning in this case.</li>
<li><b>v1.0.0.2</b> - Fix NPE at new project opening in Idea 11 (Nika)</li>
<li><b>v1.0.1.0</b> - 'Add folder to favorites' action has been introduced</li>
<li><b>v1.1.0.0</b> - Fix Idea 13 compatibility issues</li>
<li><b>v1.1.0.1</b> - Show registered actions in the FavoriteFolder plugin key map group</li>
<li><b>v1.1.1.0</b> - Fix platform dependencies. Exceptions fix.</li>
<li><b>v1.2.0.0</b> - Migrate to Idea 2016 platform and Java 8. Fix labels in config pane.</li>
<li><b>v1.2.0.1</b> - Fix exception at loading plugin in 2016.2 EAP</li>
<li><b>v1.3</b> - Code review: do not use deprecated features. Prepare for Idea 2020.x</li>
</ul>]]>
</change-notes>
<version>1.3</version>
<vendor email="xblackcat@gmail.com" url="http://code.google.com/p/favoritefolders-idea-plugin/">xBlackCat</vendor>
<idea-version since-build="193.1"/>
<depends>com.intellij.modules.platform</depends>

<extensions defaultExtensionNs="com.intellij">
<applicationService serviceImplementation="org.xblackcat.idea.favorites.FavoriteFoldersPlugin"/>
<projectService serviceImplementation="org.xblackcat.idea.favorites.ProjectFavoriteFoldersPlugin"/>
<applicationConfigurable bundle="messages.FavoriteFoldersBundle" key="FavoriteFolder.Config.title"
id="favoritefolders" groupId="tools" instance="org.xblackcat.idea.favorites.FavoriteFoldersConfigPane"/>
<projectConfigurable instance="org.xblackcat.idea.favorites.ProjectFavoriteFoldersConfigPane" parentId="favoritefolders"
id="favoritefolders_project"/>

<applicationInitializedListener implementation="org.xblackcat.idea.favorites.AppInitializerListener"/>
</extensions>

<actions>
<action id="FavoriteFolder.AddFavorite"
class="org.xblackcat.idea.favorites.AddFavoriteFolder"
text="Add to Favorites"
icon="/general/add.svg">
<keyboard-shortcut first-keystroke="ctrl shift F" keymap="$default"/>
<add-to-group group-id="FileChooserToolbar" anchor="last"/>
</action>
</actions>
</idea-plugin>
1 change: 0 additions & 1 deletion build.properties

This file was deleted.

Loading

0 comments on commit d6043d9

Please sign in to comment.