parent
6f6f298a3e
commit
e4ec35ecb4
|
@ -4,7 +4,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'io.zhile.research.intellij'
|
group 'io.zhile.research.intellij'
|
||||||
version '2.0.2'
|
version '2.0.3'
|
||||||
|
|
||||||
sourceCompatibility = 1.7
|
sourceCompatibility = 1.7
|
||||||
targetCompatibility = 1.7
|
targetCompatibility = 1.7
|
||||||
|
@ -29,6 +29,8 @@ intellij {
|
||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
changeNotes """<pre>
|
changeNotes """<pre>
|
||||||
|
Release v2.0.3
|
||||||
|
1. more friendly "Reload" icon
|
||||||
Release v2.0.2
|
Release v2.0.2
|
||||||
1. sync prefs manually
|
1. sync prefs manually
|
||||||
Release v2.0.1
|
Release v2.0.1
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
<component id="382d3" class="javax.swing.JButton" binding="btnReload">
|
<component id="382d3" class="javax.swing.JButton" binding="btnReload">
|
||||||
<constraints/>
|
<constraints/>
|
||||||
<properties>
|
<properties>
|
||||||
<text value="⟳ Reload"/>
|
<text value="Reload"/>
|
||||||
</properties>
|
</properties>
|
||||||
</component>
|
</component>
|
||||||
<component id="7f8d9" class="javax.swing.JButton" binding="btnReset">
|
<component id="7f8d9" class="javax.swing.JButton" binding="btnReset">
|
||||||
|
|
|
@ -47,6 +47,7 @@ public class MainForm {
|
||||||
lstMain.setModel(listModel);
|
lstMain.setModel(listModel);
|
||||||
reloadRecordItems();
|
reloadRecordItems();
|
||||||
|
|
||||||
|
btnReload.setIcon(AllIcons.Actions.Refresh);
|
||||||
btnReload.addActionListener(new AbstractAction() {
|
btnReload.addActionListener(new AbstractAction() {
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
|
Loading…
Reference in New Issue