Skip to content

Commit

Permalink
Version 3.0
Browse files Browse the repository at this point in the history
- Custom Buckets
- Select/Deselect scaling bucket
- Detect new buckets.
  • Loading branch information
humblerookie committed Mar 26, 2017
1 parent 8c7528d commit 47291b0
Show file tree
Hide file tree
Showing 12 changed files with 780 additions and 393 deletions.
Binary file removed dimenify.jar
Binary file not shown.
61 changes: 33 additions & 28 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<idea-plugin version="2">
<id>com.hr.dimenify</id>
<name>Dimenify</name>
<version>2.1</version>
<vendor email="[email protected]" url="http://www.anvith.in">Anvith Bhat</vendor>
<id>com.hr.dimenify</id>
<name>Dimenify</name>
<version>3.0</version>
<vendor email="[email protected]" url="http://www.anvith.in">Anvith Bhat</vendor>

<description><![CDATA[
<description><![CDATA[
This plugin generates dimensions for the other density bucket values for Android<br/>
USAGE<br/>
- Just point the cursor on the dimension value in your dimen<br/>
Expand All @@ -15,7 +15,12 @@
]]></description>

<change-notes><![CDATA[
<change-notes><![CDATA[
<b>v2.2</b><br/>
- Added ability to provide custom buckets upto a max of 5.
- User can now choose to exclude any buckets from current dimension generation.
- Auto detect new buckets and prompt user for scale value.
<b>v2.1</b><br/>
- Bugfix for some locales where comma is used as decimal separator.
<b>v2.0</b><br/>
Expand All @@ -27,27 +32,27 @@
<b>v1.0</b><br/>
Contains hard bound scaling factors.
]]>
</change-notes>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="145.0"/>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<!-- uncomment to enable plugin in all products
<depends>com.intellij.modules.lang</depends>
-->

<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
</extensions>

<actions>
<!-- Add your actions here -->
<action id="generateDimens" class="com.hr.dimenify.GenerateAction" text="Generate alternate dimens.."
description="This generates dimensions for other density buckets">
<add-to-group group-id="GenerateGroup" anchor="last"/>
</action>
</actions>
</change-notes>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="145.0"/>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<!-- uncomment to enable plugin in all products
<depends>com.intellij.modules.lang</depends>
-->

<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
</extensions>

<actions>
<!-- Add your actions here -->
<action id="generateDimens" class="com.hr.dimenify.action.GenerateAction" text="Generate alternate dimens.."
description="This generates dimensions for other density buckets">
<add-to-group group-id="GenerateGroup" anchor="last"/>
</action>
</actions>

</idea-plugin>
21 changes: 0 additions & 21 deletions src/com/hr/dimenify/Constants.java

This file was deleted.

25 changes: 0 additions & 25 deletions src/com/hr/dimenify/Field.java

This file was deleted.

234 changes: 0 additions & 234 deletions src/com/hr/dimenify/GenerateAction.java

This file was deleted.

Loading

0 comments on commit 47291b0

Please sign in to comment.