From 89f07de3934fd0715db92d9a35a44c3d6afd9f04 Mon Sep 17 00:00:00 2001 From: ComplexSpaces Date: Fri, 4 Mar 2022 17:07:57 -0600 Subject: [PATCH 1/2] Match cargo authors with license headers Update license dates --- Cargo.toml | 2 +- LICENSE-MIT.txt | 2 +- LICENSE.txt | 2 +- src/common.rs | 2 +- src/lib.rs | 2 +- src/osx_clipboard.rs | 2 +- src/windows_clipboard.rs | 2 +- src/x11_clipboard.rs | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8ebf5378..38aed86a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "arboard" version = "2.0.1" -authors = ["Artur Kovacs ", "Avi Weinstock "] +authors = ["Artur Kovacs ", "Avi Weinstock ", "Arboard contributors"] description = "Image and text handling for the OS clipboard." repository = "https://github.com/ArturKovacs/arboard" license = "MIT OR Apache-2.0" diff --git a/LICENSE-MIT.txt b/LICENSE-MIT.txt index a6e15985..796e84b4 100644 --- a/LICENSE-MIT.txt +++ b/LICENSE-MIT.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 The arboard contributors +Copyright (c) 2022 The Arboard contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE.txt b/LICENSE.txt index e45cefdb..d4a9f8d0 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2020 The arboard contributors +Copyright (c) 2020 The Arboard ontributors This software is licensed under either the MIT (see LICENSE-MIT.txt) license or the Apache 2.0 (see LICENSE-APACHE.txt) license at your option. diff --git a/src/common.rs b/src/common.rs index e399ee13..e91606de 100644 --- a/src/common.rs +++ b/src/common.rs @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: Apache-2.0 OR MIT -Copyright 2020 The arboard contributors +Copyright 2022 The Arboard contributors The project to which this file belongs is licensed under either of the Apache 2.0 or the MIT license at the licensee's choice. The terms diff --git a/src/lib.rs b/src/lib.rs index 90923d88..3b67db2c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: Apache-2.0 OR MIT -Copyright 2020 The arboard contributors +Copyright 2022 The Arboard contributors The project to which this file belongs is licensed under either of the Apache 2.0 or the MIT license at the licensee's choice. The terms diff --git a/src/osx_clipboard.rs b/src/osx_clipboard.rs index 793e0438..56f8d34f 100644 --- a/src/osx_clipboard.rs +++ b/src/osx_clipboard.rs @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: Apache-2.0 OR MIT -Copyright 2020 The arboard contributors +Copyright 2022 The Arboard contributors The project to which this file belongs is licensed under either of the Apache 2.0 or the MIT license at the licensee's choice. The terms diff --git a/src/windows_clipboard.rs b/src/windows_clipboard.rs index 1959a5b8..cd88a47e 100644 --- a/src/windows_clipboard.rs +++ b/src/windows_clipboard.rs @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: Apache-2.0 OR MIT -Copyright 2020 The arboard contributors +Copyright 2022 The Arboard contributors The project to which this file belongs is licensed under either of the Apache 2.0 or the MIT license at the licensee's choice. The terms diff --git a/src/x11_clipboard.rs b/src/x11_clipboard.rs index b517fb5a..60d58886 100644 --- a/src/x11_clipboard.rs +++ b/src/x11_clipboard.rs @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: Apache-2.0 OR MIT -Copyright 2020 The arboard contributors +Copyright 2022 The Arboard contributors The project to which this file belongs is licensed under either of the Apache 2.0 or the MIT license at the licensee's choice. The terms From 47841692d9fb0f17500286377166534c29e954e9 Mon Sep 17 00:00:00 2001 From: ComplexSpaces Date: Fri, 4 Mar 2022 17:11:09 -0600 Subject: [PATCH 2/2] Remove deprecation notice --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 960b32ab..fb6bda01 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,6 @@ [![Latest version](https://img.shields.io/crates/v/arboard?color=mediumvioletred)](https://crates.io/crates/arboard) [![Documentation](https://docs.rs/arboard/badge.svg)](https://docs.rs/arboard) -## Warning - -I'm planning to stop maintaining this repository soon and archiving it. In the optimal case, someone makes a fork of this and diligently makes PRs against all repos that depend on this crate to depend on their actively maintained fork. Note that there's a significant amount of unfinished work on the `any-format` branch which intends to greatly extend the number of supported formats. - ## General This is a cross-platform library for interacting with the clipboard. It allows to copy and paste both text and image data in a platform independent way on Linux, Mac, and Windows.