mirror of https://github.com/rusefi/RomRaider.git
Fixed the missing Table Tree problem when running RomRaider on systems using IcedTea or OpenJDK JVM.
git-svn-id: https://svn2.assembla.com/svn/romraider/trunk@334 38686702-15cf-42e4-a595-3071df8bf5ea
This commit is contained in:
parent
9ff80a3c88
commit
bcea252c9d
|
@ -59,8 +59,8 @@ This is the tenth beta release of the upcoming official 0.5.3b release.
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
--- Editor ---
|
--- Editor ---
|
||||||
- Added support for multiple-state switches. This will result in a Switch Table
|
- Added support for multiple-state switches. Switch Tables will now use
|
||||||
being rendered with Radio Buttons rather than a checkbox.
|
Radio Buttons rather than a Checkbox.
|
||||||
- Added ECU defintion data validation for Switch Tables. If the ROM image data
|
- Added ECU defintion data validation for Switch Tables. If the ROM image data
|
||||||
does not match one of the switch states according to the definition then a
|
does not match one of the switch states according to the definition then a
|
||||||
warning is presented and the table is locked from editing.
|
warning is presented and the table is locked from editing.
|
||||||
|
@ -71,10 +71,12 @@ This is the tenth beta release of the upcoming official 0.5.3b release.
|
||||||
- Added a ROM Edit Stamp to 32 bit ROMs consisting of the YYMMDD and an
|
- Added a ROM Edit Stamp to 32 bit ROMs consisting of the YYMMDD and an
|
||||||
incremental count value. This Edit Stamp is displayed in the View->ROM
|
incremental count value. This Edit Stamp is displayed in the View->ROM
|
||||||
properties menu item.
|
properties menu item.
|
||||||
|
- Fixed the missing Table Tree problem when running RomRaider on systems
|
||||||
|
using IcedTea or OpenJDK JVM.
|
||||||
--- Logger ---
|
--- Logger ---
|
||||||
- Added more selection to the Right-click menu associated with the LogFile text
|
- Added more selections to the Right-click menu associated with the LogFile text
|
||||||
field.
|
field.
|
||||||
|
- Made Fast Polling the default mode for the Logger connection.
|
||||||
|
|
||||||
0.5.3b RC9 (06/30/2011)
|
0.5.3b RC9 (06/30/2011)
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
|
@ -238,6 +238,7 @@ public class ECUEditor extends AbstractFrame {
|
||||||
public void addRom(Rom input) {
|
public void addRom(Rom input) {
|
||||||
// add to ecu image list pane
|
// add to ecu image list pane
|
||||||
RomTreeNode romNode = new RomTreeNode(input, settings.getUserLevel(), settings.isDisplayHighTables());
|
RomTreeNode romNode = new RomTreeNode(input, settings.getUserLevel(), settings.isDisplayHighTables());
|
||||||
|
imageList.setRootVisible(true);
|
||||||
imageRoot.add(romNode);
|
imageRoot.add(romNode);
|
||||||
imageList.updateUI();
|
imageList.updateUI();
|
||||||
|
|
||||||
|
@ -266,6 +267,7 @@ public class ECUEditor extends AbstractFrame {
|
||||||
showMessageDialog(this, infoPanel, "ECU Revision is Obsolete", INFORMATION_MESSAGE);
|
showMessageDialog(this, infoPanel, "ECU Revision is Obsolete", INFORMATION_MESSAGE);
|
||||||
}
|
}
|
||||||
input.setContainer(this);
|
input.setContainer(this);
|
||||||
|
imageList.setRootVisible(false);
|
||||||
imageList.updateUI();
|
imageList.updateUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue