Compare commits

...

2 Commits

3 changed files with 19 additions and 3 deletions

View File

@ -1,4 +1,8 @@
#!/usr/bin/env bash
rm -rf dist/windows
mv package dist/windows
butler push dist/linux ruin/lull:linux
butler push dist/windows ruin/lull:windows
butler push dist/sounds ruin/lull:sounds

View File

@ -234,9 +234,11 @@ fn build_ui(application: &gtk::Application) {
}
fn main() {
// instantiate rodio before gtk and don't do anything with it
// this is silly but it's the easiest way to prevent cpal crashing on windows
rodio::default_output_device().unwrap();
#[cfg(target_os = "windows")] {
// instantiate rodio before gtk and don't do anything with it
// this is silly but it's the easiest way to prevent cpal crashing on windows
rodio::default_output_device().unwrap();
}
let application = gtk::Application::new(
Some("dev.tinybird.max.lull"),

View File

@ -4,3 +4,13 @@ export PKG_CONFIG_ALLOW_CROSS=1
export PKG_CONFIG_PATH=/usr/i686-w64-mingw32/lib/pkgconfig
rm -rf package
docker start lull-build-3 -ai | less
# gtk icons to keep:
# Adwaita/16x16/ui/window-*
# Adwaita/24x24/ui/window-*
# Adwaita/48x48/ui/window-*
# Adwaita/64x64/ui/window-*
# Adwaita/96x96/ui/window-*
# Adwaita/scalable/ui/window-*
# Adwaita/cursors
# (are all of these sizes necessary?)