| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
|---|
| 2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-Strict.dtd"> |
|---|
| 3 |
<html> |
|---|
| 4 |
<head> |
|---|
| 5 |
|
|---|
| 6 |
<?php include "func.php"; ?> |
|---|
| 7 |
|
|---|
| 8 |
<?php head(); ?> |
|---|
| 9 |
|
|---|
| 10 |
</head> |
|---|
| 11 |
<body> |
|---|
| 12 |
|
|---|
| 13 |
<?php nav(); ?> |
|---|
| 14 |
|
|---|
| 15 |
<div id="main"> |
|---|
| 16 |
<h1>Features</h1> |
|---|
| 17 |
|
|---|
| 18 |
<p>Gaphor has the following features:</p> |
|---|
| 19 |
<ul> |
|---|
| 20 |
<li>Gaphor has a UML 2.0 compliant data model. This guarantees future |
|---|
| 21 |
compatibility with other modeling tools.</li> |
|---|
| 22 |
<li>The data model is developed in Gaphor itself!</li> |
|---|
| 23 |
<li>The following diagram types are supported: |
|---|
| 24 |
<ul> |
|---|
| 25 |
<li>Class diagrams</li> |
|---|
| 26 |
<li>Use case diagrams</li> |
|---|
| 27 |
<li>Action diagrams</li> |
|---|
| 28 |
<li>Component diagrams</li> |
|---|
| 29 |
</ul> |
|---|
| 30 |
</li> |
|---|
| 31 |
<li>Support for stereotypes on classes, interfaces and packages.</li> |
|---|
| 32 |
<li>SVG diagram exports.</li> |
|---|
| 33 |
<li>Cross platform: Gaphor works on both Unix (including Mac OS X) and Windows.</li> |
|---|
| 34 |
<li>Stable file format. We warrant that older files will be readable by Gaphor.</li> |
|---|
| 35 |
<li>Plugin infrastructure makes Gaphor easy to extend.</li> |
|---|
| 36 |
</ul> |
|---|
| 37 |
|
|---|
| 38 |
<h2>History</h2> |
|---|
| 39 |
|
|---|
| 40 |
<p>For those of you who are interested in how Gaphor develops, here's a |
|---|
| 41 |
list of major changes in each release.</p> |
|---|
| 42 |
|
|---|
| 43 |
<h3>Release 0.8</h3> |
|---|
| 44 |
|
|---|
| 45 |
<ul> |
|---|
| 46 |
<li>Support for automatic realization dependencies between components and interfaces</li> |
|---|
| 47 |
<li>Actions: flow final, fork, join and object nodes</li> |
|---|
| 48 |
<li>Assembly connector</li> |
|---|
| 49 |
<li>Object inspector panel added</li> |
|---|
| 50 |
<li>PDF file export</li> |
|---|
| 51 |
<li>Gaphorconvert utility, which allows easy batch conversion of diagrams into SVG or PDF files</li> |
|---|
| 52 |
<li>require gtk+ 2.8.<i>x</i></li> |
|---|
| 53 |
</ul> |
|---|
| 54 |
|
|---|
| 55 |
<h3>Release 0.7</h3> |
|---|
| 56 |
|
|---|
| 57 |
<ul> |
|---|
| 58 |
<li>XMI export plugin</li> |
|---|
| 59 |
<li>Item alignment</li> |
|---|
| 60 |
<li>Full featured undo mechanism</li> |
|---|
| 61 |
<li>Copy/paste</li> |
|---|
| 62 |
</ul> |
|---|
| 63 |
|
|---|
| 64 |
<h3>Release 0.6</h3> |
|---|
| 65 |
|
|---|
| 66 |
<ul> |
|---|
| 67 |
<li>Code reverse engineer plugin (for Python code)</li> |
|---|
| 68 |
<li>Diagram layout engine (automatically order classes and relations)</li> |
|---|
| 69 |
<li>Improved plugin support.</li> |
|---|
| 70 |
</ul> |
|---|
| 71 |
|
|---|
| 72 |
<h3>Release 0.5</h3> |
|---|
| 73 |
|
|---|
| 74 |
<ul> |
|---|
| 75 |
<li>New model elements: Interfaces, UseCases, Stereotypes.</li> |
|---|
| 76 |
<li>Models can be reordered using drag-and-drop.</li> |
|---|
| 77 |
<li>Plugin support.</li> |
|---|
| 78 |
<li>Works on Windows.</li> |
|---|
| 79 |
</ul> |
|---|
| 80 |
|
|---|
| 81 |
<h3>Release 0.4</h3> |
|---|
| 82 |
|
|---|
| 83 |
<ul> |
|---|
| 84 |
<li>Action diagrams.</li> |
|---|
| 85 |
<li>Improved look and feel.</li> |
|---|
| 86 |
</ul> |
|---|
| 87 |
|
|---|
| 88 |
<h3>Release 0.3</h3> |
|---|
| 89 |
|
|---|
| 90 |
<ul> |
|---|
| 91 |
<li>Class diagrams.</li> |
|---|
| 92 |
<li>UML 2.0 compliant data model.</li> |
|---|
| 93 |
</ul> |
|---|
| 94 |
|
|---|
| 95 |
</div> |
|---|
| 96 |
</body> |
|---|
| 97 |
</html> |
|---|
| 98 |
|
|---|