qgymib
qgymib
Hi, The docker images missing some fonts so multi-language support is not so good. But add support for all language is too much hard, so here is a easy way...
Checkout `append_coverage_compiler_flags_to_target()`. If your cmake rule was target-based, you can generate report for specific target.
A minimal example: `CMakeLists.txt` for **src**: ```cmake add_library(foo "src/foo1.c" "src/foo2.c") # Only setup coverage for your target `foo` include(CodeCoverage) append_coverage_compiler_flags_to_target(foo) ``` `CMakeLists.txt` for **test**: ```cmake # This is your test...
Hi, There might be a simple solution for this (without dynamic memory allocation to keep original design): 1. define `struct regex` as following: ``` struct regex { size_t size; regex2_t...
Hi Martchus, The app ID located in `/share/metainfo/syncthingtray.appdata.xml`, with content: ``` org.martchus.syncthingtray ``` There are some examples on [flatpak's page](https://docs.flatpak.org/en/latest/conventions.html) shows what should the appID looks like. So according to...
> Has the change of the ID something to do with the website URL? I only set it up recently (after seeing the app ID). So that's why the app...
After some research, I do discovery some apps that does not following flatpak conventions, like [this](https://flathub.org/apps/org.mozilla.firefox), [this](https://flathub.org/apps/app.xemu.xemu) and [this](https://flathub.org/apps/xyz.safeworlds.hiit). Maybe it is OK to left app ID untouched, and try...
> It seems like you're bundling Syncthing itself as well. I use standalone Syncthing because build bundled Syncthing shows error about something like `inconsistent vendoring`. I'm not familiar with GO,...
Update: The syncthing is now bundled as library. Due to the restriction that flatpak-builder forbid download anything during build stage, the bundled syncthing must build in vendor mod, so the...
Update: After some testing, there are two problem that bundle syncthing library with SyncthingTray in flatpak: 1. SyncthingTray always complain “Disconnected from Syncthing” on startup, but the web page actually...