From cb5ff764a6793c35ae5086cbc852717560a4bf64 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Sat, 3 Feb 2024 20:26:49 +0100 Subject: [PATCH] license --- .scripts/ci/check-license-header.js | 3 ++- plugins/authenticator/src/u2f_crate/authorization.rs | 1 + plugins/authenticator/src/u2f_crate/crypto.rs | 1 + plugins/authenticator/src/u2f_crate/messages.rs | 1 + plugins/authenticator/src/u2f_crate/mod.rs | 1 + plugins/authenticator/src/u2f_crate/protocol.rs | 1 + plugins/authenticator/src/u2f_crate/register.rs | 1 + plugins/authenticator/src/u2f_crate/u2ferror.rs | 1 + plugins/authenticator/src/u2f_crate/util.rs | 1 + plugins/websocket/examples/tauri-app/src/main.ts | 4 ++++ plugins/websocket/examples/tauri-app/src/vite-env.d.ts | 4 ++++ 11 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.scripts/ci/check-license-header.js b/.scripts/ci/check-license-header.js index d21d168d..cd70176f 100644 --- a/.scripts/ci/check-license-header.js +++ b/.scripts/ci/check-license-header.js @@ -10,6 +10,7 @@ const header = `Copyright 2019-2023 Tauri Programme within The Commons Conservan SPDX-License-Identifier: Apache-2.0 SPDX-License-Identifier: MIT`; const ignoredLicenses = [ + "// Copyright 2021 Flabio Oliveira", "// Copyright 2021 Jonas Kruckenberg", "// Copyright 2018-2023 the Deno authors.", ]; @@ -123,6 +124,6 @@ if (files.length > 0) { console.log(missing.join("\n")); process.exit(1); } - }, + } ); } diff --git a/plugins/authenticator/src/u2f_crate/authorization.rs b/plugins/authenticator/src/u2f_crate/authorization.rs index 35a1a3e1..0e667ea6 100644 --- a/plugins/authenticator/src/u2f_crate/authorization.rs +++ b/plugins/authenticator/src/u2f_crate/authorization.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/authenticator/src/u2f_crate/crypto.rs b/plugins/authenticator/src/u2f_crate/crypto.rs index 32379805..ddcdf1b6 100644 --- a/plugins/authenticator/src/u2f_crate/crypto.rs +++ b/plugins/authenticator/src/u2f_crate/crypto.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/authenticator/src/u2f_crate/messages.rs b/plugins/authenticator/src/u2f_crate/messages.rs index 6146c83b..be22f965 100644 --- a/plugins/authenticator/src/u2f_crate/messages.rs +++ b/plugins/authenticator/src/u2f_crate/messages.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/authenticator/src/u2f_crate/mod.rs b/plugins/authenticator/src/u2f_crate/mod.rs index 0aaebf6f..ab2a1e0c 100644 --- a/plugins/authenticator/src/u2f_crate/mod.rs +++ b/plugins/authenticator/src/u2f_crate/mod.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/authenticator/src/u2f_crate/protocol.rs b/plugins/authenticator/src/u2f_crate/protocol.rs index fc7343ea..94ebce6f 100644 --- a/plugins/authenticator/src/u2f_crate/protocol.rs +++ b/plugins/authenticator/src/u2f_crate/protocol.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/authenticator/src/u2f_crate/register.rs b/plugins/authenticator/src/u2f_crate/register.rs index 3717b003..6b47817d 100644 --- a/plugins/authenticator/src/u2f_crate/register.rs +++ b/plugins/authenticator/src/u2f_crate/register.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/authenticator/src/u2f_crate/u2ferror.rs b/plugins/authenticator/src/u2f_crate/u2ferror.rs index 9ae8fa92..377af9d8 100644 --- a/plugins/authenticator/src/u2f_crate/u2ferror.rs +++ b/plugins/authenticator/src/u2f_crate/u2ferror.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/authenticator/src/u2f_crate/util.rs b/plugins/authenticator/src/u2f_crate/util.rs index cba58d4d..6a7e3fbd 100644 --- a/plugins/authenticator/src/u2f_crate/util.rs +++ b/plugins/authenticator/src/u2f_crate/util.rs @@ -1,4 +1,5 @@ // Copyright 2021 Flavio Oliveira +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT diff --git a/plugins/websocket/examples/tauri-app/src/main.ts b/plugins/websocket/examples/tauri-app/src/main.ts index 764477ab..731fd60d 100644 --- a/plugins/websocket/examples/tauri-app/src/main.ts +++ b/plugins/websocket/examples/tauri-app/src/main.ts @@ -1,3 +1,7 @@ +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + import WebSocket from "tauri-plugin-websocket-api"; import "./style.css"; diff --git a/plugins/websocket/examples/tauri-app/src/vite-env.d.ts b/plugins/websocket/examples/tauri-app/src/vite-env.d.ts index 11f02fe2..044b89cc 100644 --- a/plugins/websocket/examples/tauri-app/src/vite-env.d.ts +++ b/plugins/websocket/examples/tauri-app/src/vite-env.d.ts @@ -1 +1,5 @@ +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + ///