[graphl-cvs] graphl build.xml changelog.txt
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2004-12-29 14:32:08
|
Update of /cvsroot/graphl/graphl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19091 Modified Files: build.xml changelog.txt Log Message: - FEATURE: updated applets parameters to match application command line options - FEATURE: GraphlPane now maintains a pointer to node+edge the mouse is currently over - FEATURE: started implementation of generic type menu - FEATURE: started implementation of node manipulator - BUG: fixed graph context menu - CODE: moved AbstractManipulator to correct package - CODE: added setHeight + setWidth in node interface - CODE: replaced zoomButton with a label - DOC: some documentation Index: changelog.txt =================================================================== RCS file: /cvsroot/graphl/graphl/changelog.txt,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** changelog.txt 4 Oct 2004 10:21:05 -0000 1.12 --- changelog.txt 29 Dec 2004 14:31:27 -0000 1.13 *************** *** 2,5 **** --- 2,96 ---- ================== + 2004-12-29, f/0: + - FEATURE: updated applets parameters to match application command line options + - FEATURE: GraphlPane now maintains a pointer to node+edge the mouse is currently over + - FEATURE: started implementation of generic type menu + - FEATURE: started implementation of node manipulator + - CODE: moved AbstractManipulator to correct package + - CODE: added setHeight + setWidth in node interface + - CODE: replaced zoomButton with a label + - DOC: some documentation + + 2004-12-19, f/0: + - BUG: fixed graph context menu + - CODE: updated applet code + + 2004-12-10, f/0; + - FEATURE: added context menu for graph to switch configurations in the applet or without menubar + + 2004-11-30, f/0; + - FEATURE: added menu to choose/switch configuration at runtime + - FEATURE: extension of config.rdf to include two sample configurations + - FEATURE: extended built-in vocabularies + - FEATURE: RepulsionNodeLayouter has configurable strength + - BUG: fixed context menu for macs + - BUG: fixed cloning of BoxNodePainter + - CODE: added Edge.invert() + - CODE: added FacetRegistry.updateFacets() + - CODE: moved default facet selection to context menu + - CODE: removed GraphlPane.getScreenPointForNode() calls (use only graph coords) + - CODE: misc. minor bugfixes and restructuring + - DOC: added first package.html file + + 2004-10-27, f/0; + - FEATURE: finally implemented sortgedNodeLayouter with proportional layout + - FEATURE: nodes are placed at deterministic locations initially + (loading the same file twice will result in the same layout) + - FEATURE: minor performance enhancements for repulsionnodelayouter + - FEATURE: renamed "controls" command line option to "toolbar" + - BUG: block graph update events during loading + - CODE: AbstractFacet.assignedElements is now a list, to be able to sort it + + 2004-10-21, f/0; + - FEATURE: SortedNodeLayouter sorts on arbitrary property + - FEATURE: SortedNodeLayouter configurable in GUI + configfile + - FEATURE: BoxNodePainter: configurable roundedRect + cornerRadius + - BUG: updating painter list in GraphlPane menus + - BUG: scale center in center of viewport + - BUG: added beaninfo for manhattanEdgePainter + + 2004-10-19, f/0; + - FEATURE: further commandline options to remove controls and menubar + - FEATURE: load url from commandline + - FEATURE: refresh every n seconds commandline option + - FEATURE: affine coordinate transformation for geo positioning on a map + - FEATURE: removed length property of edge, replaced by generic length calculation from any property in springEdgeLayouter + - FEATURE: configurable stroke for BoxNodePainter, ShapeNodePainter + - FEATURE: replaced rdfutils function by own implementation in ParseUtils + + 2004-10-14, f/0; + - FEATURE: added z-index support for painting nodes & edges + - FEATURE: BoxNodePainter draws rounded rectangles + - FEATURE: Font for boxnodepainter is configurable + - FEATURE: labelcolor of edgepainter is configurable + - FEATURE: added utility functions for namespace compression/expansion + - BUG: removed value property from graphelements + - BUG: stopping layouter when displaying contextmenus etc. + - BUG: fixed panning after startup + - CODE: moved layouter to graphpane + - CODE: removed obsolete commented-out code + + 2004-10-05, f/0; + * added command line option support in GraphlApplication + * added "Exit" menu entry (for quitting without window decorations) + * fixes for LineEdgePainter and ShapeNodePainter + * minor documentation updates + * more default config tweaking + + 2004-10-04, f/0; + * added width and height properties to the Node interface, to allow layouters to define a bounding box for nodes. + * AbsoluteNodeLayouter will also use bounding box information for maps etc. This is currently only used in imageNodePainter + * added DirectedEdgeLayouter for laying out hierarchical and directed graphs like trees. this works nice for rdf schemas et al. + * Added ShapeNodePainter to draw labels as java2d shapes (currently predefined: circle, square, cross and X). No label yet. + * using JavaBeans/property pages for facet configuration. added a dependency to com.l2fprod package, implementing paroperty sheets - i want to get rid of this again in the future, but i don't have time currently to implement such bullshit that should be in the jdk anyhow + * Added a StrokeChooser for defining strokes for node and edgepainters + * added a ParseUtils class for parsing colors and strokes from literals + * greatly extended default configuration for facets + * some documentation updates (javadoc runs without warnings now) + + 2004-09-23, f/0: + * changed the GraphFacetRegistry to work with configuration nodes, not graphs + * introduced new interface PropertySet + 2004-08-23, f/0: ### RELEASE 0.0.2 Index: build.xml =================================================================== RCS file: /cvsroot/graphl/graphl/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build.xml 4 Oct 2004 10:21:05 -0000 1.6 --- build.xml 29 Dec 2004 14:31:26 -0000 1.7 *************** *** 11,14 **** --- 11,16 ---- <fileset file="graphl.jar"/> <fileset file="lib/rdfapi.jar"/> + <fileset file="lib/l2fprod-common-sheet.jar"/> + <fileset file="lib/l2fprod-common-fontchooser.jar"/> </copy> <copy todir="web/WEB-INF/classes"><fileset dir="bin"/></copy> |