Matteo Bernardini

Results 24 comments of Matteo Bernardini

Thank you for your really elaborated reply. Indeed system-wide integration has its own issues, notably: if two users have different AppImages in their `~/Applications/` they would end up showing the...

I've tested on Cinnamon DE v3.8.8 (a fork of Gnome), so I assume this method works with other Gnome/GTK based DEs. I don't have the chance to test on KDE...

`/home/matteo/Applications/AppImageUpdate-x86_64.AppImage /tmp/.gnome_desktop_thumbnail.KTURW0 128` They correspond respectively to `%i`, `%o` and `%s` defined in the `.desktop` file. I think the thumbnailing pipeline expects the thumbnail to be at the specified path...

@TheAssassin I recently drafted a full-fledged thumbnailer using `libappimage`, both for GNOME-derived desktop environments and KDE. For now I'm just extracting `.DirIcon` (if found), no resizing is performed: https://github.com/mttbernardini/appimage-thumbnailer

After some reverse engineering on the codebase, I found a way to use the pre-existing API (`beginShape`, `vertex`, `endShape`) of the immediate mode by extracting the internal `Geometry` object. The...

For me personally the use case is to generate a tree procedurally using an L-system (see https://alphaxmas.bubblefish.studio). My first attempt was to simply map each character of the sentence to...

I guess not, I didn't change the variables of the build process, I merely migrated the process from Travis to GH. I didn't get into detail on how the build...

I suspect the problem is that Travis CI has been discontinued (on the travis-ci.org domain) since June 15th, hence the last build is the one that you both mentioned. I...

@DrMcCoy that's sad... I also considered gh actions, but thought that maybe from a time-allocation perspective migrating Travis could have been the quickest (just migrate, nothing else to reconfigure) for...

Another case which also throws another funny error on `Concatenate` (?) ```py from typing import ParamSpec, Callable, Concatenate class Event: ... P = ParamSpec("P") EventHandler = Callable[Concatenate[Event, P], None] ```...