chore: fix license header

This commit is contained in:
wfx 2026-01-07 20:42:28 +01:00
parent ab93f649bd
commit 4de63d8549
21 changed files with 21 additions and 21 deletions

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0 OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/file.rs
//
// Opening files and dispatching to the correct concrete document type.

View file

@ -1,2 +1,2 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/meta.rs

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0 OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/mod.rs
//
// Document module root: common enums and type erasure for document kinds.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0 OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/portable.rs
//
// Portable documents (e.g. PDF) basic model and rendering stub.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/raster.rs
use std::path::PathBuf;

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0 OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/transform.rs
//
// High-level document transformations (rotate, flip, etc.).

View file

@ -1,2 +1,2 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/utils.rs

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/document/vector.rs
//
// Vector documents (SVG, etc.).

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0 OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/message.rs
//
// Top-level application messages (events, IO, and UI signals).

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/mod.rs
//
// Application module root, re-exports, and COSMIC application wiring.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/model.rs
//
// Global application state.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0 OR Apache-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/update.rs
//
// Application update loop: applies messages to the global model state.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/view/canvas.rs
//
// Center canvas for displaying the current document.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/view/mod.rs
//
// Root layout for the main application window.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/app/view/panels.rs
//
// Header, footer, and side panels composing the main layout.

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/config.rs
use cosmic::cosmic_config::{self, CosmicConfigEntry, cosmic_config_derive::CosmicConfigEntry};

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/i18n.rs
use i18n_embed::{

View file

@ -1,4 +1,4 @@
// SPDX-License-Identifier: MPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// src/main.rs
mod app;