Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
Fix the width expansion on long argument strings
  • Loading branch information
jebeaudet committed Jan 20, 2023
1 parent 6c6bb53 commit 020a789
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pluginVersion=1.2.0
pluginVersion=1.2.1
sinceBuild=213
intellijVersion=2021.3
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="io.github.jebeaudet.idea.jvm.setting.SettingForm">
<grid id="27dc6" binding="mainPanel" layout-manager="GridLayoutManager" row-count="5" column-count="2" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
<grid id="27dc6" binding="mainPanel" layout-manager="GridLayoutManager" row-count="4" column-count="2" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
<margin top="0" left="0" bottom="0" right="0"/>
<constraints>
<xy x="20" y="20" width="1010" height="593"/>
Expand Down Expand Up @@ -29,7 +29,9 @@
</component>
<component id="d575c" class="javax.swing.JTextField" binding="jvmArgsTextField">
<constraints>
<grid row="0" column="2" row-span="1" col-span="1" vsize-policy="0" hsize-policy="6" anchor="8" fill="1" indent="0" use-parent-layout="false"/>
<grid row="0" column="2" row-span="1" col-span="1" vsize-policy="0" hsize-policy="6" anchor="8" fill="1" indent="0" use-parent-layout="false">
<preferred-size width="150" height="-1"/>
</grid>
</constraints>
<properties>
<editable value="false"/>
Expand All @@ -46,11 +48,6 @@
<border type="none"/>
<children/>
</grid>
<vspacer id="5aa0b">
<constraints>
<grid row="4" column="0" row-span="1" col-span="1" vsize-policy="6" hsize-policy="1" anchor="0" fill="2" indent="0" use-parent-layout="false"/>
</constraints>
</vspacer>
<grid id="ebc60" layout-manager="GridLayoutManager" row-count="1" column-count="2" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
<margin top="0" left="0" bottom="0" right="0"/>
<constraints>
Expand Down
7 changes: 6 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin require-restart="false">
<id>io.github.jebeaudet</id>
<name>JVM Arguments Setter</name>
<version>1.2.0</version>
<version>1.2.1</version>
<vendor email="[email protected]" url="https://github.com/jebeaudet/jvm-arguments-setter">jebeaudet</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -31,6 +31,11 @@
</extensions>

<change-notes><![CDATA[
<h2>1.2.1</h2>
<ul>
<li>Fix table width on long argument strings</li>
<li>Removed useless spacer under the argument table</li>
</ul>
<h2>1.2.0</h2>
<ul>
<li>Added the possibility to disable certain parameters in test run configurations</li>
Expand Down

0 comments on commit 020a789

Please sign in to comment.