~pounce

Low level programming and open source enthusiast

Trackers

~pounce/tokio-walltime

Last active 9 months ago

#119 Add adaptive icon a month ago

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

#119 Add adaptive icon a month ago

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.

#1 Builds failing on ARM architectures 9 months ago

Comment by ~pounce on ~pounce/tokio-walltime

REPORTED RESOLVED FIXED

#2 Create contbuilds for several operating systems and architectures 9 months ago

Ticket created by ~pounce on ~pounce/tokio-walltime

This should prevent issues like #1 from happening again

#1 Builds failing on ARM architectures 9 months ago

~pounce assigned ~pounce to #1 on ~pounce/tokio-walltime

#1 Builds failing on ARM architectures 9 months ago

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`