~pounce

Low level programming and open source enthusiast

Trackers

~pounce/tokio-walltime

Last active 2 months ago

#3 Add support for interval_at 2 months ago

Feature added by ~pounce on ~pounce/tokio-walltime

#125 Support +draft/react 6 months ago

Ticket created by ~pounce on ~emersion/goguma

Goguma should support emoji reacts, following the react client tag

#124 Allow self-replies 6 months ago

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)

#119 Add adaptive icon 8 months 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 8 months 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 1 year, 3 months ago

Comment by ~pounce on ~pounce/tokio-walltime

REPORTED RESOLVED FIXED

#2 Create contbuilds for several operating systems and architectures 1 year, 3 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 1 year, 3 months ago

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

#1 Builds failing on ARM architectures 1 year, 3 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`