Things to do before releasing as 0.12.0:
-Make sure Makefiles work
+[DONE] Make sure Makefiles work
Get images working
[PARTIAL] Incorporate Arved Sandstrom's simple-link implementation
[DONE] Switch to using Status object as return from layout()
[PARTIAL] Implement basic keeps
[DONE]Incorporate Eric Schaeffer's fix to tables in static-content
[DONE] Incorporate Kelly Campell's fixes to GifJpegImage
-Incorporate Eric Schaeffer's further table fixes
+[PARTIAL] Incorporate Eric Schaeffer's further table fixes
Incorporate Eric Schaeffer's background colour implementation
Other Bugs to fix:
return new Status(Status.AREA_FULL_SOME);
}
}
- height += blockArea.getHeight();
+ // bug fix from Eric Schaeffer
+ // height += blockArea.getHeight();
+ height = blockArea.getHeight();
}
blockArea.end();
blockArea.end();
area.addChild(blockArea);
area.addDisplaySpace(largestCellHeight);
- area.increaseHeight(largestCellHeight);
+ // bug fix from Eric Schaeffer
+ //area.increaseHeight(largestCellHeight);
if (spaceAfter != 0) {
area.addDisplaySpace(spaceAfter);