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.
18 lines
296 B
Rust
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")
|
|
}
|