Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The source code for RepostConfirmationCanceler.exe are licensed under the MPL v2.0 license.

All other code are licensed under the GPL v3 license.

You can obtain the full text of the MPL v2.0 license and the GPL v3 license from the following files.

LICENSES\MPL2.txt
LICENSES\GPL3.txt
File renamed without changes.
Empty file added LICENSES/MPL2.txt
Empty file.
9 changes: 8 additions & 1 deletion RepostConfirmationCanceler/ConfigLoader.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
using Microsoft.Win32;
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) 2025 ClearCode Inc.
*/
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.IO;
Expand Down
9 changes: 8 additions & 1 deletion RepostConfirmationCanceler/EdgeConfirmationDialogCanceler.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
using System;
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) 2025 ClearCode Inc.
*/
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
Expand Down
9 changes: 8 additions & 1 deletion RepostConfirmationCanceler/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
using System;
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) 2025 ClearCode Inc.
*/
using System;
using System.IO;

namespace RepostConfirmationCanceler
Expand Down
9 changes: 8 additions & 1 deletion RepostConfirmationCanceler/ProcessCommunicator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
using System;
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) 2025 ClearCode Inc.
*/
using System;
using System.IO;
using System.IO.Pipes;
using System.Text;
Expand Down
9 changes: 8 additions & 1 deletion RepostConfirmationCanceler/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
using Microsoft.Win32;
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) 2025 ClearCode Inc.
*/
using Microsoft.Win32;
using RepostConfirmationCanceler;
using System;
using System.Collections.Generic;
Expand Down
9 changes: 8 additions & 1 deletion RepostConfirmationCanceler/RunTimeMode.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
namespace RepostConfirmationCanceler
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) 2025 ClearCode Inc.
*/
namespace RepostConfirmationCanceler
{
internal enum RunTimeMode
{
Expand Down
9 changes: 8 additions & 1 deletion RepostConfirmationCanceler/RuntimeContext.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
using System;
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) 2025 ClearCode Inc.
*/
using System;

namespace RepostConfirmationCanceler
{
Expand Down
Loading