-
-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/new-blueprint
- Loading branch information
Showing
20 changed files
with
170 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,13 @@ jobs: | |
uses: little-core-labs/[email protected] | ||
id: tagName | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
uses: actions/setup-dotnet@v2.1.0 | ||
with: | ||
dotnet-version: '5.0.x' | ||
dotnet-version: '6.0.x' | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal | ||
- name: Create release branch | ||
uses: peterjgrainger/[email protected] | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,20 +12,18 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
uses: actions/setup-dotnet@v2.1.0 | ||
with: | ||
dotnet-version: '5.0.x' | ||
dotnet-version: '6.0.x' | ||
source-url: https://api.nuget.org/v3/index.json | ||
env: | ||
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_KEY }} | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal | ||
- name: Publish package | ||
uses: brandedoutcast/[email protected] | ||
with: | ||
PACKAGE_NAME: Nodify | ||
PROJECT_FILE_PATH: Nodify/Nodify.csproj | ||
NUGET_KEY: ${{ secrets.NUGET_KEY }} | ||
TAG_COMMIT: false | ||
- name: Publish the package | ||
run: dotnet nuget push */bin/Release/*.nupkg | ||
env: | ||
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_KEY }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
## Changelog | ||
|
||
#### **In development** | ||
> - Breaking Changes: | ||
> - Features: | ||
> - Bugfixes: | ||
#### **Version 2.0.1** | ||
> - Bugfixes: | ||
> - Fixed pending connection default style | ||
#### **Version 2.0.0** | ||
> - Breaking Changes: | ||
> - Renamed Offset to ViewportLocation in NodifyEditor | ||
> - Renamed Scale to ViewportZoom in NodifyEditor | ||
> - Renamed MinScale to MinViewportZoom in NodifyEditor | ||
> - Renamed MaxScale to MaxViewportZoom in NodifyEditor | ||
> - Renamed AppliedTransform to ViewportTransform in NodifyEditor | ||
> - Renamed DirectionalConnection to LineConnection | ||
> - Removed BringIntoViewAnimationDuration from NodifyEditor | ||
> - Removed Viewport dependency property from NodifyEditor | ||
> - Removed ActualSize dependency property from StateNode | ||
> - Removed Icon dependency property from Node as the icon can *(and should)* be added in the HeaderTemplate if necessary | ||
> - PART_ItemsHost is now required for NodifyEditor to work | ||
> - ItemContainers cannot be used outside a NodifyEditor anymore | ||
> - ZoomAtPosition now requires graph space coordinates instead of screen space coordinates | ||
> - Removed custom value converters | ||
> - Made DependencyObjectExtensions internal | ||
> - Removed the http://miroiu.github.io/winfx/xaml/nodify xaml prefix | ||
> - Features: | ||
> - Added ResizeStartedEvent routed event to GroupingNode | ||
> - Added ViewportSize - **OneWayToSource** dependency property to NodifyEditor | ||
> - Added ActualSize - **OneWayToSource** dependency property to ItemContainer | ||
> - Added DecoratorContainer and DecoratorContainerStyle dependency properties to NodifyEditor | ||
> - Added RemoveConnectionCommand command to NodifyEditor | ||
> - Added DisconnectCommand and SplitCommand commands to BaseConnection | ||
> - Added ContentBrush dependency property to NodifyEditor | ||
> - Added HasFooter dependency property to Node | ||
> - Added FitToScreen command to NodifyEditor and EditorCommands | ||
> - Added onFinish callback to BringIntoView in NodifyEditor | ||
> - Added ArrowSize and Spacing dependency properties to all connections inheriting from BaseConnection | ||
> - Added BringIntoViewMaxDuration dependency property to NodifyEditor | ||
> - Added BringIntoViewSpeed dependency property to NodifyEditor | ||
> - Auto panning speed now scales with the zoom factor. | ||
> - Bugfixes: | ||
> - Every public property or method should work with graph space coordinates | ||
> - Disable auto panning when panning is disabled | ||
> - Min zoom could be set to a very small value | ||
> - Bring into view was not disabling all interfering operations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.