lutgen-studio 0.4.0

Offical GUI for Lutgen, the best way to apply popular colorschemes to any image or wallpaper!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Web worker

#[cfg(target_arch = "wasm32")]
fn main() {
    use gloo_worker::Registrable;
    eframe::WebLogger::init(log::LevelFilter::Debug).ok();
    lutgen_studio::Worker::registrar().register();
}

#[cfg(not(target_arch = "wasm32"))]
fn main() {
    // stub for clippy
}