diff --git a/README.md b/README.md index c264801b4..f7d2834b3 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ | | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.serialization.svg)](https://www.nuget.org/packages/QuikGraph.Serialization) QuikGraph.Serialization | | | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.graphviz.svg)](https://www.nuget.org/packages/QuikGraph.Graphviz) QuikGraph.Graphviz | | | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.data.svg)](https://www.nuget.org/packages/QuikGraph.Data) QuikGraph.Data | +| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.msagl.svg)](https://www.nuget.org/packages/QuikGraph.MSAGL) QuikGraph.MSAGL | | **License** | MS-PL | # QuikGraph @@ -67,6 +68,7 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules. - [QuikGraph.Serialization](https://www.nuget.org/packages/QuikGraph.Serialization) - [QuikGraph.Graphviz](https://www.nuget.org/packages/QuikGraph.Graphviz) - [QuikGraph.Data](https://www.nuget.org/packages/QuikGraph.Data) +- [QuikGraph.MSAGL](https://www.nuget.org/packages/QuikGraph.MSAGL) ### Where to go next? diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 61a8f6c4b..7939ae5bd 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Release notes -## What's new in 2.2.0 June 7 2020 and June 11 2020 +## What's new in 2.2.0 June 7 2020, June 11 2020 and June 18 2020 ### QuikGraph @@ -24,6 +24,22 @@ * Fully document library. * Use JetBrains annotations all over the library as much as possible. +### QuikGraph.MSAGL + +Migrate the library from GLEE to [MSAGL](https://www.microsoft.com/en-us/research/project/microsoft-automatic-graph-layout) (MSAGL is the successor of GLEE). + +#### Fixes: +* Fix typo in populator algorithm. +* Fix a bug when converting undirected graph to MSAGL graph. + +### API Breaks +* Some public API breaks (but should remain simple to do a migration). + +#### Misc: +* Clean the library code. +* Fully document library. +* Use JetBrains annotations all over the library as much as possible. + --- ## What's new in 2.1.1 June 6 2020 diff --git a/docs/index.md b/docs/index.md index f041ead3f..272895943 100644 --- a/docs/index.md +++ b/docs/index.md @@ -53,4 +53,8 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules. PM> Install-Package QuikGraph.Data +[![Nuget Status](https://img.shields.io/nuget/v/quikgraph.msagl.svg)](https://www.nuget.org/packages/QuikGraph.MSAGL) [QuikGraph.MSAGL](https://www.nuget.org/packages/QuikGraph.MSAGL) + + PM> Install-Package QuikGraph.MSAGL + \ No newline at end of file diff --git a/src/QuikGraph.MSAGL/QuikGraph.MSAGL.csproj b/src/QuikGraph.MSAGL/QuikGraph.MSAGL.csproj index 22e9b7073..82bf9ebbd 100644 --- a/src/QuikGraph.MSAGL/QuikGraph.MSAGL.csproj +++ b/src/QuikGraph.MSAGL/QuikGraph.MSAGL.csproj @@ -28,7 +28,17 @@ Supports Source Link true QuikGraph.MSAGL - ➟ Release 2.2.0 + ➟ Release 2.2.0 +Rework the original QuickGraph.Glee module into QuikGraph.MSAGL (MSAGL is the successor of GLEE). This make possible to use the bridge from QuikGraph to MSAGL. + +Fixes: +- Fix typo in populator algorithm. +- Fix a bug when converting undirected graph to MSAGL graph. + +Misc: +- Clean the library code. +- Fully document library. +- Use JetBrains annotations all over the library as much as possible. QuickGraph QuikGraph Graph Structure Algorithm C# .NET MSAGL @@ -41,6 +51,7 @@ Supports Source Link +