Skip to content

Commit 020a789

Browse files
committed
Release 1.2.1
Fix the width expansion on long argument strings
1 parent 6c6bb53 commit 020a789

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pluginVersion=1.2.0
1+
pluginVersion=1.2.1
22
sinceBuild=213
33
intellijVersion=2021.3

src/main/java/io/github/jebeaudet/idea/jvm/setting/SettingForm.form

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="io.github.jebeaudet.idea.jvm.setting.SettingForm">
3-
<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">
3+
<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">
44
<margin top="0" left="0" bottom="0" right="0"/>
55
<constraints>
66
<xy x="20" y="20" width="1010" height="593"/>
@@ -29,7 +29,9 @@
2929
</component>
3030
<component id="d575c" class="javax.swing.JTextField" binding="jvmArgsTextField">
3131
<constraints>
32-
<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"/>
32+
<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">
33+
<preferred-size width="150" height="-1"/>
34+
</grid>
3335
</constraints>
3436
<properties>
3537
<editable value="false"/>
@@ -46,11 +48,6 @@
4648
<border type="none"/>
4749
<children/>
4850
</grid>
49-
<vspacer id="5aa0b">
50-
<constraints>
51-
<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"/>
52-
</constraints>
53-
</vspacer>
5451
<grid id="ebc60" layout-manager="GridLayoutManager" row-count="1" column-count="2" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
5552
<margin top="0" left="0" bottom="0" right="0"/>
5653
<constraints>

src/main/resources/META-INF/plugin.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin require-restart="false">
22
<id>io.github.jebeaudet</id>
33
<name>JVM Arguments Setter</name>
4-
<version>1.2.0</version>
4+
<version>1.2.1</version>
55
<vendor email="[email protected]" url="https://github.com/jebeaudet/jvm-arguments-setter">jebeaudet</vendor>
66

77
<description><![CDATA[
@@ -31,6 +31,11 @@
3131
</extensions>
3232

3333
<change-notes><![CDATA[
34+
<h2>1.2.1</h2>
35+
<ul>
36+
<li>Fix table width on long argument strings</li>
37+
<li>Removed useless spacer under the argument table</li>
38+
</ul>
3439
<h2>1.2.0</h2>
3540
<ul>
3641
<li>Added the possibility to disable certain parameters in test run configurations</li>

0 commit comments

Comments
 (0)