summaryrefslogtreecommitdiff
path: root/libappstream-glib
Commit message (Collapse)AuthorAgeFilesLines
* Remove Check for X-KDE-StartupNotifyJakobDev2023-04-211-3/+0
|
* Include screenshot size in "too large" errorssuve2022-12-301-4/+4
|
* Include screenshot height in "too small" errorsuve2022-12-301-2/+2
|
* Tell CURL to follow http redirect for validateHubert Figuière2022-10-101-0/+1
| | | | | - This is a followup on https://github.com/hughsie/appstream-glib/pull/460 - This is issue https://github.com/flathub/org.flatpak.Builder/issues/112
* trivial: Do not expect screenshots from console appsRichard Hughes2022-10-081-0/+1
|
* Initialize proxy resolver in appstream-validateMichael Catanzaro2022-07-221-0/+1
| | | | | | Oops, trying to use it would just result in criticals. Fixes #449
* Improve handling of <em> and <code> tagsJan Alexander Steffens (heftig)2022-07-182-46/+101
| | | | | | | | | | This is still not great code but at least somewhat an improvement. Tests were expanded to showcase the new behavior. I think, ideally, we would append opening/closing tags to the ancestor `p` or `li` node's cdata as soon as we encounter the start/end of an `em` or `code` element. This would then also handle empty elements correctly.
* trivial: Turn is_{em,code}_text fields into bitfieldsJan Alexander Steffens (heftig)2022-07-181-2/+2
|
* Properly initialize AsNodeToXmlHelperJan Alexander Steffens (heftig)2022-07-181-2/+2
| | | | Fixes: https://github.com/hughsie/appstream-glib/issues/445
* Correct typos in as-app.cFelix Yan2022-07-171-2/+2
|
* Use GProxyResolver to auto-detect the correct proxyRichard Hughes2022-07-151-0/+12
|
* Port from libsoup to libcurlRichard Hughes2022-06-083-52/+39
| | | | | | | The former bumped ABI, and all sorts of crazy happens when you link in libappstream-glib into a process with the 'other' ABI. It seems the universe has settled on curl as a dep; do the same.
* trivial: Be explicit when ignoring return error valuesRichard Hughes2022-04-132-16/+16
|
* trivial: Fix a tiny memory leak on failureRichard Hughes2022-04-131-2/+2
|
* Add vcs-browser and contribute URL typeJakobDev2022-03-302-0/+12
|
* update to spdx 3.16Nick Richards2022-03-151-7/+105
|
* as-app: Also unwrap description in metainfo filesFabian Vogt2022-02-081-1/+4
| | | | | | | According to the specification, there is no difference between both kinds of upstream metainfo files. Fixes #381
* Fix validation of translated captions when LANG is not CmasterRichard Hughes2021-12-031-3/+3
| | | | Fixes https://github.com/hughsie/appstream-glib/issues/422
* Revert "Don't emit legacy component type values"Richard Hughes2021-12-031-2/+2
| | | | This reverts commit 3fa624026f608ef8465fb339f86725aaf648e09f.
* Don't emit legacy component type valuesMatthias Klumpp2021-08-101-2/+2
|
* Consider AppStream version as a stringCorentin Noël2021-08-036-73/+125
| | | | | | Always store the AppStream metadata version as a string and compare it like any other version. This allows to have 0.10 > 0.8 for instance.
* meson: Check --version-script linker option before using.Biswapriyo Nath2021-07-271-1/+3
| | | | mingw clang does not support --version-script linker option.
* Update current newest version in AsStoreCorentin Noël2021-07-231-1/+1
| | | | | | We are now in version 0.14 Signed-off-by: Corentin Noël <corentin.noel@collabora.com>
* Support em/code tagsPhilip Müller2021-06-152-0/+52
| | | | Some appstream-data packages add <em> and </em> or <code> and </code> to the files. Not all package manager can handle that. An example would be pamac from Manjaro
* Add validation for duplicate license xml elementsOtto Urpelainen2021-05-184-3/+23
| | | | | | | | AppStream license syntax allows constructs of form "LICENSE1 AND LICENSE2". It is possible to confuse this with writing multiple license xml elements in a metainfo file. In order to spot this type of error, duplicate detection is added for xml elements metadata_license and project_license.
* builder: make directories as 0755 && umaskPavel Raiskup2021-05-041-1/+1
| | | | | | | | | Ideally only libappstream-builder would be fixed, but asb_utils_ensure_exists is (transitively) called from builder too, so fixing also that. Fixes: #399 Merges: #400
* Do not show a critical warning on <suggests><id/></suggests>Richard Hughes2021-04-152-1/+24
| | | | Fixes https://github.com/hughsie/appstream-glib/issues/396
* as-app: Parse launchables from DEP-11Sebastian Krzyszkowiak2020-12-021-0/+12
|
* as-app: Parse custom tags from DEP-11Sebastian Krzyszkowiak2020-12-021-0/+8
|
* as-content-rating: Align the OARS/CSM mappings of sex-*Philip Withnall2020-10-291-1/+15
| | | | | | | | | Align the OARS/CSM mappings of sex-homosexuality and sex-themes, as the two are identical apart from discriminating on sexual orientation. This is a follow-up to commit 01e9ee8113a8ad. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
* Don't ignore localized strings that are the same as originalIsaque Galdino2020-06-231-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Avoiding storing identical strings is a clever measure to keep the appstream file small and clean, but it ignores translation differences between languages and their specific locales. Applications tend to "fallback" from missing locales by picking a translation of the same language but from a different locale. For instance, when missing a "pt_BR" translation, some apps will pick the "pt" translation instead. That usually works but there are some cases when it doesn't, such as for international words: Brazilian Portuguese (pt_BR) tends to use them, while European Portuguese (pt) has a translation for everything. This way, "GNOME Boxes" gets translated to "Caixas GNOME" in European Portuguese (pt) but the same "GNOME Boxes" name is expected in Brazilian Portuguese (pt_BR). This was initially reported as a Flatpak issue in https://lists.freedesktop.org/archives/flatpak/2019-May/001578.html Because OP was seeing the wrong translations in Flathub and GNOME Software. Original commit was done by @felipeborges in his personal branch at github, commit 54f97aadcd2c00f3d95b472db6e4dda1c0c9865b
* Test launchable tags in validationIan McInerney2020-06-152-2/+38
|
* as-app: Don't initialize mutex twiceKalev Lember2020-06-111-1/+0
| | | | | We managed to merge two MRs to initialize the unique id mutex. Remove one of the g_mutex_init calls to avoid doing it twice.
* as-content-rating: Expand translator comments to link to OARS websitePhilip Withnall2020-06-091-98/+98
| | | | | | This might make the descriptions a little clearer. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* as-content-rating: Lower the OARS/CSM mapping of sex-homosexuality/intensePhilip Withnall2020-06-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This rationalises it with the OARS/CSM mapping of sex-themes/intense, and with many western societal norms. It is against the laws and morals of various western countries to discriminate on sexual orientation, so the mappings for sex-homosexuality/intense and sex-themes/intense should be the same. The mappings for the other values of sex-homosexuality and sex-themes remain different, as their descriptions aren’t as comparable (for example, for `mild`, the descriptions are “Indirect references to homosexuality” vs “Provocative references or descriptions”). The sex-homosexuality ratings category does need to continue to exist, though, as it’s illegal in some countries to *not* discriminate on sexual orientation. Those countries can provide and maintain their own OARS/age mappings. See https://gitlab.freedesktop.org/pwithnall/malcontent/-/issues/21. This issue is now being solved in appstream-glib as the content rating code has been moved there so it can be shared between malcontent and gnome-software. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* as-content-rating: Add content rating system APIs from gnome-softwarePhilip Withnall2020-06-053-0/+1053
| | | | | | | | | | | | | | | | | | | | | | | | | | These are moving to libappstream-glib as they are used by gnome-software and libmalcontent-ui, and are potentially useful in other projects. In particular, there are a number of translatable strings which need to be centralised so that translation work isn’t repeated. This code was originally written by: • Richard Hughes <richard@hughsie.com> • Piotr Drąg <piotrdrag@gmail.com> • Philip Withnall <withnall@endlessm.com> • Jordi Mas <jmas@softcatala.org> It was previously in `src/gs-content-rating.[ch]` in gnome-software, under the GPL-2.0+; and in `libmalcontent-ui/gs-content-rating.[ch]` in malcontent, also under the GPL-2.0+. It has been relicensed from GPL-2.0+ to LGPL-2.1+ for the move to appstream-glib, and all the previous contributors have agreed. See https://github.com/hughsie/appstream-glib/pull/364#issuecomment-632773905 and below for their agreements. In moving it from one project to the other, I have added documentation comments and tweaked some of the APIs to make them more usable. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* Allow timestamp in the future in validate-relaxBartłomiej Piotrowski2020-04-241-1/+3
|
* Fix crash with invalid children of <ul/>Fabian Vogt2020-04-222-1/+12
| | | | | | It segfaulted when building the error message as data_c->name was invalid. data_c was a valid tag, so only the data_c->tag union member was active. Fix the crash by calling the proper function instead and add a test case.
* as-app: Properly initialize unique_id_mutexLaurent Bigonville2020-04-161-0/+1
| | | | | That should fix FTBFS on some architectures Fixes: #356
* Support versioning on clang/macOSOleksii Samorukov2020-01-172-1/+8
|
* Use internal uuid library in macOSOleksii Samorukov2020-01-172-0/+6
|
* docs: Fix examples of AsNodeToXmlFlags using an invalid flag.Robert Ancell2020-01-172-3/+3
|
* trivial: Fix CI by moving 'future' back a bitRichard Hughes2020-01-061-1/+1
| | | | 2020 seemed like such a long time in the future all those years ago...
* as-app: properly initialize unique_id_mutexMarc-Antoine Perennou2019-12-031-0/+1
| | | | | | | | | | We are using it, clearing it, but e never initialize it. For some reasons it seems to work, not sure how or why, but when glib is uilt with clang, then the problem surfaces and we get a nice segmentation fault. Properly initializing it fixes this Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
* Use _fullpath() instead of GetFullPathNameA().Jehan2019-11-251-8/+5
| | | | | | | Win32 docs says that GetFullPathNameA() is not recommended with multi-threaded applications, since it uses a global variable. As appstream-glib is a library and can potentially be used in any software, included in multi-thread cases, let's use _fullpath() instead.
* Fix Win32 headers.Jehan2019-11-251-1/+1
| | | | | | | | | | | For some reason, with mingw-w64 64-bit builds, this was just a warning. But building for 32-bit, linking was failing: > libappstream-glib/as-self-test.c:99: undefined reference to `GetFullPathNameA' > collect2: error: ld returned 1 exit status Adding the appropriate header fixes both the warning and error (since windows.h includes windef.h, it's actually a replacement).
* trivial: Add a new self test for ${id}/${locale}.qm translationsKalev Lember2019-11-141-0/+38
|
* Support ${id}/${locale}.qm in addition to ${id}_${locale}.qmKalev Lember2019-11-141-2/+39
|
* trivial: Move a check earlier so that we exit the correct loopKalev Lember2019-11-141-5/+5
|
* as-app: add "icon-theme" as recognised component typeFabio Valentini2019-11-012-0/+4
|