Update comet revision 🎉

This commit is contained in:
Héctor Ramón Jiménez 2025-12-04 21:26:35 +01:00
parent 4cef837e45
commit 834a4943cb
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 5 additions and 3 deletions

View file

@ -3,7 +3,7 @@ use crate::runtime::task::{self, Task};
use std::process;
pub const COMPATIBLE_REVISION: &str =
"20f9c9a897fecac5dce0977bbb5639fdce1f54b9";
"3f75f3240edc1719df584810337bc7df010327d8";
pub fn launch() -> Task<launch::Result> {
task::try_blocking(|mut sender| {
@ -82,7 +82,9 @@ pub fn install() -> Task<install::Result> {
}
}
let _ = sender.try_send(install::Event::Logged(log.clone()));
let _ = sender
.try_send(install::Event::Logged(log.trim_end().to_owned()));
log.clear();
}

View file

@ -344,7 +344,7 @@ where
.background(Color::BLACK.scale_alpha(0.8))
});
Some(themer(theme(), Element::from(setup).map(Event::Message)))
Some(themer(theme(), opaque(setup).map(Event::Message)))
} else {
None
};