chore: fix license header
This commit is contained in:
parent
ab93f649bd
commit
4de63d8549
21 changed files with 21 additions and 21 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
// SPDX-License-Identifier: MPL-2.0
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
// src/app/document/meta.rs
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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.).
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
// SPDX-License-Identifier: MPL-2.0
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
// src/app/document/utils.rs
|
||||
|
|
|
|||
|
|
@ -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.).
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-License-Identifier: MPL-2.0
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
// src/i18n.rs
|
||||
|
||||
use i18n_embed::{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-License-Identifier: MPL-2.0
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
// src/main.rs
|
||||
|
||||
mod app;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue