From 470e4e7f7f5df013019351905875c6e4f06a8904 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 18 Jan 2019 06:49:38 +0100 Subject: global: Fix up copyright headers Signed-off-by: Jason A. Donenfeld --- WireGuard/WireGuard/UI/ErrorPresenterProtocol.swift | 2 +- WireGuard/WireGuard/UI/TunnelImporter.swift | 2 +- WireGuard/WireGuard/UI/macOS/AppDelegate.swift | 2 +- WireGuard/WireGuard/UI/macOS/Application.swift | 2 +- WireGuard/WireGuard/UI/macOS/ErrorPresenter.swift | 2 +- WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift | 2 +- WireGuard/WireGuard/UI/macOS/Info.plist | 2 +- WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift | 2 +- WireGuard/WireGuard/UI/macOS/NSTableView+Reuse.swift | 2 +- WireGuard/WireGuard/UI/macOS/ParseError+WireGuardAppError.swift | 2 +- WireGuard/WireGuard/UI/macOS/StatusMenu.swift | 2 +- WireGuard/WireGuard/UI/macOS/View/ConfTextStorage.swift | 2 +- WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift | 2 +- WireGuard/WireGuard/UI/macOS/View/KeyValueRow.swift | 2 +- WireGuard/WireGuard/UI/macOS/View/PopupRow.swift | 2 +- WireGuard/WireGuard/UI/macOS/View/TunnelListRow.swift | 2 +- .../UI/macOS/ViewController/ManageTunnelsRootViewController.swift | 2 +- .../UI/macOS/ViewController/NoTunnelsDetailViewController.swift | 2 +- .../UI/macOS/ViewController/TunnelDetailTableViewController.swift | 2 +- .../WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift | 2 +- .../UI/macOS/ViewController/TunnelsListTableViewController.swift | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/WireGuard/WireGuard/UI/ErrorPresenterProtocol.swift b/WireGuard/WireGuard/UI/ErrorPresenterProtocol.swift index 37e567c..ee4cf48 100644 --- a/WireGuard/WireGuard/UI/ErrorPresenterProtocol.swift +++ b/WireGuard/WireGuard/UI/ErrorPresenterProtocol.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. protocol ErrorPresenterProtocol { static func showErrorAlert(title: String, message: String, from sourceVC: AnyObject?, onPresented: (() -> Void)?, onDismissal: (() -> Void)?) diff --git a/WireGuard/WireGuard/UI/TunnelImporter.swift b/WireGuard/WireGuard/UI/TunnelImporter.swift index 4a31504..2c8fe1d 100644 --- a/WireGuard/WireGuard/UI/TunnelImporter.swift +++ b/WireGuard/WireGuard/UI/TunnelImporter.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Foundation diff --git a/WireGuard/WireGuard/UI/macOS/AppDelegate.swift b/WireGuard/WireGuard/UI/macOS/AppDelegate.swift index 95c1aa6..76ac000 100644 --- a/WireGuard/WireGuard/UI/macOS/AppDelegate.swift +++ b/WireGuard/WireGuard/UI/macOS/AppDelegate.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/Application.swift b/WireGuard/WireGuard/UI/macOS/Application.swift index 5305f2a..f1da81a 100644 --- a/WireGuard/WireGuard/UI/macOS/Application.swift +++ b/WireGuard/WireGuard/UI/macOS/Application.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ErrorPresenter.swift b/WireGuard/WireGuard/UI/macOS/ErrorPresenter.swift index 69ea731..1eb2b04 100644 --- a/WireGuard/WireGuard/UI/macOS/ErrorPresenter.swift +++ b/WireGuard/WireGuard/UI/macOS/ErrorPresenter.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift b/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift index 95fc46a..3281142 100644 --- a/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift +++ b/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/Info.plist b/WireGuard/WireGuard/UI/macOS/Info.plist index 44c0638..3a4ad18 100644 --- a/WireGuard/WireGuard/UI/macOS/Info.plist +++ b/WireGuard/WireGuard/UI/macOS/Info.plist @@ -25,7 +25,7 @@ LSUIElement NSHumanReadableCopyright - Copyright © 2019 WireGuard LLC. All Rights Reserved. + Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. NSPrincipalClass WireGuard.Application com.wireguard.macos.app_group_id diff --git a/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift b/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift index abd5723..7f75839 100644 --- a/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift +++ b/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import AppKit diff --git a/WireGuard/WireGuard/UI/macOS/NSTableView+Reuse.swift b/WireGuard/WireGuard/UI/macOS/NSTableView+Reuse.swift index 3a36b6a..979b123 100644 --- a/WireGuard/WireGuard/UI/macOS/NSTableView+Reuse.swift +++ b/WireGuard/WireGuard/UI/macOS/NSTableView+Reuse.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ParseError+WireGuardAppError.swift b/WireGuard/WireGuard/UI/macOS/ParseError+WireGuardAppError.swift index a85df22..9f2c009 100644 --- a/WireGuard/WireGuard/UI/macOS/ParseError+WireGuardAppError.swift +++ b/WireGuard/WireGuard/UI/macOS/ParseError+WireGuardAppError.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/StatusMenu.swift b/WireGuard/WireGuard/UI/macOS/StatusMenu.swift index 2ae3013..c208368 100644 --- a/WireGuard/WireGuard/UI/macOS/StatusMenu.swift +++ b/WireGuard/WireGuard/UI/macOS/StatusMenu.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/View/ConfTextStorage.swift b/WireGuard/WireGuard/UI/macOS/View/ConfTextStorage.swift index 4678cc3..7d32b7e 100644 --- a/WireGuard/WireGuard/UI/macOS/View/ConfTextStorage.swift +++ b/WireGuard/WireGuard/UI/macOS/View/ConfTextStorage.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift b/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift index 954a192..2a9f633 100644 --- a/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift +++ b/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/View/KeyValueRow.swift b/WireGuard/WireGuard/UI/macOS/View/KeyValueRow.swift index 9be4425..7c32d76 100644 --- a/WireGuard/WireGuard/UI/macOS/View/KeyValueRow.swift +++ b/WireGuard/WireGuard/UI/macOS/View/KeyValueRow.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/View/PopupRow.swift b/WireGuard/WireGuard/UI/macOS/View/PopupRow.swift index 2ef55f5..6f4a56c 100644 --- a/WireGuard/WireGuard/UI/macOS/View/PopupRow.swift +++ b/WireGuard/WireGuard/UI/macOS/View/PopupRow.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/View/TunnelListRow.swift b/WireGuard/WireGuard/UI/macOS/View/TunnelListRow.swift index 1a2f6a8..f783643 100644 --- a/WireGuard/WireGuard/UI/macOS/View/TunnelListRow.swift +++ b/WireGuard/WireGuard/UI/macOS/View/TunnelListRow.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift index d8e9cfe..fc7d547 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/NoTunnelsDetailViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/NoTunnelsDetailViewController.swift index ac57422..38bef87 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/NoTunnelsDetailViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/NoTunnelsDetailViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift index b3f9361..70085d7 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift index 7d0d202..cdc6d44 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift index 05d30c0..539b487 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Cocoa -- cgit v1.2.3-59-g8ed1b