Skip to content

Commit

Permalink
Release 2.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
panthernet committed Jan 12, 2018
1 parent ae1a942 commit f5b89bc
Show file tree
Hide file tree
Showing 109 changed files with 29,294 additions and 15,485 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,4 @@ UpgradeLog*.XML
#LocalHistory VS plugin
.localhistory/
.settings/launch.json
/.vs/GraphX for .NET/v15/Server/sqlite3
4 changes: 2 additions & 2 deletions Documents/AIV.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("2.3.6.0")]
[assembly: AssemblyFileVersion("2.3.6.0")]
[assembly: AssemblyVersion("2.3.7.0")]
[assembly: AssemblyFileVersion("2.3.7.0")]
5 changes: 4 additions & 1 deletion Documents/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
WIP 2.3.7
RELEASE 2.3.7
- Added edge drag functionality to be able to reattach edge to another vertex (thanks to LaborJos)
- Fixed SimpleTreeLayout vertex sizes supplement (thanks to edgardozoppi)
- Fixed and improved parallel edge handling (thanks to perturbare)
- Fixed RemoveEdge() method were not removing edges from data graph (thanks to perturbare)
- Removed METRO support and example
- Added UAP (UWP) support for Windows 10+ platform (VS2017)
- Minor bugfixes

RELEASE 2.3.6
DETAILED CHANGELOG:
Expand Down
230 changes: 0 additions & 230 deletions Examples/METRO.SimpleGraph/METRO.SimpleGraph.csproj

This file was deleted.

Binary file not shown.
37 changes: 0 additions & 37 deletions Examples/METRO.SimpleGraph/Package.appxmanifest

This file was deleted.

16 changes: 0 additions & 16 deletions Examples/METRO.SimpleGraph/Properties/AssemblyInfo.cs

This file was deleted.

4 changes: 0 additions & 4 deletions Examples/METRO.SimpleGraph/packages.config

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Application
x:Class="METRO.SimpleGraph.App"
x:Class="UAP.SimpleGraph.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=234227

namespace METRO.SimpleGraph
namespace UAP.SimpleGraph
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
<Page
x:Class="METRO.SimpleGraph.MainPage"
x:Class="UAP.SimpleGraph.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:METRO.SimpleGraph"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls1="using:GraphX.Controls"
UseLayoutRounding="True"
xmlns:graphx="http://schemas.panthernet.ru/graphx/"
xmlns:models="using:UAP.SimpleGraph.Models"
mc:Ignorable="d" >

<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Grid Background="Black">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>


<controls1:ZoomControl x:Name="zc" ViewFinderVisibility="Collapsed" Grid.Row="1">
<local:GraphAreaExample x:Name="graph" />
<models:GraphAreaExample x:Name="graph" />
</controls1:ZoomControl>

<Grid Grid.Row="0" Margin="5">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
Expand All @@ -12,10 +11,11 @@
using GraphX.PCL.Common.Enums;
using GraphX.PCL.Logic.Algorithms.LayoutAlgorithms;
using GraphX.PCL.Logic.Algorithms.OverlapRemoval;
using UAP.SimpleGraph.Models;

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238

namespace METRO.SimpleGraph
namespace UAP.SimpleGraph
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
Loading

0 comments on commit f5b89bc

Please sign in to comment.