From eb6b3e3b345d33d58a14f3dd074f694aa4579d95 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 26 May 2022 11:57:41 -0400 Subject: [PATCH] license --- applets/cosmic-applet-network/Cargo.toml | 2 +- applets/cosmic-applet-network/src/main.rs | 2 +- applets/cosmic-applet-network/src/task.rs | 2 +- applets/cosmic-applet-network/src/ui.rs | 2 +- applets/cosmic-applet-network/src/ui/available_wifi.rs | 2 +- applets/cosmic-applet-network/src/ui/current_networks.rs | 2 +- applets/cosmic-applet-network/src/widgets.rs | 2 +- applets/cosmic-applet-network/src/widgets/settings_entry.rs | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/applets/cosmic-applet-network/Cargo.toml b/applets/cosmic-applet-network/Cargo.toml index 946dfba0..4de986fe 100644 --- a/applets/cosmic-applet-network/Cargo.toml +++ b/applets/cosmic-applet-network/Cargo.toml @@ -2,7 +2,7 @@ name = "cosmic-applet-network" version = "0.1.0" edition = "2021" -license = "LGPL-3.0-or-later" +license = "GPL-3.0-or-later" [dependencies] cosmic-dbus-networkmanager = { git = "https://github.com/pop-os/dbus-settings-bindings" } diff --git a/applets/cosmic-applet-network/src/main.rs b/applets/cosmic-applet-network/src/main.rs index a2f1ce85..01f63e7d 100644 --- a/applets/cosmic-applet-network/src/main.rs +++ b/applets/cosmic-applet-network/src/main.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later #[macro_use] extern crate relm4_macros; diff --git a/applets/cosmic-applet-network/src/task.rs b/applets/cosmic-applet-network/src/task.rs index 39fc9073..fe6ab067 100644 --- a/applets/cosmic-applet-network/src/task.rs +++ b/applets/cosmic-applet-network/src/task.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later use std::future::Future; use tokio::sync::oneshot; diff --git a/applets/cosmic-applet-network/src/ui.rs b/applets/cosmic-applet-network/src/ui.rs index 8a0eebea..cc0c6244 100644 --- a/applets/cosmic-applet-network/src/ui.rs +++ b/applets/cosmic-applet-network/src/ui.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later pub mod available_wifi; pub mod current_networks; diff --git a/applets/cosmic-applet-network/src/ui/available_wifi.rs b/applets/cosmic-applet-network/src/ui/available_wifi.rs index 65cd0e2c..76a0a748 100644 --- a/applets/cosmic-applet-network/src/ui/available_wifi.rs +++ b/applets/cosmic-applet-network/src/ui/available_wifi.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later use crate::task; use cosmic_dbus_networkmanager::{ diff --git a/applets/cosmic-applet-network/src/ui/current_networks.rs b/applets/cosmic-applet-network/src/ui/current_networks.rs index 9ce5b50d..eae467f5 100644 --- a/applets/cosmic-applet-network/src/ui/current_networks.rs +++ b/applets/cosmic-applet-network/src/ui/current_networks.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later use cosmic_dbus_networkmanager::{ active_connection::ActiveConnection, diff --git a/applets/cosmic-applet-network/src/widgets.rs b/applets/cosmic-applet-network/src/widgets.rs index a92fff62..81d096cc 100644 --- a/applets/cosmic-applet-network/src/widgets.rs +++ b/applets/cosmic-applet-network/src/widgets.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later mod settings_entry; diff --git a/applets/cosmic-applet-network/src/widgets/settings_entry.rs b/applets/cosmic-applet-network/src/widgets/settings_entry.rs index f1793637..989175b7 100644 --- a/applets/cosmic-applet-network/src/widgets/settings_entry.rs +++ b/applets/cosmic-applet-network/src/widgets/settings_entry.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later use gtk4::{ glib::{self, Object},