Files
lashman b50147404a Add file manager integration install/uninstall logic
Implements actual extension file creation for Nautilus (Python
extension), Nemo (.nemo_action files), Thunar (custom actions XML),
and Dolphin (KDE service menu .desktop). Each extension creates a
"Process with Pixstrip" submenu with all presets listed. Toggle
switches in welcome wizard and settings now call install/uninstall.
2026-03-06 15:37:25 +02:00

18 lines
296 B
Rust

pub mod config;
pub mod discovery;
pub mod encoder;
pub mod error;
pub mod executor;
pub mod fm_integration;
pub mod loader;
pub mod operations;
pub mod pipeline;
pub mod preset;
pub mod storage;
pub mod types;
pub mod watcher;
pub fn version() -> &'static str {
env!("CARGO_PKG_VERSION")
}