Skip to content

Commit 0f69ce5

Browse files
authored
Merge pull request #7 from clear-code/add-license-text
Add MPL License text to RepostConfirmationCanceler
2 parents 4f0a5cf + adb8168 commit 0f69ce5

File tree

10 files changed

+64
-7
lines changed

10 files changed

+64
-7
lines changed

COPYING

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
The source code for RepostConfirmationCanceler.exe are licensed under the MPL v2.0 license.
2+
3+
All other code are licensed under the GPL v3 license.
4+
5+
You can obtain the full text of the MPL v2.0 license and the GPL v3 license from the following files.
6+
7+
LICENSES\MPL2.txt
8+
LICENSES\GPL3.txt
File renamed without changes.

LICENSES/MPL2.txt

Whitespace-only changes.

RepostConfirmationCanceler/ConfigLoader.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
using Microsoft.Win32;
1+
/*
2+
This Source Code Form is subject to the terms of the Mozilla Public
3+
License, v. 2.0. If a copy of the MPL was not distributed with this
4+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
5+
6+
Copyright (c) 2025 ClearCode Inc.
7+
*/
8+
using Microsoft.Win32;
29
using System;
310
using System.Collections.Generic;
411
using System.IO;

RepostConfirmationCanceler/EdgeConfirmationDialogCanceler.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
using System;
1+
/*
2+
This Source Code Form is subject to the terms of the Mozilla Public
3+
License, v. 2.0. If a copy of the MPL was not distributed with this
4+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
5+
6+
Copyright (c) 2025 ClearCode Inc.
7+
*/
8+
using System;
29
using System.Diagnostics;
310
using System.Linq;
411
using System.Threading.Tasks;

RepostConfirmationCanceler/Logger.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
using System;
1+
/*
2+
This Source Code Form is subject to the terms of the Mozilla Public
3+
License, v. 2.0. If a copy of the MPL was not distributed with this
4+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
5+
6+
Copyright (c) 2025 ClearCode Inc.
7+
*/
8+
using System;
29
using System.IO;
310

411
namespace RepostConfirmationCanceler

RepostConfirmationCanceler/ProcessCommunicator.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
using System;
1+
/*
2+
This Source Code Form is subject to the terms of the Mozilla Public
3+
License, v. 2.0. If a copy of the MPL was not distributed with this
4+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
5+
6+
Copyright (c) 2025 ClearCode Inc.
7+
*/
8+
using System;
29
using System.IO;
310
using System.IO.Pipes;
411
using System.Text;

RepostConfirmationCanceler/Program.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
using Microsoft.Win32;
1+
/*
2+
This Source Code Form is subject to the terms of the Mozilla Public
3+
License, v. 2.0. If a copy of the MPL was not distributed with this
4+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
5+
6+
Copyright (c) 2025 ClearCode Inc.
7+
*/
8+
using Microsoft.Win32;
29
using RepostConfirmationCanceler;
310
using System;
411
using System.Collections.Generic;

RepostConfirmationCanceler/RunTimeMode.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
namespace RepostConfirmationCanceler
1+
/*
2+
This Source Code Form is subject to the terms of the Mozilla Public
3+
License, v. 2.0. If a copy of the MPL was not distributed with this
4+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
5+
6+
Copyright (c) 2025 ClearCode Inc.
7+
*/
8+
namespace RepostConfirmationCanceler
29
{
310
internal enum RunTimeMode
411
{

RepostConfirmationCanceler/RuntimeContext.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
using System;
1+
/*
2+
This Source Code Form is subject to the terms of the Mozilla Public
3+
License, v. 2.0. If a copy of the MPL was not distributed with this
4+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
5+
6+
Copyright (c) 2025 ClearCode Inc.
7+
*/
8+
using System;
29

310
namespace RepostConfirmationCanceler
411
{

0 commit comments

Comments
 (0)