CHANGELOG was missing the v0.8.0 entry (symlink-safe avatars, blur downscale + padding fix, config validation). build.rs comment still referenced removed wallpaper.jpg.
11 lines
288 B
Rust
11 lines
288 B
Rust
// ABOUTME: Build script for compiling GResource bundle.
|
|
// ABOUTME: Bundles style.css and default-avatar.svg into the binary.
|
|
|
|
fn main() {
|
|
glib_build_tools::compile_resources(
|
|
&["resources"],
|
|
"resources/resources.gresource.xml",
|
|
"moonset.gresource",
|
|
);
|
|
}
|