Brian Jesse
Brian Jesse
Hmm, I can definitely look into this. It's possible that a stop method has to be called on the animation instead of just mutating a property of the animation. I...
I'm also unable to flash any of the steps onto the Pinetime using either DaFlasher or nRF Connect. I was able to get Wasp-OS installed and then flash back to...
Same thing on Ubuntu 12.10
I was already running from scratch and still ran into this issue. I'm running Node.js v0.8.22
Wonderful changes! I'm definitely in support of this being merged.
This doesn't look like a problem with the wkwebview-plugin. Google is specifically blocking your method. I wouldn't recommend spoofing your User-Agent even if you can for security and compatibility reasons....
As a side note, I'm not sure if there is something set up to generate `README.md` from the documentation in `lib.rs`, but they seem out-of-sync. I didn't change that here...
Accidentally merged out of date changes instead of rebasing. I'll fix later and update.
Here's a workaround for state scoped observers ```rust macro_rules! scoped_observer { ($state:ident::$scope:ident, $id: ident, $fn: ident) => { #[derive(Component)] #[require( Name::new(stringify!($id)), Observer::new($fn), StateScoped::($state::$scope), )] struct $id; } } ``` Use...