Skip to content

Commit 67cab01

Browse files
authored
Update license to 2023 (#661)
1 parent 131b5ca commit 67cab01

File tree

127 files changed

+127
-127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+127
-127
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2014-2021 The winit contributors
2-
# Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
# Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
# SPDX-License-Identifier: Apache-2.0
44

55

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2014-2021 The winit contributors
2-
# Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
# Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
# SPDX-License-Identifier: Apache-2.0
44

55
Cargo.lock

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2014-2021 The winit contributors
2-
# Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
# Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
# SPDX-License-Identifier: Apache-2.0
44

55
[submodule "deps/apk-builder"]

LICENSE.spdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DataFormat: SPDXRef-1
55
PackageSupplier: Organization: The Tauri Programme in the Commons Conservancy
66
PackageHomePage: https://tauri.app
77
PackageLicenseDeclared: Apache-2.0
8-
PackageCopyrightText: 2021-2022, The Tauri Programme in the Commons Conservancy
8+
PackageCopyrightText: 2021-2023, The Tauri Programme in the Commons Conservancy
99
PackageSummary: <text>Tao is the official, rust-based window manager for Wry.
1010
</text>
1111
PackageComment: <text>The package includes the following libraries; see

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
fn main() {

examples/accelerator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
fn main() {

examples/control_flow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use std::{thread, time};

examples/cursor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/cursor_grab.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/custom_events.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#[allow(clippy::single_match)]

examples/custom_menu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#[cfg(target_os = "macos")]

examples/drag_window.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/fullscreen.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use std::io::{stdin, stdout, Write};

examples/global_shortcut.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))]

examples/handling_close.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/min_max_size.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/minimize.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
extern crate tao;

examples/monitor_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{event_loop::EventLoop, window::WindowBuilder};

examples/mouse_wheel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/multithreaded.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#[allow(clippy::single_match)]

examples/multiwindow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use std::collections::HashMap;

examples/parentwindow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#[cfg(any(target_os = "windows", target_os = "macos", target_os = "linux"))]

examples/request_redraw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/request_redraw_threaded.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use std::{thread, time};

examples/resizable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/set_ime_position.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/system_tray.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
// System tray is supported and availabled only if `tray` feature is enabled.

examples/theme.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#[allow(clippy::single_match)]

examples/timer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use instant::Instant;

examples/transparent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/video_modes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::event_loop::EventLoop;

examples/window.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use tao::{

examples/window_debug.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
// This example is used by developers to test various window functions.

examples/window_icon.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
extern crate image;

examples/window_run_return.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
// Limit this example to only compatible platforms.

src/accelerator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! Accelerators describe keyboard shortcuts defined by the application.

src/clipboard.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! The `Clipboard` struct and associated types.

src/dpi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! UI scaling is important, so read the docs for this module if you don't want to be confused.

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! The `Error` struct and associated types.

src/event.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! The `Event` enum and assorted supporting types.

src/event_loop.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! The `EventLoop` struct and assorted supporting types, including `ControlFlow`.

src/global_shortcut.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(any(

src/icon.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
use crate::platform_impl::PlatformIcon;

src/keyboard.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! **UNSTABLE** -- Types related to the keyboard.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! Tao is a cross-platform application window creation and event loop management library.

src/menu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! **UNSTABLE** -- The `Menu` struct and associated types.

src/monitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! Types useful for interacting with a user's monitors.

src/platform/android.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(any(target_os = "android"))]

src/platform/ios.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(target_os = "ios")]

src/platform/linux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(target_os = "linux")]

src/platform/macos.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(target_os = "macos")]

src/platform/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
//! Contains traits with platform-specific methods in them.

src/platform/run_return.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(not(target_os = "ios"))]

src/platform/unix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(any(

src/platform/windows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#![cfg(target_os = "windows")]

src/platform_impl/android/clipboard.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2014-2021 The winit contributors
2-
// Copyright 2021-2022 Tauri Programme within The Commons Conservancy
2+
// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
33
// SPDX-License-Identifier: Apache-2.0
44

55
#[derive(Debug, Clone, Default)]

0 commit comments

Comments
 (0)