Neui

Results 69 comments of Neui

GitHub pages is basically just HTML files, we can have any theme. Jekyll integration is just an integration, not an requirement.

You can clone a git wiki repo on the wiki page, does commiting images there and pushing them work?

Me neither. After building (`cmake --build .` , manually `make`, ...), I run `cpack -G DEB -D CPACK_PACKAGE_CONTACT="local "` in the build directory to generate a `.deb` package to install....

I have updated this to move the version generation to a new CMake file. With the new version scheme, it generates a file like `dolphin-emu-2409.0.46-Linux.deb` which seems correct.

> > It sorts first by tag and then by title, although I don't see any advantage in doing so. > > This still seems to be the case and...

> because since https://github.com/getting-things-gnome/gtg/commit/308d5865acc185d709786a1d1a4ca19fddfc1ebe ./launch.sh has been erroring out (I have PyGObject 3.52.3) Maybe too old `libportal`? It looks like `Xdp.Settings` was added in [libportal 0.8.0](https://github.com/flatpak/libportal/releases/tag/0.8.0). (My Ubuntu 24.04 ships...

I think the chosen text puts a bit too much on the "why" rather than "how" to run it in a README file, which should be straight to the point....

@diegogangl Adding the following code after calling `signal_subscribe` I receive the signals: ```python from gi.repository import GLib GLib.MainLoop().run() ``` However, as you can see, this will stop application flow, in...

I looked into D-Feet a bit, and it seems it doesn't do anything special. Here's the "stacktrace" when connecting the signal (went through the code by hand): * https://gitlab.gnome.org/GNOME/d-feet/-/blob/b312c714fc01c3d14e2c6e1da6e87645674cca05/src/d-feet.in#L58 *...

I tried to check if D-Feets signal works and trace it down "until it works". I used the following git diff: ```diff diff --git a/src/dfeet/bus_watch.py b/src/dfeet/bus_watch.py index a6472ed..fd552cd 100644 ---...