Skip to content

Commit

Permalink
Revert "Change license to GNU Affero General Public License"
Browse files Browse the repository at this point in the history
This reverts commit fbfa0e7.
  • Loading branch information
wieslawsoltes committed Dec 18, 2023
1 parent fbfa0e7 commit a00ac3b
Show file tree
Hide file tree
Showing 287 changed files with 318 additions and 5,769 deletions.
661 changes: 0 additions & 661 deletions COPYING

This file was deleted.

2 changes: 1 addition & 1 deletion Dock.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{C4E2763D
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{D16F65F7-7F44-40DB-B82A-1344A05D121D}"
ProjectSection(SolutionItems) = preProject
LICENSE.TXT = LICENSE.TXT
README.md = README.md
COPYING = COPYING
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "git", "git", "{E58CB250-1197-4D0F-BBC1-F9733B1B48DC}"
Expand Down
21 changes: 21 additions & 0 deletions LICENSE.TXT
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) Wiesław Šoltés

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
22 changes: 2 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A docking layout system.

## About

**Dock** is a docking layout system for [Avalonia](https://github.com/AvaloniaUI/Avalonia) applications. Use of Dock is governed by the GNU Affero General Public License.
**Dock** is a docking layout system for [Avalonia](https://github.com/AvaloniaUI/Avalonia) applications. Use of Dock is governed by the MIT License.

[![Dock](images/Dock.png)](images/Dock.png)

Expand Down Expand Up @@ -62,22 +62,4 @@ Install-Package Dock.Model.Mvvm -Pre

## License

Dock is licensed under the [GNU Affero General Public License](COPYING).

```
Dock A docking layout system.
Copyright (C) 2023 Wiesław Šoltés
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
```
Dock is licensed under the [MIT license](LICENSE.TXT).
4 changes: 2 additions & 2 deletions build/Base.props
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>11.0.0.4</VersionPrefix>
<VersionPrefix>11.0.0.3</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Wiesław Šoltés</Authors>
<Company>Wiesław Šoltés</Company>
<Description>A docking layout system.</Description>
<Copyright>Copyright © Wiesław Šoltés 2023</Copyright>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/wieslawsoltes/Dock</PackageProjectUrl>
<PackageTags>dock;docking;layout;avalonia</PackageTags>
</PropertyGroup>
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/App.axaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
<!--
Dock A docking layout system.
Copyright (C) 2023 Wiesław Šoltés
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<Application xmlns="https://github.com/avaloniaui"
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:DockMvvmSample"
xmlns:ids="using:Dock.Settings"
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/App.axaml.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
using Avalonia;
using Avalonia;
using Avalonia.Controls.ApplicationLifetimes;
using Avalonia.Markup.Xaml;
using DockMvvmSample.Themes;
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/DemoData.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models;

public class DemoData
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Documents/DemoDocument.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Documents;

public class DemoDocument
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool1.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool1
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool2.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool2
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool3.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool3
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool4.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool4
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool5.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool5
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool6.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool6
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool7.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool7
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Models/Tools/Tool8.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/


namespace DockMvvmSample.Models.Tools;

public class Tool8
Expand Down
19 changes: 1 addition & 18 deletions samples/DockMvvmSample/Program.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
/*
* Dock A docking layout system.
* Copyright (C) 2023 Wiesław Šoltés
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
using System;
using System;
using Avalonia;

namespace DockMvvmSample;
Expand Down
Loading

0 comments on commit a00ac3b

Please sign in to comment.