Skip to content

Commit c37e436

Browse files
committed
Update Versions & CHANGELOG
1 parent 978e5e7 commit c37e436

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,35 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Diagrams (3.0.0-beta.3) - 2022-09-18
9+
10+
### Added
11+
12+
- Support for `LinkFactory` to return null in order to not create an ongoing link
13+
- Support for free links (no source/target required)
14+
- `PositionAnchor` which reprensents a simple plain position (mutable)
15+
- `ArrowHeadControl` to control a link's Source/Target on the fly
16+
- `attached` css class to attached links
17+
18+
### Changed
19+
20+
- Replace `OngoingPosition` with the new `PositionAnchor`
21+
- `BaseLinkModel.Target` will never be null anymore. An ongoing link will have a position anchor as the target
22+
- `Links.Factory` signature now takes the diagram, source (model) and the target anchor
23+
- Move `DynamicAnchor` back to `Anchors` namespace and seal all `Anchor` classes
24+
25+
### Fixed
26+
27+
- Links attached to links not refreshing when the others are
28+
- `LinkPathPositionProvider` not working with maxlength ratios
29+
- Deleting a link not deleting the links attached to it
30+
31+
### Removed
32+
33+
- `PositionProvider` argument from `ExecutableControl` for more freedom
34+
- `Id` and `Refresh` from `ILinkable`
35+
- Unused `Offset` from `Anchor` and make `Model` nullable
36+
837
## Diagrams (3.0.0-beta.2) - 2022-09-11
938

1039
### Added

src/Blazor.Diagrams.Algorithms/Blazor.Diagrams.Algorithms.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AssemblyVersion>3.0.0</AssemblyVersion>
1111
<FileVersion>3.0.0</FileVersion>
1212
<RepositoryUrl>https://github.com/zHaytam/Blazor.Diagrams</RepositoryUrl>
13-
<Version>3.0.0-beta.2</Version>
13+
<Version>3.0.0-beta.3</Version>
1414
<PackageId>Z.Blazor.Diagrams.Algorithms</PackageId>
1515
<PackageTags>blazor diagrams diagramming svg drag algorithms layouts</PackageTags>
1616
<Product>Z.Blazor.Diagrams.Algorithms</Product>

src/Blazor.Diagrams.Core/Blazor.Diagrams.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AssemblyVersion>3.0.0</AssemblyVersion>
1111
<FileVersion>3.0.0</FileVersion>
1212
<RepositoryUrl>https://github.com/Blazor-Diagrams/Blazor.Diagrams</RepositoryUrl>
13-
<Version>3.0.0-beta.2</Version>
13+
<Version>3.0.0-beta.3</Version>
1414
<PackageId>Z.Blazor.Diagrams.Core</PackageId>
1515
<PackageTags>blazor diagrams diagramming svg drag</PackageTags>
1616
<Product>Z.Blazor.Diagrams.Core</Product>

src/Blazor.Diagrams/Blazor.Diagrams.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<FileVersion>3.0.0</FileVersion>
1010
<RepositoryUrl>https://github.com/Blazor-Diagrams/Blazor.Diagrams</RepositoryUrl>
1111
<Description>A fully customizable and extensible all-purpose diagrams library for Blazor</Description>
12-
<Version>3.0.0-beta.2</Version>
12+
<Version>3.0.0-beta.3</Version>
1313
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1414
<PackageTags>blazor diagrams diagramming svg drag</PackageTags>
1515
<PackageId>Z.Blazor.Diagrams</PackageId>

0 commit comments

Comments
 (0)