Low level programming and open source enthusiast
Ticket created by ~pounce on ~emersion/goguma
Goguma should support emoji reacts, following the react client tag
Ticket created by ~pounce on ~emersion/goguma
Goguma should have a method for replying to oneself, so that you may thread replies. This should also allow for replies that do not contain a nick (i.e. this issue depends on #48)
Comment by ~pounce on ~emersion/goguma
that could very well work, I don't understand how the icon is set up very well right now
I was digging around a bit, and there appear to be a few "pure-flutter" ways to do it: https://pub.dev/packages/flutter_launcher_icons
Ticket created by ~pounce on ~emersion/goguma
Android supports adaptive icons, which can be resized to a user's desired shape. As of Android 13, this also allows users to change the color of their icon to match their theme, if the adaptive icon is configured correctly.
Comment by ~pounce on ~pounce/tokio-walltime
REPORTED
RESOLVED FIXEDTicket created by ~pounce on ~pounce/tokio-walltime
This should prevent issues like #1 from happening again
~pounce assigned ~pounce to #1 on ~pounce/tokio-walltime
Ticket created by ~pounce on ~pounce/tokio-walltime
From https://github.com/mfreeborn
Thank you for your effort with tokio-walltime. I was just about to push a new release for heliocron, but the build fails on ARM targets. Compiling with --target armv7-unknown-linux-gnueabihf
error[E0308]: mismatched types --> src/lib.rs:56:28 | 56 | its.it_value.tv_sec += duration; | ^^^^^^^^ expected `i32`, found `i64` error[E0277]: cannot add-assign `i64` to `i32` --> src/lib.rs:56:25 | 56 | its.it_value.tv_sec += duration; | ^^ no implementation for `i32 += i64` | = help: the trait `AddAssign<i64>` is not implemented for `i32`