libxmlb icon indicating copy to clipboard operation
libxmlb copied to clipboard

A library to help create and query binary XML blobs

Results 13 libxmlb issues
Sort by recently updated
recently updated
newest added

I'm partly upstreaming this from a gnome-software bug: https://gitlab.gnome.org/GNOME/gnome-software/-/issues/2443 This is on Fedora 39 with libxmlb 0.3.15-1. Downgrade to the 0.3.14-1 doesn't seem to change anything. where the user doesn't...

Currently, libxmlb queries will set the error `G_IO_ERROR_NOT_FOUND` if they find no matching elements. A lot of queries will often return no results (that’s just the way XML is), so...

It looks like LTO isn't doing such a great job of interning a number of things that I think are worth seeing inlined. Not because these functions themselves show up...

Fixes https://github.com/hughsie/libxmlb/issues/41

If I run the two queries: 1. ``` languages/lang[(text()='en_GB.UTF-8') and (@percentage>50)]|languages/lang[(text()='en_GB') and (@percentage>50)]|languages/lang[(text()='en.UTF-8') and (@percentage>50)]|languages/lang[(text()='en') and (@percentage>50)] ``` 2. ``` languages/lang[text()='en_GB.UTF-8'][@percentage>50]|languages/lang[text()='en_GB'][@percentage>50]|languages/lang[text()='en.UTF-8'][@percentage>50]|languages/lang[text()='en'][@percentage>50] ``` on the XML below, they should return the...

Currently one must call `xb_builder_add_locale()` on an XbBuilder object to add system locales before using `xb_builder_compile()`, at least if one is using `XB_BUILDER_COMPILE_FLAG_SINGLE_LANG`. @pwithnall proposed an alternative way for it...

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.0 to 4.31.9. Release notes Sourced from github/codeql-action's releases. v4.31.9 CodeQL Action Changelog See the releases page for the relevant changes to the CodeQL CLI and language...

dependencies
github_actions

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5.0.0 to 6.0.0. Release notes Sourced from actions/upload-artifact's releases. v6.0.0 v6 - What's new [!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (runs.using: node24) and requires a minimum...

dependencies
github_actions

Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. Release notes Sourced from actions/checkout's releases. v6.0.0 What's Changed Update README to include Node.js 24 support details and requirements by @​salmanmkc in actions/checkout#2248 Persist...

dependencies
github_actions

I wanted to create a small Hello World with libxmlb, but unfortunately I can't find a small example anywhere. Does such a thing even exist?