Skip to content

Commit e0c33d0

Browse files
authored
1.3.0 - merge, and License change (#30)
* File Merge * First technique tried * Looks like a contender * Housekeeping * Better seed pairing * A LOT better * and nodelist rotation * Refactor out algorithm better * WIP - refactor and merge files * builds OK * File Merge - travelling salesman * updated tests * Improved Split and Merge * Support recleaning * temp removal of EliminateNeedlessTravelling * SplitFile improvements * Changin License * Swapped out spectre console * Complete License change
1 parent a099220 commit e0c33d0

33 files changed

Lines changed: 38 additions & 39 deletions

BuildItYourself.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ The `dotnet restore` command above gets the runtimes for `linux-x64`, `linux-arm
8282

8383
## License
8484

85-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
85+
This project is licensed under the AGPL License - see the [LICENSE](LICENSE) file for details

GCodeClean.Tests/Dedup.Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2020-2023 - Lee HUMPHRIES (lee@md8n.com). All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System;
55
using System.Collections.Generic;

GCodeClean.Tests/Line.Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Copyright (c) 2021 - Lee HUMPHRIES (lee@md8n.com) and contributors. All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
1+
// Copyright (c) 2021-2023 - Lee HUMPHRIES (lee@md8n.com) and contributors. All rights reserved.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using GCodeClean.Structure;
55

GCodeClean.Tests/Merge.Tests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2023 - Lee HUMPHRIES (lee@md8n.com) and contributors. All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System.Collections.Generic;
55
using System.Linq;
@@ -8,7 +8,6 @@
88
using Xunit.Abstractions;
99

1010
using GCodeClean.Merge;
11-
using GCodeClean.Shared;
1211

1312

1413
namespace GCodeClean.Tests

GCodeClean.Tests/Processing.Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2020-2023 - Lee HUMPHRIES (lee@md8n.com). All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System;
55
using System.Collections.Generic;

GCodeClean.Tests/Workflow.Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Copyright (c) 2020-2023 - Lee HUMPHRIES (lee@md8n.com). All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
1+
// Copyright (c) 2023 - Lee HUMPHRIES (lee@md8n.com). All rights reserved.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System;
55
using System.Collections.Generic;

GCodeClean/IO/AsyncTextFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2020-22 - Lee HUMPHRIES (lee@md8n.com) and contributors. All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System.Collections.Generic;
55
using System.IO;

GCodeClean/IO/TextFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2020-2023 - Lee HUMPHRIES (lee@md8n.com) and contributors. All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System.Collections.Generic;
55
using System.IO;

GCodeClean/Merge/Algorithm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2023 - Lee HUMPHRIES (lee@md8n.com). All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System;
55
using System.Collections.Generic;

GCodeClean/Merge/Edges.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2023 - Lee HUMPHRIES (lee@md8n.com). All rights reserved.
2-
// Licensed under the MIT license. See LICENSE.txt file in the project root for details.
2+
// Licensed under the AGPL license. See LICENSE.txt file in the project root for details.
33

44
using System.Collections.Generic;
55
using System.Linq;

0 commit comments

Comments
 (0)