1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Upstream Metadata | AppStream | AppStream 1.0</title><meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /><link rel="stylesheet" type="text/css" href="static/css/style.css" /><link rel="stylesheet" type="text/css" href="static/css/highlight.css" /><meta name="generator" content="DAPS 3.3.2" /><meta name="product-name" content="AppStream" /><meta name="product-number" content="1.0" /><meta name="book-title" content="AppStream" /><meta name="chapter-title" content="Chapter 2. Upstream Metadata" /><meta name="description" content="AppStream allows upstream projects to define metadata about the components they provide using small XML files, metainfo files, which get installed into locations on the client system and are used by distributors to enhance their metadata. A component is a piece of software, like an application, a li…" /><link rel="home" href="index.html" title="AppStream" /><link rel="up" href="index.html" title="AppStream" /><link rel="prev" href="chap-AppStream-About.html" title="Chapter 1. About AppStream" /><link rel="next" href="sect-Metadata-Releases.html" title="2.2. Release Information" />
<script src="static/js/highlight.min.js" type="text/javascript"></script><script>
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelectorAll('.verbatim-wrap.highlight').forEach((block) => {
hljs.highlightBlock(block);
});
});
hljs.configure({
useBR: false
});
</script></head><body class="offline js-off"><div class="bypass-block"><a href="#_content">Jump to content</a><a href="#_bottom-navigation">Jump to page navigation: previous page [access key p]/next page [access key n]</a></div><div id="_outer-wrap"><div id="_white-bg"><div id="_header"><div id="_logo"><a href="https://www.freedesktop.org/software/appstream/docs/"><img src="static/images/logo.png" alt="Logo" /><span>AppStream</span></a></div><div class="crumbs"><a class="book-link" href="index.html" title="AppStream"><span class="book-icon">AppStream</span></a><span> › </span><a class="crumb" href="chap-Metadata.html">Upstream Metadata</a></div><div class="clearme"></div></div></div><div id="_toolbar-wrap"><div id="_toolbar"><div id="_toc-area" class="inactive"><a id="_toc-area-button" class="tool" title="Contents" accesskey="c" href="index.html"><span class="tool-spacer"><span class="toc-icon">Contents</span><span class="clearme"></span></span><span class="tool-label">Contents</span></a><div class="active-contents bubble-corner"></div><div class="active-contents bubble"><div class="bubble-container"><h6>AppStream</h6><div id="_bubble-toc"><ol><li class="inactive"><a href="chap-AppStream-About.html"><span class="number">1 </span><span class="name">About AppStream</span></a></li><li class="inactive"><a href="chap-Metadata.html"><span class="number">2 </span><span class="name">Upstream Metadata</span></a></li><li class="inactive"><a href="chap-CatalogData.html"><span class="number">3 </span><span class="name">Catalog Metadata</span></a></li><li class="inactive"><a href="chap-AppStream-Misc.html"><span class="number">4 </span><span class="name">Miscellaneous</span></a></li><li class="inactive"><a href="chap-Quickstart.html"><span class="number">5 </span><span class="name">Metadata Quickstart</span></a></li><li class="inactive"><a href="chap-Validation.html"><span class="number">6 </span><span class="name">Data Validation</span></a></li><li class="inactive"><a href="chap-AppStream-ManualPages.html"><span class="number">7 </span><span class="name">Manual pages</span></a><ol>
<a href="re01.html#id-1.8.3.1">appstreamcli</a>
2012-2024Matthias Klumpp
AppStream
26 July,2012
appstreamcli1appstreamcliHandle AppStream metadata formats and query AppStream dataappstreamcliCOMMAND<a href="re01.html#id-1.8.3.5">Description</a>
This manual page documents briefly the appstreamcli command.
appstreamcli is a small helper tool to work with AppStream metadata and
access the AppStream component index from the command-line. The AppStream component
index contains a list of all available software components for your distribution, matched to their
package names.
It is generated using AppStream XML or Debian DEP-11 data, which is provided by your distributor.
For more information about the AppStream project and the other components which are part of it, take a look at
the AppStream pages at Freedesktop.org.
<a href="re01.html#id-1.8.3.6">Options</a>get IDGet a component from the metadata pool by its identifier.ssearch TERMSearch the AppStream component pool for a given search term.what-provides TYPE TERM
Return components which provide a given item. An item type can be specified using the
TYPE parameter, a value to search for has to be
supplied using the TERM parameter.
Examples:
Get components which handle the "text/xml" mediatype.
appstreamcli what-provides mediatype "text/xml"
Get component which provides the "libfoo.so.2" library.
appstreamcli what-provides lib libfoo.so.2
refreshrefresh-cache
Trigger a database refresh, if necessary.
In case you want to force the database to be rebuilt, supply the --force flag.
This command must be executed with root permission.status
Display various information about the installed metadata and
the metadata cache.
os-info
Show information about the current operating system from the metadata
index.
This requires the operating system to provide a operating-system
component for itself.
dump ID
Dump the complete XML descriptions of components with the given ID that were found in the
metadata pool.
validate FILES
Validate AppStream XML metadata for compliance with the specification.
Both XML metadata types, upstream and distro XML, are handled.
The format type which should be validated is determined automatically.
The --pedantic flag triggers a more pedantic
validation of the file, including minor and style issues in the report.
validate-tree DIRECTORY
Validate AppStream XML metadata found in a file-tree.
This performs a standard validation of all found metadata, but also checks for additional
errors, like the presence of .desktop files and validity of other additional metadata.
check-license LICENSE
Test a license string or license expression for validity and display details about it.
This will check whether the license string is considered to be valid for AppStream, and return
a non-zero exit code if it is not. The command will also display useful information like the
canonical ID of a license, whether it is suitable as license for AppStream metadata,
and whether the license is considered to be for Free and Open Source software or proprietary software.
AppStream will consider any license as Free and Open Source that is marked as suitable by either the
Free Software Foundation (FSF), Open Source Initiative (OSI) or explicit license list
of the Debian Free Software Guidelines (DFSG).
install ID
Install a software component by its ID using the package manager or Flatpak.
This resolves the AppStream component ID to an installation candidate and then
calls either the native package manager or Flatpak (if available) to install
the component.
remove ID
Uninstall a software component by its ID using the package manager or Flatpak.
This will uninstall software matching the selected ID using either the native
package manager or Flatpak (if available).
put FILE
Install a metadata file into the right directory on the current machine.
compare-versionsvercmp VER1 [CMP] VER2
Compare two version numbers. If two version numbers are given as parameters, the versions will be compared and the
comparison result will be printed to stdout.
If a version number, a comparison operator and another version number are passed in as parameter, the result of the comparison
operation will be printed to stdout, and appstreamcli will exit with a non-zero exit status in case the comparison
failed.
The comparison operator can be one of the following:
eq - Equal tone - Not equal tolt - Less thangt - Greater thanle - Less than or equal toge - Greater than or equal tonew-template TYPE FILE
Create a metainfo file template to be used by software projects. The --from-desktop option can be used
to use a .desktop file as template for generating the example file.
The generated files contain example entries which need to be filed in with the actual desired values by the project author.
The first TYPE parameter is the name of an AppStream component type. For a complete list check out
the documentation or the help output
of appstreamcli for this subcommand.
make-desktop-file MI_FILE DESKTOP_FILE
Create a XDG desktop-entry file from a metainfo file.
If the desktop-entry file specified in DESKTOP_FILE already exists, it will get extended with
the new information extracted from the metainfo file. Otherwise a new file will be created.
This command will use the first binary mentioned in a provides tag of the component
for the Exec= field of the new desktop-entry file.
If this is not the desired behavior, the --exec flag can be used
to explicitly define a binary to launch. Other methods of launching the application are currently not supported.
In order to generate a proper desktop-entry, this command assumes that not only the minimally required tags for an
AppStream component are set, but also that it has an <icon/> tag of type "stock" to describe
the stock icon that should be used as well as a <categories/> tag containing the categories the application should
be placed in.
news-to-metainfo NEWS_FILE MI_FILE [OUT_FILE]
This command converts a NEWS file as used by many open source projects into the XML used by AppStream. Since NEWS files are free text,
a lot of heuristics will be applied to get reasonable results. The converter can also read a YAML version of the AppStream release
description and convert it to XML as well.
If the metainfo file MI_FILE already exists, it will be augmented with the new release entries, otherwise the release entries
will be written without any wrapping component.
If [OUT_FILE] is specified, instead of acting on MI_FILE the changed data will
be written to the particular file. If any of the output filenames is set to "-", the output will instead be written to stdout.
The --format option can be used to enforce reading the input file in a specific format ("text" or "yaml") in case the format autodetection fails.
The --limit option is used to limit the amount of release entries written (the newest entries will always be first).
metainfo-to-news MI_FILE NEWS_FILE
This command reverses the news-to-metainfo command and writes a NEWS file as text or YAML using the XML
contained in a metainfo file. If NEWS_FILE is set to "-", the resulting data
will be written to stdout instead of to a file.
The --format option can be used to explicitly specify the output format ("yaml" or "text"). If it is not set,
appstreamcli will guess which format is most suitable.
convert FILE1 FILE1
Converts AppStream XML metadata into its YAML representation and vice versa.
compose
Composes an AppStream metadata catalog from a directory tree with metainfo files.
This command is only available if the org.freedesktop.appstream.compose
component is installed.
See appstreamcli-compose1
for more information.
--detailsPrint out more information about a found component.--no-colorDon't print colored output.--no-netDo not access the network when validating metadata.
The same effect can be achieved by setting the AS_VALIDATE_NONET environment variable
before running appstreamcli.
--versionDisplay the version number of appstreamcli<a href="re01.html#id-1.8.3.7">See Also</a>pkcon1.<a href="re01.html#id-1.8.3.8">AUTHOR</a>
This manual page was written by Matthias Klumpp matthias@tenstral.net.
<a href="re02.html#id-1.8.4.1">appstreamcli compose</a>
2020-2024Matthias Klumpp
AppStream
28 Aug,2020
appstreamcli compose1appstreamcli-composeCompose AppStream metadata catalog from directory treesappstreamcli composeCOMMAND<a href="re02.html#id-1.8.4.5">Description</a>
This manual page documents briefly the appstreamcli compose command.
The appstreamcli compose tool is used to construct AppStream metadata catalogs from directory trees.
The tool will also perform many related metadata generation actions, like resizing icons and
screenshots and merging in data from referenced desktop-entry files as well as translation status
information.
Therefore, the tool provides a fast way to test how the final processed metadata for an application
that is shipped to users may look like.
It also provides a way to easily generate AppStream data for projects which do not need a more complex data
generator like appstream-generator.
In order for the appstreamcli compose command to be available, you may need to install the
optional compose module for appstreamcli first.
For more information about the AppStream project and the other components which are part of it, take a look at
the AppStream pages at Freedesktop.org.
<a href="re02.html#id-1.8.4.6">Options</a>SOURCE-DIRECTORIES
A list of directories to process needs to be provided as positional parameters.
Data from all directories will be combined into one output namespace.
--origin NAME
Set the AppStream data origin identifier. This can be a value like
"debian-unstable-main" or "flathub".
--result-root DIR
Sets the directory where all generated output that is deployed to a user's
machine is exported to. If this parameter is not set and we only have one
directory to process, we use that directory as default output path.
If both --data-dir and --icons-dir are
set, --result-root is not necessary and no data will be
written to that directory.
--data-dir DIR
Override the directory where the generated AppStream metadata catalog
will be written to. Data will be written directly to this directory, and
no supdirectories will be created (unlike when using --result-root
to set an output location).
--icons-dir DIR
Override the directory where the cached icons are exported to.
--hints-dir DIR
Set a directory where hints reported generated during metadata processing
are saved to. If this parameter is not set, no HTML/YAML hint reports
will be saved.
--media-dir DIR
If set, creates a directory with media content (icons, screenshots, ...) that
can be served via a webserver. The metadata will be extended to include information
about these remote media.
--media-baseurl URL
The URL under which the contents of a directory set via --media-dir
will be served. This value must be set if a media directory is created.
--prefix DIR
Set the default prefix that is used in the processed directories. If
none is set explicitly, /usr is assumed.
--print-report MODE
Print the issue hints report (that gets exported as HTML and YAML
document when --hints-dir was set) to the console
in text form.
Various print modes are supported: on-error only prints a
short report if the run failed (default), short generates
an abridged report that is always printed and full results
in a detailed report to be printed.
--no-partial-urls
If set, all URLs in the generated data will be absolute and media_baseurl will not be used.
This makes changing the media mirror harder without regenerating all data and is generally not recommended,
to increase flexibility.
--icon-policy POLICY-STRING
Override the existing icon policy with a custom one. The icon policy sets how icons of
different sizes should be dealt with. They can be in the icon cache only, be a remote icon in
the media location or be both cached and available in the remote location.
The icon-policy string is comprised of comma-separated %{size}x%{size}@%{scale}=%{state} statements.
The size and scale are that of the respective icon, with the scale being allowed to be
omitted if it is 1. The state can be one of remote, cached or
cached-remote.
By default, a policy of 48x48=cached,48x48@2=cached,64x64=cached,64x64@2=cached,128x128=cached-remote,128x128@2=cached-remote
is selected.
--allow-custom CUSTOM-KEY-NAMES
By default, all custom entries set in MetaInfo input data are removed.
This flag allows one to whitelist custom keys to be propagated to the final catalog output data.
The custom-key names should be provided as a comma-separated list.
--components COMPONENT-IDs
Set a comma-separated list of AppStream component IDs that should be
considered for the generated metadata. All components that exist in
the input data but are not mentioned in this list will be ignored
for the generated output.
--no-colorDon't print colored output.--verboseDisplay extra debugging information--versionDisplay the version number of appstreamcli compose<a href="re02.html#id-1.8.4.7">See Also</a>
appstreamcli1,
appstream-generator1.
<a href="re02.html#id-1.8.4.8">AUTHOR</a>
This manual page was written by Matthias Klumpp matthias@tenstral.net.
</ol></li><li class="inactive"><a href="chap-AppStream-API.html"><span class="number">8 </span><span class="name">AppStream API Reference</span></a></li><li class="inactive"><a href="ix01.html"><span class="number"> </span><span class="name">Index</span></a></li></ol></div><div class="clearme"></div></div></div></div><div id="_nav-area" class="inactive"><div class="tool"><span class="nav-inner"><span class="tool-label">Navigation</span><a accesskey="p" class="tool-spacer" title="Chapter 1. About AppStream" href="chap-AppStream-About.html"><span class="prev-icon">←</span></a><a accesskey="n" class="tool-spacer" title="2.2. Release Information" href="sect-Metadata-Releases.html"><span class="next-icon">→</span></a></span></div></div></div></div><div id="_fixed-header-wrap" class="inactive"><div id="_fixed-header"><div class="crumbs"><a class="book-link" href="index.html" title="AppStream"><span class="book-icon">AppStream</span></a><span> › </span><a class="crumb" href="chap-Metadata.html">Upstream Metadata</a></div><div class="buttons"><a class="top-button button" href="#">Top</a><div class="button"><a accesskey="p" class="tool-spacer" title="Chapter 1. About AppStream" href="chap-AppStream-About.html"><span class="prev-icon">←</span></a><a accesskey="n" class="tool-spacer" title="2.2. Release Information" href="sect-Metadata-Releases.html"><span class="next-icon">→</span></a></div><div class="clearme"></div></div><div class="clearme"></div></div></div><div id="_content" class=""><div class="documentation"><div class="chapter" id="chap-Metadata"><div class="titlepage"><div><div class="version-info">Applies to <span class="productname">AppStream</span> <span class="productnumber">1.0</span></div><div><h1 class="title"><span class="number">2 </span><span xmlns:dm="urn:x-suse:ns:docmanager" class="name">Upstream Metadata</span> <a title="Permalink" class="permalink" href="chap-Metadata.html">#</a></h1></div></div></div><div class="line"><div class="toc"><dl><dt><span class="section"><a href="chap-Metadata.html#sect-Metadata-GenericComponent"><span class="number">2.1 </span><span class="name">Generic Component</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Releases.html"><span class="number">2.2 </span><span class="name">Release Information</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Application.html"><span class="number">2.3 </span><span class="name">Desktop Applications</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-ConsoleApplication.html"><span class="number">2.4 </span><span class="name">Console Applications</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-WebApplication.html"><span class="number">2.5 </span><span class="name">Web Applications</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Service.html"><span class="number">2.6 </span><span class="name">Services</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Addon.html"><span class="number">2.7 </span><span class="name">Addons</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Fonts.html"><span class="number">2.8 </span><span class="name">Fonts</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-IconTheme.html"><span class="number">2.9 </span><span class="name">Icon Themes</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Codec.html"><span class="number">2.10 </span><span class="name">Codecs</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-InputMethod.html"><span class="number">2.11 </span><span class="name">Input Methods</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Firmware.html"><span class="number">2.12 </span><span class="name">Firmware</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Driver.html"><span class="number">2.13 </span><span class="name">Driver</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Localization.html"><span class="number">2.14 </span><span class="name">Localization</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Repository.html"><span class="number">2.15 </span><span class="name">Repositories</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-OS.html"><span class="number">2.16 </span><span class="name">Operating System</span></a></span></dt><dt><span class="section"><a href="sect-Metadata-Runtime.html"><span class="number">2.17 </span><span class="name">Runtime</span></a></span></dt></dl></div></div><p>
AppStream allows upstream projects to define metadata about the components they provide using small XML files,
metainfo files, which get installed into locations on the client system and are used by distributors to enhance their
metadata.
</p><p>
A "component" is a piece of software, like an application, a library, a font or a codec. For several components, especially
those which are shown in software-centers, we provide specialized metainfo files to define specific properties and data of these components.
For example, applications and fonts support screenshots, while codecs don't.
</p><p>
All metainfo files need to contain a minimal amount of information, defined in the "Generic Component" section, which also describes some optional
elements which can be used.
Specialized components might require more information to be complete and valid.
</p><p>
The XML in metainfo files does not need any XML namespace, and adding one should generally be avoided.
If you want to use a namespace though (maybe in case you want to embed the data in other contexts), the xmlns
should be <code class="code">https://specifications.freedesktop.org/metainfo/1.0</code>.
</p><div class="sect1" id="sect-Metadata-GenericComponent"><div class="titlepage"><div><div><h2 class="title" id="sect-Metadata-GenericComponent"><span class="number">2.1 </span><span xmlns:dm="urn:x-suse:ns:docmanager" class="name">Generic Component</span> <a title="Permalink" class="permalink" href="chap-Metadata.html#sect-Metadata-GenericComponent">#</a></h2></div></div></div><div class="sect2" id="spec-component-introduction"><div class="titlepage"><div><div><h3 class="title" id="spec-component-introduction"><span class="number">2.1.1 </span><span xmlns:dm="urn:x-suse:ns:docmanager" class="name">Introduction</span> <a title="Permalink" class="permalink" href="chap-Metadata.html#spec-component-introduction">#</a></h3></div></div></div><p>
For a distribution, it is good to know more about the content of a package. Which public interfaces (libraries? Python modules?) does it provide? Does it contain codecs? Does it
contain firmware? Fonts? An application?
All of this information can be used to automatically install missing software or to offer users a choice on what they want to install from a software center.
</p><p>
To provide this information, we created the <span class="italic">metainfo</span> files, which allow <span class="bold"><strong>upstream projects</strong></span> to describe the content of their software package.
If a metainfo file contains a <code class="literal"><provides/></code> tag, distributors must also ensure that the package providing the file contains all items referenced
by that statement, or is installed by a metapackage depending on packages which provide these items. This gives upstream projects a (very light) way to influence distributor packaging.
More information about that can be found below.
</p><p>
Several specialized component-metainfo files exist, for example for applications or fonts. These are all based on this generic component XML specification, and are described in the
following chapters.
</p></div><div class="sect2" id="spec-component-location"><div class="titlepage"><div><div><h3 class="title" id="spec-component-location"><span class="number">2.1.2 </span><span xmlns:dm="urn:x-suse:ns:docmanager" class="name">Filesystem locations</span> <a title="Permalink" class="permalink" href="chap-Metadata.html#spec-component-location">#</a></h3></div></div></div><p>
Upstream projects can ship one or more metainfo files in <code class="filename">/usr/share/metainfo/%{id}.metainfo.xml</code>, where <code class="literal">id</code> is a unique
identifier of this specific component.
</p><div id="id-1.3.6.3.3" class="admonition note normal"><img class="symbol" alt="Note" title="Note" src="static/images/icon-note.png" /><h6>Note</h6><p>
Component metadata of type <code class="literal">desktop-application</code> as described in <a class="xref" href="sect-Metadata-Application.html" title="2.3. Desktop Applications">Section 2.3, “Desktop Applications”</a> can be installed
with an <code class="filename">.appdata.xml</code> extension as well for historical reasons.
AppStream implementations will read the XML files as long as they end up in the right location on the filesystem.
</p></div><div id="id-1.3.6.3.4" class="admonition important normal"><img class="symbol" alt="Important" title="Important" src="static/images/icon-important.png" /><h6>Important: Legacy Path</h6><p>
AppStream tools scan the <code class="filename">/usr/share/appdata/</code> path for legacy compatibility as well. It should not be used
anymore by new software though, even on older Linux distributions (like RHEL 7 and Ubuntu 16.04 LTS) the metainfo path is well
supported.
Support for the legacy path will likely be dropped completely with a future AppStream 1.0 release.
</p></div></div><div class="sect2" id="spec-component-filespec"><div class="titlepage"><div><div><h3 class="title" id="spec-component-filespec"><span class="number">2.1.3 </span><span xmlns:dm="urn:x-suse:ns:docmanager" class="name">XML Specification</span> <a title="Permalink" class="permalink" href="chap-Metadata.html#spec-component-filespec">#</a></h3></div></div></div><p>
The XML for a generic component definition starts with a <code class="code"><component></code> tag as the root element.
The <code class="code"><component></code> element must at least have an <code class="literal">id</code>, <code class="literal">name</code> and <code class="literal">summary</code> tag;
a <code class="literal">provides</code> tag with appropriate children is highly recommended.
</p><p>
In addition to the <code class="literal">type</code> attribute denoting the component type in case the component is not a <code class="code">generic</code> component,
the <code class="literal">component</code> tag may also have a <code class="literal">date_eol</code> attribute that sets a date when the component stops to
be supported entirely (this may be the case for superseded legacy software like <code class="code">org.python.python2</code>). The attribute value can be any
complete date or time in <a class="ulink" href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601<span class="ulink-url"> (https://en.wikipedia.org/wiki/ISO_8601)</span></a>.
</p><p>
All possible tags which can be used with components of all types are:
</p><div class="variablelist"><dl class="variablelist"><dt id="tag-id-generic"><span class="term"><id/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-id-generic">#</a></dt><dd><p>
The <code class="literal">id</code> tag is a unique identifier for this component. It must contain only alphanumeric ASCII characters, dots, hyphens and underscores. Spaces are
not allowed. While hyphens are allowed for legacy compatibility, their usage is strongly discouraged to ensure interoperability of the AppStream ID with other tools such
as D-Bus (and thereby making the ID more generic and useful). For the same reason it is also strongly discouraged to start any segment of the ID with a digit.
Additionally, even though uppercase letters are permitted in a component-ID, it is strongly encouraged to only use lowercase letters for the ID.
</p><p>
The ID must follow a reverse-DNS scheme, consisting of <code class="literal">{tld}.{vendor}.{product}</code>, for example <code class="code">org.kde.gwenview</code>
or <code class="code">com.hugski.colorhug2</code>. Ownership of <code class="literal">{vendor}.{tld}</code> in the domain name system guarantees uniqueness of IDs.
</p><p>
To increase the uniqueness and to distinguish between different pieces of a software suite, it is suggested to append the type name to the component-id in these cases.
For example, one can use <code class="code">com.hugski.colorhug2</code> for the client tools to control hardware, and <code class="code">com.hugski.colorhug2.firmware</code> for the runtime firmware files.
</p><p>
Note that the value of this tag must be <span class="emphasis"><em>unique</em></span> across all distributions and software deployment platforms.
In case it is not unique, distributors are expected to reject the conflicting components from inclusion into their metadata and notify the upstream projects about this issue.
</p><div id="id-1.3.6.4.5.1.2.5" class="admonition important normal"><img class="symbol" alt="Important" title="Important" src="static/images/icon-important.png" /><h6>Important: Escaping characters in the component ID</h6><p>
To ensures the greatest possible compatibility of an AppStream ID, it is recommended to replace any hyphens in the ID in all but the last segment of it with underscores,
and prefix every leading digit of a segment with an underscore as well. Since the underscore is not a valid character in domain names, the uniqueness of the ID is kept.
For example, the ID <code class="code">org.7-zip.7-zip</code> could become <code class="code">org._7_zip._7-zip</code>.
</p></div></dd><dt id="tag-metadata_license"><span class="term"><metadata_license/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-metadata_license">#</a></dt><dd><p>
The <code class="code"><metadata_license/></code> tag indicates the content license that you are releasing the one
metainfo XML file under. This is typically not the same as the project license. Omitting the license value will
result in the metainfo data not being incorporated into metadata collections as used by Linux distributions.
This tag is required for all metainfo files.
</p><p>
The value of this tag has to be one of the recognized SPDX license IDs for <code class="code"><metadata_license/></code> tags, or a simple SPDX expression
(only <code class="code">AND</code> and <code class="code">OR</code> operators allowed) allowing the use of the metadata file under one of the recognized licenses.
</p><p>
We do recognize a set of <a class="ulink" href="https://en.wikipedia.org/wiki/Permissive_software_licence" target="_blank">permissive<span class="ulink-url"> (https://en.wikipedia.org/wiki/Permissive_software_licence)</span></a> licenses that have been vetted
for mutual compatibility. This is important in order to allow the metainfo metadata to be combined with arbitrary other data in one file.
While copyleft licenses like the GPL are great for code, it is not feasible to test every copyleft license for mutual compatibility and compliance
when combining metainfo metadata with other data into one larger assembly fully automatically.
</p><p>
Currently, the following licenses have been reviewed and can be used as metadata licenses:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="literal">FSFAP</code></p></li><li class="listitem"><p><code class="literal">MIT</code></p></li><li class="listitem"><p><code class="literal">0BSD</code></p></li><li class="listitem"><p><code class="literal">CC0-1.0</code></p></li><li class="listitem"><p><code class="literal">CC-BY-3.0</code></p></li><li class="listitem"><p><code class="literal">CC-BY-4.0</code></p></li><li class="listitem"><p><code class="literal">CC-BY-SA-3.0</code></p></li><li class="listitem"><p><code class="literal">CC-BY-SA-4.0</code></p></li><li class="listitem"><p><code class="literal">GFDL-1.1</code></p></li><li class="listitem"><p><code class="literal">GFDL-1.2</code></p></li><li class="listitem"><p><code class="literal">GFDL-1.3</code></p></li><li class="listitem"><p><code class="literal">BSL-1.0</code></p></li><li class="listitem"><p><code class="literal">FTL</code></p></li><li class="listitem"><p><code class="literal">FSFUL</code></p></li></ul></div><p>
The license codes correspond to the identifiers found at the <a class="ulink" href="https://spdx.org/licenses/" target="_blank">SPDX OpenSource License Registry<span class="ulink-url"> (https://spdx.org/licenses/)</span></a>.
For instance, <code class="literal">CC-BY-SA-3.0</code> corresponds to the license at
<a class="ulink" href="https://creativecommons.org/licenses/by-sa/3.0/" target="_blank">creativecommons.org/licenses/by-sa/3.0<span class="ulink-url"> (https://creativecommons.org/licenses/by-sa/3.0/)</span></a>.
If you are looking for the simplest license to use for your metadata, using the <code class="code">FSFAP</code> license is suggested.
</p></dd><dt id="tag-name"><span class="term"><name/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-name">#</a></dt><dd><p>
A human-readable name for this software component. For example, if the component ID was "libc", its name might be "GNU Standard C Library".
</p></dd><dt id="tag-summary"><span class="term"><summary/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-summary">#</a></dt><dd><p>
A short summary of what this component does. If the component is "PackageKit", the summary could be "Provides a package-management abstraction layer".
This element is translatable.
</p></dd><dt id="tag-icon"><span class="term"><icon/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-icon">#</a></dt><dd><p>
The <code class="code"><icon/></code> tag describes the component icon. It is mostly used for GUI applications (component-type <code class="literal">desktop-application</code>).
It can be of type <code class="literal">stock</code>, <code class="literal">local</code> or <code class="literal">remote</code>.
</p><p>
<code class="literal">stock</code> icons are loaded from the icon stock (the current or hicolor/locolor fallback themes).
The icon name must not include any file-extension or path.
</p><p>
<code class="literal">local</code> icons are loaded from a file in the filesystem.
They should specify a full file path.
This icon type may have <code class="literal">width</code> and <code class="literal">height</code>
properties. If targeting a hi-DPI screen, this icon type may have a <code class="literal">scale</code> property.
</p><p>
<code class="literal">remote</code> icons loaded from a remote URL. Currently, only HTTP/HTTPS urls are supported.
This icon type should have <code class="literal">width</code> and <code class="literal">height</code> properties.
If targeting a hi-DPI screen, this icon type may have a <code class="literal">scale</code> property.
</p><p>
The semantics of each property in the <code class="code"><icon/></code> tag are the same as for the <code class="code"><icon/></code> tag
for catalog metadata. See <a class="xref" href="chap-CatalogData.html#tag-ct-icon"><icon/></a>.
</p></dd><dt id="tag-description"><span class="term"><description/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-description">#</a></dt><dd><p>
A long description of this component. Some markup can be used.
</p><p>
Do not assume the format is HTML. This list contains all currently supported formatting options:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p>Paragraph (<code class="literal">p</code>)</p></li><li class="listitem"><p>Ordered list (<code class="literal">ol</code>), with list items (<code class="literal">li</code>)</p></li><li class="listitem"><p>Unordered list (<code class="literal">ul</code>), with list items (<code class="literal">li</code>)</p></li><li class="listitem"><p>
Within paragraphs and list items, emphasis (<code class="literal">em</code>) and inline code (<code class="literal">code</code>) text styles are supported.
The emphasis is commonly rendered in italic, while inline code is shown in a monospaced font.
</p></li><li class="listitem"><p>Nested lists are not supported</p></li></ul></div><p>
In MetaInfo files, this tag should be translated by-paragraph. For enumerations, items are translated individually as well, and not the
whole enumeration block. This means that in a translated file, only <code class="literal"><p/></code> and <code class="literal"><li/></code>
elements may carry an <code class="literal">xml:lang</code> property.
</p><p>
All text must be in paragraphs or list item elements - text that contained directly in a <code class="literal">description</code> element is not
permitted.
</p></dd><dt id="tag-categories"><span class="term"><categories/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-categories">#</a></dt><dd><p>
This tag can contain one or more <code class="code"><category></code> entries, describing the categories this software component
is associated with.
This tag is usually applied to components of type <code class="literal">desktop-application</code>, but can be used with any component.
A list of valid category names can be found in the
<a class="ulink" href="https://specifications.freedesktop.org/menu-spec/latest/category-registry.html" target="_blank">Freedesktop menu specification<span class="ulink-url"> (https://specifications.freedesktop.org/menu-spec/latest/category-registry.html)</span></a>.
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><categories>
<category>Game</category>
<category>ArcadeGame</category>
</categories></pre></div></dd><dt id="tag-keywords"><span class="term"><keywords/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-keywords">#</a></dt><dd><p>
This tag can contain one or more <code class="code"><keyword></code> children, describing keywords for the component,
to make it easier to find in a software center.
For translated keywords in metainfo files, the individual <code class="literal">keyword</code> tags should be translated.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><keywords>
<keyword translate="no">IDE</keyword>
<keyword>development</keyword>
<keyword>programming</keyword>
<keyword xml:lang="de">entwicklung</keyword>
<keyword xml:lang="de">programmierung</keyword>
</keywords></pre></div></dd><dt id="tag-url"><span class="term"><url/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-url">#</a></dt><dd><p>
Defines web URLs for this component. There are several different URL types allowed:
</p><div class="variablelist"><dl class="variablelist"><dt id="id-1.3.6.4.5.9.2.2.1"><span class="term">homepage</span></dt><dd><p>
Should be a link to the upstream homepage for the component.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.2"><span class="term">bugtracker</span></dt><dd><p>
Should point to the software's bug tracking system, for users to report new bugs.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.3"><span class="term">faq</span></dt><dd><p>
Should link a FAQ page for this software, to answer some of the most-asked questions in
detail, something which you cannot do in the component's description.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.4"><span class="term">help</span></dt><dd><p>
Should provide a web link to an online user's reference, a software manual or help page.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.5"><span class="term">donation</span></dt><dd><p>
URLs of this type should point to a webpage showing information on how to donate to
the described software project.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.6"><span class="term">translate</span></dt><dd><p>
URLs of this type should point to a webpage where users can submit or
modify translations of the upstream project.
</p><p>
Typically this should be a link to the project page in Weblate, Transifex or Zanata, but could also be a
link to an upstream-hosted wiki page describing how to send translations upstream.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.7"><span class="term">contact</span></dt><dd><p>
URLs of this type should allow the user to contact the developer.
</p><p>
This could for example be an HTTPS URL to an online form or a page describing how to contact the developer.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.8"><span class="term">vcs-browser</span></dt><dd><p>
URLs of this type should point to a webpage on which the user can browse the sourcecode.
</p></dd><dt id="id-1.3.6.4.5.9.2.2.9"><span class="term">contribute</span></dt><dd><p>
URLs of this type should point to a webpage showing information on how to contribute to
the described software project.
</p></dd></dl></div></dd><dt id="tag-launchable"><span class="term"><launchable/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-launchable">#</a></dt><dd><p>
This tag indicates possible methods to launch the software described in this component.
It is allowed to appear multiple times in MetaInfo data.
</p><p>
The <code class="code"><launchable/></code> tag has a required <code class="literal">type</code> property indicating the system that is used to launch the component. The following types are allowed:
</p><div class="variablelist"><dl class="variablelist"><dt id="id-1.3.6.4.5.10.2.3.1"><span class="term">desktop-id</span></dt><dd><p>
The application can be launched via a desktop file. The value of the tag is a
<a class="ulink" href="https://specifications.freedesktop.org/desktop-entry-spec/latest/file-naming.html#desktop-file-id" target="_blank">desktop-file id<span class="ulink-url"> (https://specifications.freedesktop.org/desktop-entry-spec/latest/file-naming.html#desktop-file-id)</span></a>.
</p><p>
In case a software component has multiple launchable entries,
the software center might display a dialog to choose which entry to launch.
If possible though, it should be avoided to add multiple <code class="literal">launchable</code> tags of type <code class="literal">desktop-id</code>.
</p></dd><dt id="id-1.3.6.4.5.10.2.3.2"><span class="term">service</span></dt><dd><p>
The software can be started, stopped, and monitored by the OS "init"
facility, such as systemd. The value of the tag is a name that can be
used with that facility, such as a systemd unit name.
</p><p>
Multiple <code class="literal">launchable</code> tags of type <code class="literal">service</code> are not
alternatives to start the same service, but the
component does contain multiple services that might all need to be
started.
</p><p>
Only those services should be listed as launchables that the user is
actually expected to start and stop manually. Services that are
started/stopped indirectly via dependencies of other services should
not be listed.
</p><p>
For systemd units, the services listed as launchables are expected to
support enabling and disabling.
</p></dd><dt id="id-1.3.6.4.5.10.2.3.3"><span class="term">cockpit-manifest</span></dt><dd><p>
The software can be launched from the menus of
the <a class="ulink" href="https://cockpit-project.org" target="_blank">Cockpit<span class="ulink-url"> (https://cockpit-project.org)</span></a> admin interface.
The value of the tag is the name of a <a class="ulink" href="https://cockpit-project.org/guide/latest/packages.html" target="_blank">Cockpit
package<span class="ulink-url"> (https://cockpit-project.org/guide/latest/packages.html)</span></a>.
</p></dd><dt id="id-1.3.6.4.5.10.2.3.4"><span class="term">url</span></dt><dd><p>
The application is a web site that is viewed through a browser.
The value of the tag is a direct HTTP/HTTPS URL that the browser must navigate to.
</p></dd></dl></div><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><launchable type="desktop-id">org.gnome.sysprof2.desktop</launchable></pre></div></dd><dt id="tag-releases"><span class="term"><releases/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-releases">#</a></dt><dd><p>
The <code class="code"><releases></code> tag contains multiple <code class="literal">release</code> children that
themselves contain metadata about releases made for this software component.
The release information XML is described in-depth in <a class="xref" href="sect-Metadata-Releases.html" title="2.2. Release Information">Section 2.2, “Release Information”</a>,
examples for a valid <code class="literal">releases</code> tag with artifacts are also provided there.
</p><p>
Release information can be embedded in the component's metainfo file, following the XML
description outlined in <a class="xref" href="sect-Metadata-Releases.html" title="2.2. Release Information">Section 2.2, “Release Information”</a>. Alternatively, it can also
be split into its own metadata file as described in that section. In case of external metadata,
a <code class="literal">releases</code> tag must still be present in the component's metainfo file, and
must have a <code class="literal">type</code> property set to value <code class="code">external</code> (if the <code class="literal">type</code>
property is missing, a value of <code class="code">embedded</code> is implicitly assumed for it).
</p><p>
In case of external metadata, the <code class="literal">releases</code> tag may also have an <code class="literal">url</code>
property linking to a web location where the release XML can be found and updated separately from the
main component metadata. An <code class="literal">url</code> property must not be present without <code class="literal">type</code>
set to <code class="code">external</code>.
</p><p>
Only HTTPS links are allowed for the web URL, and any <code class="literal">artifact</code> defined in a
release description from an external website should not be trusted without further verification, as external
release information can currently not be signed.
</p><p>
AppStream catalog metadata generators may choose to update the locally provided release information with the data from
the web location provided by the URL in <code class="literal">url</code>.
This allow projects to complete release localization after a release was made, or include further information that was
not yet available directly at release time.
The generated catalog XML data must be complete and must not contain references to external release information.
</p><p>
Example for a <code class="literal">releases</code> block that points to an external metadata file:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><releases type="external" url="https://example.org/releases/org.example.myapp.releases.xml" /></pre></div><div id="id-1.3.6.4.5.11.2.8" class="admonition important normal"><img class="symbol" alt="Important" title="Important" src="static/images/icon-important.png" /><h6>Important: Local Release Data</h6><p>
Please note that even if release data is external and also provided on a remote location, it also <span class="emphasis"><em>must</em></span> be
available locally, installed as a file into <code class="filename">/usr/share/metainfo/releases/%{cid}.releases.xml</code>.
The local file may not contain all information (for example it may not have a complete release description or all translations),
but basic data such as the released versions and their release dates should be present.
</p><p>
It is an error to reference an external release data file, but not provide a local copy of it.
</p></div></dd><dt id="tag-provides"><span class="term"><provides/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-provides">#</a></dt><dd><p>
The <code class="literal">provides</code> tag and its children describe the public interfaces this application provides.
A public interface can be anything which other applications, which are not part of the upstream project, can access or reference.
This includes binaries and libraries. Private interfaces should never be added to a <code class="literal">provides</code> tag.
</p><p>
A <code class="literal">provides</code> tag contains a number of children describing the type and name of the provided public interface items.
It is suggested that the build system auto-generates this tag and its children.
Currently allowed item types are listed below. If you miss something,
<a class="ulink" href="https://github.com/ximion/appstream/issues/new" target="_blank">file a bug against AppStream<span class="ulink-url"> (https://github.com/ximion/appstream/issues/new)</span></a> so we can add the new type.
</p><div class="variablelist"><dl class="variablelist"><dt id="id-1.3.6.4.5.12.2.3.1"><span class="term"><mediatype/></span></dt><dd><p>
Describes the media types (also known as MIME types) this software supports, meaning it can open, edit or otherwise handle them.
This tag is especially useful for generic components and addon-type components. For applications, the metadata may automatically
be fetched from their <code class="filename">.desktop</code> files by the distribution's metadata generator if a desktop-entry file is set
as <a class="xref" href="chap-Metadata.html#tag-launchable"><launchable/></a>.
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting">
<provides>
<mediatype>text/html</mediatype>
<mediatype>image/jpeg</mediatype>
<mediatype>application/rss+xml</mediatype>
</provides></pre></div></dd><dt id="id-1.3.6.4.5.12.2.3.2"><span class="term"><library/></span></dt><dd><p>
Contains the name of a shared library placed in a publicly accessible library path, such as <code class="filename">/usr/lib</code>, <code class="filename">/usr/lib/<triplet></code>
or <code class="filename">/lib</code>.
For example, for the <code class="literal">libappstream</code> library, the value for <code class="literal">library</code> would be <code class="code">libappstream.so.1</code>.
</p></dd><dt id="id-1.3.6.4.5.12.2.3.3"><span class="term"><binary/></span></dt><dd><p>
Name of a binary installed into a location in <code class="envar">PATH</code>.
</p></dd><dt id="id-1.3.6.4.5.12.2.3.4"><span class="term"><font/></span></dt><dd><p>
Full name of a font provided by this component. See <a class="xref" href="sect-Metadata-Fonts.html" title="2.8. Fonts">Section 2.8, “Fonts”</a> for more information.
</p></dd><dt id="id-1.3.6.4.5.12.2.3.5"><span class="term"><modalias/></span></dt><dd><p>
A modalias glob representing the hardware types (for example USB, PCI, ACPI, DMI) this component handles.
Useful for installing printer drivers or other USB protocol drivers for smartphones, firmware, and
out of tree kernel drivers.
</p></dd><dt id="id-1.3.6.4.5.12.2.3.6"><span class="term"><firmware/></span></dt><dd><p>
This provided element is described in detail for the <code class="literal">firmware</code> component type, where it is mandatory.
Please see <a class="xref" href="sect-Metadata-Firmware.html#tag-firmware-provides"><provides/> ↪ <firmware/></a> for more information.
</p></dd><dt id="id-1.3.6.4.5.12.2.3.7"><span class="term"><python3/></span></dt><dd><p>
Name of a Python 3 module this component provides.
</p></dd><dt id="id-1.3.6.4.5.12.2.3.8"><span class="term"><dbus/></span></dt><dd><p>
Contains the well-known name of a D-Bus service as its value. The type of the service must be specified using the <code class="literal">type</code> property
of this tag. Allowed values are <code class="code">user</code> and <code class="code">system</code>.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><provides>
<dbus type="system">org.freedesktop.packagekit</dbus>
</provides></pre></div></dd><dt id="id-1.3.6.4.5.12.2.3.9"><span class="term"><id/></span></dt><dd><p>
Contains the component-ID of another software component. The presence of this tag indicates that the software component containing it is able to
provide all functionality of the one referenced in the <code class="code"><provides/> ↪ <id/></code> tag.
</p><p>
This is useful in case a component-id had to be renamed in the past, e.g. because its domain-name changed.
</p></dd></dl></div></dd><dt id="tag-relations"><span class="term"><requires/>, <recommends/> & <supports/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations">#</a></dt><dd><p>
The <code class="literal">requires</code> tag denotes an <span class="emphasis"><em>absolute</em></span> requirement on a different entity.
For example, a component can require certain hardware to be present, require a specific minimum kernel version,
or another component to be installed first. If a requirement specified in a <code class="literal">requires</code> tag
is not met, AppStream clients should prevent the installation of the particular software component.
</p><p>
If it is not essential that a certain requirement is met by the system, but just recommended to be available, a
<code class="literal">recommends</code> tag should be used. In this case, AppStream clients should allow the installation of the software
component, but may display a warning before allowing the installation.
It is permissible, but not required, to prevent installation of software which does not have all items specified as
<code class="literal">recommends</code> met on the system that it is installed to.
</p><p>
Components may also set a <code class="literal">supports</code> tag. This is an even weaker relation than <code class="literal">recommends</code>,
and means the particular component can make use of certain hardware capabilities or other software if it is available, but will
also be usable if it is not.
</p><p>
A <code class="literal">requires</code>, <code class="literal">recommends</code> or <code class="literal">supports</code> tag contains children describing the type,
value and version relation of the required item.
Each child can have a <code class="literal">version</code> and a <code class="literal">compare</code> property, to allow depending on a certain minimal
version of the respective item.
The <code class="literal">version</code> property contains the version to be compared against, while the <code class="literal">compare</code> property contains
a two-letter code denoting how to compare the version of a present item with the version listed in the property.
If no <code class="literal">compare</code> property is given, but a <code class="literal">version</code> property is found, AppStream implementations should
implicitly assume a value of <code class="code">ge</code> for comparison of the versions. The installed version is on the left side of the required version
when comparing them. See <a class="xref" href="chap-AppStream-Misc.html#sect-AppStream-Misc-VerCmp" title="4.1. Version Comparison Algorithm">Section 4.1, “Version Comparison Algorithm”</a> for a description of the version comparison algorithm.
</p><p>
Possible two-letter codes for version comparisons are:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="code">eq</code> - Equal to</p></li><li class="listitem"><p><code class="code">ne</code> - Not equal to</p></li><li class="listitem"><p><code class="code">lt</code> - Less than</p></li><li class="listitem"><p><code class="code">gt</code> - Greater than</p></li><li class="listitem"><p><code class="code">le</code> - Less than or equal to</p></li><li class="listitem"><p><code class="code">ge</code> - Greater than or equal to</p></li></ul></div><p>
Please note that not all item types are valid for all relation types.
Generally valid item types are listed below, with information as for which relation kins they are valid.
</p><div class="variablelist"><dl class="variablelist"><dt id="tag-relations-id"><span class="term"><id/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-id">#</a></dt><dd><p>
A relation to another software component. The value should be another component-ID. Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><requires>
<id version="1.0" compare="ge">org.example.my_software</id>
</requires></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code>, <code class="literal">supports</code></p></dd><dt id="tag-relations-modalias"><span class="term"><modalias/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-modalias">#</a></dt><dd><p>
Check for specific hardware to be present via its modalias. The modalias may contain a wildcard expression.
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><recommends>
<modalias>usb:v1130p0202d*</modalias>
</recommends></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code>, <code class="literal">supports</code></p></dd><dt id="tag-relations-kernel"><span class="term"><kernel/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-kernel">#</a></dt><dd><p>
Check for a specific kernel to be running on the system. The kernel name is the output of <code class="command">uname -s</code>.
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><requires>
<kernel version="4.14" compare="ge">Linux</kernel>
</requires></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code></p></dd><dt id="tag-relations-memory"><span class="term"><memory/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-memory">#</a></dt><dd><p>
Set a relation to the amount of physical memory (RAM) the system should have to run the software component.
The memory size is set in MiB. You usually only want to use this with the <code class="literal">recommends</code> tag,
because users might want to install the software on systems even if they have a lesser amount of memory
compared to what would be ideal.
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><recommends>
<memory>2048</memory> <!-- recommend at least 2GiB of memory -->
</recommends></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code></p></dd><dt id="tag-relations-firmware"><span class="term"><firmware/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-firmware">#</a></dt><dd><p>
Depend on a specific device firmware. The value of this tag should either be a name like <code class="literal">bootloader</code>, be
empty to reference the firmware itself described by the <code class="literal">firmware</code>-type component this tag is contained in,
or contain a GUID.
This tag is commonly used and interpreted by the <a class="ulink" href="https://fwupd.org/" target="_blank">LVFS<span class="ulink-url"> (https://fwupd.org/)</span></a>.
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><requires>
<firmware compare="ge" version="0.1.2">6de5d951-d755-576b-bd09-c5cf66b27234</firmware>
<firmware compare="ge" version="0.1.2"/>
<firmware compare="ge" version="0.3.4">bootloader</firmware>
</requires></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code></p></dd><dt id="tag-relations-hardware"><span class="term"><hardware/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-hardware">#</a></dt><dd><p>
Require, recommend or support a specific system hardware configuration. The value of this item is a
<a class="ulink" href="https://docs.microsoft.com/en-us/windows-hardware/drivers/dashboard/using-chids" target="_blank">Computer Hardware ID (CHID)<span class="ulink-url"> (https://docs.microsoft.com/en-us/windows-hardware/drivers/dashboard/using-chids)</span></a>
without any surrounding braces.
</p><p>
On Linux systems, the CHIDs of the system can be queried using the <code class="command">sudo fwupdtool hwids</code> command.
</p><p>
This tag is commonly used and interpreted by the <a class="ulink" href="https://fwupd.org/" target="_blank">LVFS<span class="ulink-url"> (https://fwupd.org/)</span></a> and fwupd tool.
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><requires>
<hardware>be6ab11f-af5f-572e-be18-84301d880764</hardware>
</requires></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code>, <code class="literal">supports</code></p></dd><dt id="tag-relations-control"><span class="term"><control/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-control">#</a></dt><dd><p>
This item type can be used to indicate support for or require certain ways a user can control the software. This usually maps to certain methods
of input. If multiples <code class="literal">control</code> tags with different values are found within a requires/supports block, only one of them needs
to be satisfied on the system to mark an application as compatible. This means if <code class="literal">touch</code> and <code class="literal">pointing</code> are both
supported as controls for an application-type component, a system that only has a mouse and no touchscreen will still be considered able to run
the application. Valid values for this tag are:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="code">pointing</code> - Input via mouse/cursors/other pointing devices is possible</p></li><li class="listitem"><p><code class="code">keyboard</code> - Keyboard input is possible</p></li><li class="listitem"><p><code class="code">console</code> - Control via a console / command-line interface</p></li><li class="listitem"><p><code class="code">tablet</code> - Graphics tablet input</p></li><li class="listitem"><p><code class="code">touch</code> - Input by touching a surface with fingers is possible</p></li><li class="listitem"><p><code class="code">gamepad</code> - The component supports gamepads (any game controller with wheels/buttons/joysticks)</p></li><li class="listitem"><p><code class="code">tv-remote</code> - Input via a TV remote (with arrow keys, number pad, other basic inputs) is supported.</p></li><li class="listitem"><p><code class="code">voice</code> - The software can be controlled via voice recognition/activation</p></li><li class="listitem"><p><code class="code">vision</code> - The software can be controlled by computer vision / visual object and sign detection</p></li></ul></div><p>
If a control type is <span class="emphasis"><em>supported</em></span> (= in a <code class="literal">supports</code> block), it means the software supports the given method of user
input. As long as one of the input methods is available on the system, the software can be used. Installation on systems without the given control may
still be permitted, but the software may not be easily usable.
</p><p>
If a control type is <span class="emphasis"><em>recommended</em></span> (= in a <code class="literal">recommends</code> block), it means the software prefers the given method of
user input. The software may still be installed if the input control method is not available, but functionality may be severely degraded.
</p><p>
If a control type is <span class="emphasis"><em>required</em></span> (= in a <code class="literal">requires</code> block), the same applies, but the software installer should refuse
to install the software on devices which do not have at least one of the input methods. It is therefore advised to only use the <code class="code">control</code> tag
in <code class="code">supports</code> and possibly <code class="code">recommends</code> blocks, and avoid to use it in <code class="code">requires</code>.
</p><p>
For certain component types, some permitted controls are implicitly assumed: For <a class="link" href="sect-Metadata-Application.html" title="2.3. Desktop Applications">desktop-application</a>
and <a class="link" href="sect-Metadata-WebApplication.html" title="2.5. Web Applications">web-application</a> components, <code class="literal">pointing</code> and <code class="literal">keyboard</code> controls
are assumed supported, unless explicit support is defined by the metadata author.
For <a class="link" href="sect-Metadata-ConsoleApplication.html" title="2.4. Console Applications">console-application</a>, control via <code class="literal">console</code> is assumed.
</p><p>
For any other, non-application-like component types, the <code class="literal">control</code> relation item is currently considered unsupported.
</p><p>
Example control support block:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><supports>
<control>pointing</control>
<control>keyboard</control>
<control>touch</control>
</supports></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code>, <code class="literal">supports</code></p></dd><dt id="tag-relations-display_length"><span class="term"><display_length/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-display_length">#</a></dt><dd><p>
Set a relation to the display length defined as an integer value in <span class="emphasis"><em>logical pixels</em></span> (device pixels divided by scaling factor,
roughly equivalent to 0.26mm (1/96in), also known as device-independent pixels).
Setting the <code class="literal">side</code> property to either <code class="code">shortest</code> or <code class="code">longest</code> will apply the selected size constraint to
either the shortest or longest side of the display rectangle, with <code class="code">shortest</code> being implicitly assumed if no value is set.
</p><div id="id-1.3.6.4.5.13.2.8.8.2.2" class="admonition note normal"><img class="symbol" alt="Note" title="Note" src="static/images/icon-note.png" /><h6>Note: About Pixel Dimensions</h6><p>
One logical pixel (= device independent pixel) roughly corresponds to the visual angle of one pixel on a device with a pixel density of
96dpi and a distance from the observer of about 52cm, making the physical pixel about 0.26mm in size.
When using logical pixels as unit, they might not always map to exact physical lengths as their exact size is defined by the device providing
the display.
They do however accurately depict the maximum amount of pixels that can be drawn in the depicted direction on the device's display space.
</p></div><p>
Relations for the display length can be defined using a <code class="literal">compare</code> property as described in <a class="xref" href="chap-Metadata.html#tag-relations"><requires/>, <recommends/> & <supports/></a>.
If this property is not present, a value of <code class="code">ge</code> (greater-or-equal) is implicitly assumed.
</p><div id="id-1.3.6.4.5.13.2.8.8.2.4" class="admonition note normal"><img class="symbol" alt="Note" title="Note" src="static/images/icon-note.png" /><h6>Note: Determining Device Types</h6><p>
Please note that a display with a lot of vertical space may not be a television screen, but could also be a large gaming monitor.
Similar logic applies to the smaller screen sizes. Therefore, to indicate that an application runs well on a certain <span class="emphasis"><em>device</em></span>
and not just on a certain <span class="emphasis"><em>display</em></span>, additional metadata is needed, like the application's supported
input controls as defined via <a class="xref" href="chap-Metadata.html#tag-relations-control"><control/></a>.
</p></div><div id="id-1.3.6.4.5.13.2.8.8.2.5" class="admonition note normal"><img class="symbol" alt="Note" title="Note" src="static/images/icon-note.png" /><h6>Note: Sizes for Reference</h6><p>
The sizes below are for reference if you do not know the exact dimensions your application will fit into,
and just need a rough guideline as to what device type you can expect at a given size:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p>Very small screens, as used in watches, wearables and other small-display devices: about <= 360px</p></li><li class="listitem"><p>Small screens often used in handheld devices, such as phone screens, small phablets: about < 768px</p></li><li class="listitem"><p>Screens in laptops, tablets: about >= 768px</p></li><li class="listitem"><p>Bigger computer monitors: about >= 1024px</p></li><li class="listitem"><p>Television screens, large projected images: about >= 3840px</p></li></ul></div></div><p>
This tag may appear up to four times to set a minimum and maximum dimension required.
If multiple displays are connected to a device, it is acceptable to test against either the largest screen attached to the device, or the combined
amount of display space (depending on what makes the most sense for the respective device / setup).
A software center application may test for the maximum possible resolution of an attached display, and not the currently set display resolution in case
it wants to check against hardware capability and not be influenced by user configuration.
</p><p>
If used in a <code class="literal">requires</code> block, this relation can be used to restrict an application to only be installable on systems which have a minimum
usable display length available for it. If used in a <code class="literal">recommends</code> block, the application will still be
installable, but the user may be shown a warning.
</p><p>
If no <code class="literal">display_length</code> relation is present, a minimum required display (<code class="code">ge</code>) relation
of <code class="code">768px</code> is implicitly assumed to preserve backwards compatibility (so applications capable of running on smaller screens
need to make their support for that configuration explicit).
</p><p>
Examples:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><!-- recommend at least 600 logical pixels of space -->
<recommends>
<display_length compare="ge">600</display_length>
</recommends>
<!-- ensure this application is not run on a very large screen, or
very small screen (no tiny handhelds or television screens) -->
<requires>
<display_length compare="lt">3840</display_length>
<display_length compare="gt">360</display_length>
</requires></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code></p></dd><dt id="tag-relations-internet"><span class="term"><internet/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-relations-internet">#</a></dt><dd><p>
Require, recommend or support connectivity to the internet. The value of this item one of the following:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p>
<code class="code">always</code> - Needs internet connectivity to work. If used in a <code class="literal">recommends</code> element,
then this indicates that the app can work without internet, but the experience will be degraded.
</p></li><li class="listitem"><p>
<code class="code">offline-only</code> - Never uses the internet, even if it’s available.
</p></li><li class="listitem"><p>
<code class="code">first-run</code> - Uses the internet the first time the application is run, but not normally afterwards.
</p></li></ul></div><p>
If the value of <code class="literal"><internet/></code> is not <code class="literal">offline-only</code>, the <code class="literal">bandwidth_mbitps</code> attribute can be
set to a bandwidth (in Mbit/s) which is the minimum internet bandwidth needed for the application to be usable. If this attribute is not set, it’s
assumed that the application is usable with all internet connections.
</p><p>
Examples:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><!-- always needs the internet -->
<requires>
<internet>always</internet>
</requires>
<!-- always needs the internet and has a degraded experience if it’s not at least 2Mbit/s -->
<requires>
<internet bandwidth_mbitps="2">always</internet>
</requires>
<!-- never uses the internet, even if available -->
<requires>
<internet>offline-only</internet>
</requires>
<!-- the software explicitly supports running offline (but may also be able to use online features) -->
<supports>
<internet>offline-only</internet>
</supports>
<!-- requires the internet on first run -->
<requires>
<internet>first-run</internet>
</requires>
<!-- can work without the internet, but with a degraded experience -->
<recommends>
<internet>always</internet>
</recommends>
<!-- recommends the internet for when it’s first run, but can work without -->
<recommends>
<internet>first-run</internet>
</recommends>
<!-- requires the internet on first run, can run without it afterwards but with a degraded experience -->
<requires>
<internet>first-run</internet>
</requires>
<recommends>
<internet>always</internet>
</recommends></pre></div><p>Valid for: <code class="literal">requires</code>, <code class="literal">recommends</code>, <code class="literal">supports</code></p></dd></dl></div></dd><dt id="tag-replaces"><span class="term"><replaces/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-replaces">#</a></dt><dd><p>
The <code class="literal">replaces</code> tag denotes indicates that the given component completely replaces
another one on the system. In most cases, the replaced component and the one that replaces it can not be
coinstalled. Compared to a <a class="xref" href="chap-Metadata.html#tag-provides"><provides/></a> ↪ <code class="literal">id</code> relationship,
for a replaced component there is no common interface that two components can provide at once.
</p><p>
A <code class="literal">replaces</code> tag has <code class="literal">id</code> children which have the component-IDs of the
components that the current component replaces as value.
</p><p>
This feature is usually used for components that have to change their ID. While metainfo data may
contain <code class="literal">replaces</code> tags, software repository providers should filter these tags
carefully to ensure that the new component has the right to replace an old one.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><!-- the 7-zip application changes its ID and therefore replaces the component with its old ID -->
<id>org._7_zip._7zip</id>
[...]
<replaces>
<id>org.7-zip.7zip</id>
</replaces></pre></div></dd><dt id="tag-mimetypes"><span class="term"><mimetypes/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-mimetypes">#</a></dt><dd><p>
This tag can contain one or more <code class="code"><mimetype/></code> children, describing the MIME types this application supports.
</p><div id="id-1.3.6.4.5.15.2.2" class="admonition important normal"><img class="symbol" alt="Important" title="Important" src="static/images/icon-important.png" /><h6>Important: Deprecation</h6><p>
This tag is deprecated and should not be used for new metadata. Please use <a class="xref" href="chap-Metadata.html#tag-provides"><provides/></a> ↪ <code class="literal">mediatype</code> tags
instead.
</p></div></dd><dt id="tag-project_group"><span class="term"><project_group/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-project_group">#</a></dt><dd><p>
If you include the <code class="code"><project_group/></code> tag then this identifies your project with a specific upstream umbrella project.
Known values include <code class="literal">GNOME</code>, <code class="literal">KDE</code>, <code class="literal">XFCE</code>, <code class="literal">MATE</code> and <code class="literal">LXDE</code>,
although other umbrella projects like Yorba or Mozilla make sense too.
</p><div id="id-1.3.6.4.5.16.2.2" class="admonition note normal"><img class="symbol" alt="Note" title="Note" src="static/images/icon-note.png" /><h6>Note</h6><p>
You should only identify with an umbrella project if you use <span class="emphasis"><em>all</em></span> their infrastructure and policies, for instance string
freezes dates, bugtracker and source control instance.
</p></div></dd><dt id="tag-compulsory_for_desktop"><span class="term"><compulsory_for_desktop/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-compulsory_for_desktop">#</a></dt><dd><p>
The <code class="code"><compulsory_for_desktop></code> tag indicates that the component which the metadata belongs to is essential for the
functionality of the defined desktop environment. Examples for compulsory components are the <code class="literal">GNOME Shell</code> by the GNOME Project,
or the <code class="literal">Plasma Desktop</code> by KDE, as well as things like <code class="literal">iBus</code> or the desktop login manager.
</p><p>
Software centers are expected to detect the running desktop environment and disable uninstallation for compulsory components of that desktop,
so users will not be able to damage their currently running, primary desktop environment.
</p><p>
Multiple occurrences of the <code class="code"><compulsory_for_desktop></code> tag are allowed, so a project can be essential for many desktops.
The distributor decides which components should be made compulsory, however it is generally a good idea to follow upstream's recommendations on that matter.
</p><p>
A list of all allowed values for this tag is defined in the <a class="ulink" href="https://specifications.freedesktop.org/menu-spec/latest/onlyshowin-registry.html" target="_blank">XDG Menu Specification<span class="ulink-url"> (https://specifications.freedesktop.org/menu-spec/latest/onlyshowin-registry.html)</span></a>.
Software center applications will only recognize these values.
</p></dd><dt id="tag-project_license"><span class="term"><project_license/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-project_license">#</a></dt><dd><p>
The <code class="code"><project_license/></code> tag is indicating the license of the component (application/library/addon/font/etc.) described in the metadata document.
It should be an <a class="ulink" href="https://spdx.org/specifications" target="_blank">SPDX license expression<span class="ulink-url"> (https://spdx.org/specifications)</span></a>. Please note the SPDX license IDs are case-sensitive in AppStream.
Possible values include:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="literal">GPL-2.0</code></p></li><li class="listitem"><p><code class="literal">LGPL-3.0+ AND GPL-3.0+</code></p></li><li class="listitem"><p><code class="literal">MIT</code></p></li><li class="listitem"><p><code class="literal">CC-BY-SA-2.0</code></p></li><li class="listitem"><p><code class="literal">LicenseRef-proprietary=https://example.com/mylicense.html</code></p></li></ul></div><p>
A full list of recognized licenses and their identifiers can be found at the
<a class="ulink" href="https://spdx.org/licenses/" target="_blank">SPDX OpenSource License Registry<span class="ulink-url"> (https://spdx.org/licenses/)</span></a>.
</p><p>
Custom licenses which are not in the SPDX registry, like proprietary licenses, can be denoted using the <code class="code">LicenseRef</code> notation.
<code class="code">LicenseRef-proprietary</code> can be used to denote a proprietary license, with an optional URL to the license text following after
a <code class="code">=</code> sign.
</p><p>
The license given in the <code class="literal">project_license</code> tag should be the ‘main’ license of the project. For a software project, this
is typically the license for the code. It is not recommended to include the license for accompanying documentation (for example) in
<code class="literal">project_license</code>, as that could confuse users. In particular, the <code class="literal">CC-BY-SA-3.0</code> license which is commonly
used for documentation is not an (FSF or OSI) approved license for free software, so including it in <code class="literal">project_license</code> results in the
project as a whole being considered non-free.
</p><p>
Although the <code class="literal">project_license</code> tag is not mandatory, it is highly recommended to include it.
</p><p>
Examples:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><project_license>LGPL-3.0+ OR MPL-2.0</project_license>
<project_license>LGPL-3.0+ OR MPL-2.0</project_license>
<project_license>GPL-3.0-or-later</project_license>
<project_license>LicenseRef-proprietary=https://code.visualstudio.com/license</project_license></pre></div></dd><dt id="tag-developer"><span class="term"><developer/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-developer">#</a></dt><dd><p>
The <code class="code"><developer/></code> element is designed to represent the developers or project responsible for development of the project described in the metadata.
It must appear only once per component.
</p><p>
The element should have a <code class="literal">id</code> property, containing a unique ID to identify the component developer / development team. It is recommended to use
a reverse-DNS name, like <code class="code">org.gnome</code> or <code class="code">io.github.ximion</code>, or a Fediverse handle (like <code class="code">@user@example.org</code>) as ID to achieve a
higher chance of uniqueness.
</p><p>
A <code class="literal">developer</code> element must have one <code class="literal">name</code> tag as child, which contains a translatable name for the component developer or
development team. Values might be for example "The GNOME Foundation" or "The KDE Community".
Hyperlinks or emails must not be used in the name; if you want to link to the developer's homepage, use the <a class="xref" href="chap-Metadata.html#tag-url"><url/></a>-tag instead.
The <code class="literal">name</code> tag is translatable, it must only exist once in its untranslated form.
</p></dd><dt id="tag-developer_name"><span class="term"><developer_name/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-developer_name">#</a></dt><dd><p>
The <code class="code"><developer_name/></code> tag is designed to represent the developers or project responsible for development
of the project described in the metadata.
</p><div id="id-1.3.6.4.5.20.2.2" class="admonition important normal"><img class="symbol" alt="Important" title="Important" src="static/images/icon-important.png" /><h6>Important: Deprecation</h6><p>
This tag is deprecated and should not be used for new metadata. Please use <a class="xref" href="chap-Metadata.html#tag-developer"><developer/></a> instead.
</p></div></dd><dt id="tag-screenshots"><span class="term"><screenshots/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-screenshots">#</a></dt><dd><p>
Visual components (like fonts or graphical applications) may choose to add one or multiple screenshots to their metadata.
Screenshots can be either a video or a static image.
</p><p>
The <code class="code"><screenshots/></code> tag contains multiple <code class="code"><screenshot/></code> children, where at least one of them must have the property
<code class="code">type="default"</code> to indicate the primary and most representative screenshot of the software.
</p><p>
Optionally, a <code class="literal">screenshot</code> may also have an <code class="code">environment</code> property.
This string property denotes the GUI environment the screenshot was recorded in, in the form of <code class="code">{env}:{style}</code>,
where <code class="literal">{env}</code> is a desktop-environment name in lowercase and <code class="literal">{style}</code> is a specific style
that the desktop environment recognizes, e.g. <code class="code">light</code> and <code class="code">dark</code> for light and dark themes.
The <code class="literal">:{style}</code> part of the environment property may be omitted if the environment's default style is used.
See <a class="ulink" href="https://github.com/ximion/appstream/blob/main/data/desktop-style-ids.txt" target="_blank">desktop-style-ids.txt<span class="ulink-url"> (https://github.com/ximion/appstream/blob/main/data/desktop-style-ids.txt)</span></a> for a list
of currently recognized environment and style combinations.
</p><p>
Software centers displaying the component will usually prefer screenshots of the current environment and style, and display them first,
even before the screenshot marked as <code class="literal">default</code>.
</p><p>
In general, screenshots should be displayed in the order the are defined in in their <code class="literal">screenshots</code> block
for the respective component on a per-environment basis (all screenshots of the same environment/style will be displayed in the order
they are listed in the XML, but may be moved to the front of the list as a whole depending on the current environment).
</p><p>
Every <code class="code"><screenshot/></code> element must have at least one <code class="code"><image/></code> <span class="emphasis"><em>or</em></span> <code class="code"><video/></code> child,
but never an <code class="literal">image</code> <span class="emphasis"><em>and</em></span> <code class="literal">video</code> at the same time.
</p><p>
Screenshots containing videos must not be the default screenshot.
</p><p>
The value of the <code class="code"><image/></code> tag is a direct HTTP/HTTPS URL to a screenshot uploaded to a public location on the web.
Images should ideally be provided in the PNG format; using JPEG or WebP is also permitted for images in metainfo files.
</p><p>
The <code class="code"><image/></code> tag may have the following properties:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="code">type</code></p><p>
The type of the image: <code class="code">source</code> for the source image, and <code class="code">thumbnail</code> for a thumbnail image.
In case the type is <code class="code">thumbnail</code>, the <code class="code">width</code> and <code class="code">height</code> properties must be present.
</p></li><li class="listitem"><p><code class="code">width</code></p><p>
The width of the image in pixels.
</p></li><li class="listitem"><p><code class="code">height</code></p><p>
The height of the image in pixels.
</p></li><li class="listitem"><p><code class="code">scale</code></p><p>
A scaling factor for the image, if it is intended for a HiDPI display.
If a scaling factor > 1 is set, the <code class="literal">width</code>/<code class="literal">height</code> values
are not adjusted to scale. They always represent the exact image dimensions in pixels.
</p></li><li class="listitem"><p><code class="code">xml:lang</code></p><p>
The language this screenshot image is translated in. This property should only be present if there are multiple images with
different locales present.
</p></li></ul></div><p>
</p><p>
The value of the <code class="code"><video/></code> tag is a direct HTTP/HTTPS URL to a video uploaded to a public location on the web. The video must be in a
<a class="ulink" href="https://www.matroska.org/" target="_blank">Matroska (.mkv)<span class="ulink-url"> (https://www.matroska.org/)</span></a> or <a class="ulink" href="https://www.webmproject.org/" target="_blank">WebM<span class="ulink-url"> (https://www.webmproject.org/)</span></a> container and use either the
<a class="ulink" href="https://www.webmproject.org/vp9/" target="_blank">VP9<span class="ulink-url"> (https://www.webmproject.org/vp9/)</span></a> or <a class="ulink" href="https://aomedia.org/av1-features/" target="_blank">AV1<span class="ulink-url"> (https://aomedia.org/av1-features/)</span></a> codec.
The video should ideally work without any audio, but if audio is needed, the <a class="ulink" href="https://opus-codec.org/" target="_blank">Opus<span class="ulink-url"> (https://opus-codec.org/)</span></a> codec should be used.
Software centers may still play the video without any sound though. Additionally, AppStream metadata repositories (like in distributions such as Fedora and Debian)
may impose size limitations to video files delivered by their CDN, so it is recommended to keep the video file size below 10MiB.
There is also a chance that software centers do not display any video at all, so a video must never be in a default screenshot.
</p><p>
The <code class="code"><video/></code> tag may have the following properties:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="code">container</code></p><p>
The video container that is used, can be <code class="code">webm</code> or <code class="code">matroska</code>.
</p></li><li class="listitem"><p><code class="code">codec</code></p><p>
The video codec used, can be <code class="code">av1</code> or <code class="code">vp9</code>.
</p></li><li class="listitem"><p><code class="code">width</code></p><p>
The width of the video in pixels.
</p></li><li class="listitem"><p><code class="code">height</code></p><p>
The height of the video in pixels.
</p></li><li class="listitem"><p><code class="code">xml:lang</code></p><p>
The language this video is translated in. This property should only be present if there are multiple videos with
different locales present.
</p></li></ul></div><p>
</p><p>
Optionally, a <code class="code"><screenshot/></code> tag may have a translatable <code class="code"><caption/></code> child, defining a short (ideally not more than 100 characters)
description of what the user can see on the referenced screenshot.
</p><p>
A <code class="code">source</code> video should be concise, easy to understand and not have an overly large file size.
Try to use a reasonably large image for <code class="code">source</code> images, as they may be scaled down to <code class="code">thumbnail</code> images in metadata processing.
It is suggested to have videos and images in 16:9 aspect ratio, as long as that is sensible for the displayed application.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><screenshots>
<screenshot type="default">
<caption>The FooBar main window.</caption>
<image type="source" width="1600" height="900">https://example.com/foobar/screenshot-1.png</image>
</screenshot>
<screenshot>
<caption>Foobar showing the frobnicate functionality.</caption>
<image type="source" width="1600" height="900">https://example.com/foobar/screenshot-2.png</image>
</screenshot>
<screenshot>
<video codec="av1" width="1600" height="900">https://example.com/foobar/screencast.mkv</video>
</screenshot>
<screenshot environment="plasma-mobile">
<caption>The FooBar main window, but on Plasma Mobile</caption>
<image type="source" width="1600" height="900">https://example.com/foobar/screenshot-1_plasma-mobile.png</image>
</screenshot>
<screenshot environment="gnome:dark">
<caption>The FooBar main window, on GNOME in dark mode</caption>
<image type="source" width="1600" height="900">https://example.com/foobar/screenshot-1_gnome_dark.png</image>
</screenshot>
</screenshots></pre></div></dd><dt id="tag-translation"><span class="term"><translation/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-translation">#</a></dt><dd><p>
The <code class="code"><translation/></code> tag is an optional tag which can be added to specify the translation domain used for this software component.
It may be used by the AppStream distro metadata generator to determine the translation status of the respective software (e.g. which languages the
software is translated into and how complete the translations are).
</p><p>
The tag must have a <code class="literal">type</code> property, assuming the value of the translation system which is used. Right now, allowed translation systems and
values for <code class="literal">type</code> are:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="literal">gettext</code></p></li><li class="listitem"><p><code class="literal">qt</code></p></li></ul></div><p>
In case a software components gets its translation from multiple translation domains, the <code class="code"><translation/></code> tag may be defined more
than once.
</p><p>
The source strings in the component are assumed to be in the <code class="code">en_US</code> locale. If that is not the case, specify the source locale
in POSIX format using the <code class="code">source_locale</code> attribute on the <code class="code"><translation/></code> tag. The metadata generator will
use the source locale to synthesize a <code class="code"><lang/></code> tag for the source locale, with 100% translation.
</p><p>
For Gettext translations, localization data will be looked for in <code class="filename">${prefix}/share/locale/${locale}/LC_MESSAGES/${id}.mo</code>, where
<code class="code">${id}</code> is replaced with the translation domain specified in the <code class="code"><translation/></code> tag.
For Qt translations, if the ID string contains slashes, we will look for translations following either the <code class="filename">${prefix}/share/${id}_${locale}.qm</code>
or the <code class="filename">${prefix}/share/${id}/${locale}.qm</code> pattern. If no slashes are contained, we will look for translation data in
<code class="filename">${prefix}/share/locale/${locale}/LC_MESSAGES/${id}.qm</code>.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><translation type="gettext">foobar</translation>
<translation type="gettext" source_locale="de_DE">foobar</translation>
<translation type="qt">FooBar/translations/foobar</translation></pre></div></dd><dt id="tag-suggests"><span class="term"><suggests/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-suggests">#</a></dt><dd><p>
The <code class="code"><suggests/></code> tag is an optional tag which can be added to specify the component-ids of other software this components suggests.
Software centers might present the suggested software on the installation page of the described component.
</p><p>
The tag may have a <code class="literal">type</code> property, with the value <code class="code">upstream</code>, indicating that this suggestion originates from the upstream project.
If no <code class="literal">type</code> property is given, <code class="code">upstream</code> is implicitly assumed as value. Metainfo files must not define other <code class="literal">suggests</code>
types, those are reserved for AppStream catalog XML (see <a class="xref" href="chap-CatalogData.html#tag-ct-suggests"><suggests/></a> in catalog XML).
</p><p>
The <code class="literal">suggests</code> tag must have one or more <code class="code"><id/></code> tags as children, specifying the IDs of the suggested other software components.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><suggests>
<id>org.kde.gwenview.desktop</id>
<id>org.inkscape.inkscape</id>
</suggests></pre></div></dd><dt id="tag-content_rating"><span class="term"><content_rating/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-content_rating">#</a></dt><dd><p>
The <code class="code"><content_rating/></code> tag is an optional tag which can be added to specify age ratings for the respective software components.
These maybe be used for parental control or to display their information in software centers.
</p><p>
The tag must have a <code class="literal">type</code> property, indicating the type of the rating system that is used. At the moment, the
<a class="ulink" href="https://hughsie.github.io/oars/" target="_blank">Open Age Ratings Service<span class="ulink-url"> (https://hughsie.github.io/oars/)</span></a> (value <code class="code">oars-1.0</code>) is supported natively, but more services might be
added in future.
</p><p>
The <code class="code"><content_rating/></code> tag may have <code class="code"><content_attribute/></code> children which each must have an <code class="literal">id</code> property indicating
the specific section that is rated. Their value indicates the intensity of the rated section and can be one of:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="literal">none</code> - no rating given</p></li><li class="listitem"><p><code class="literal">mild</code></p></li><li class="listitem"><p><code class="literal">moderate</code></p></li><li class="listitem"><p><code class="literal">intense</code></p></li></ul></div><p>
In case the <code class="code"><content_rating/></code> tag is empty (no <code class="code"><content_attribute/></code> is present), it is assumed that the component was checked
for age ratings and no age restrictions apply.
</p><p>
The website of the Open Age Ratings Service provides <a class="ulink" href="https://hughsie.github.io/oars/generate.html" target="_blank">an online form<span class="ulink-url"> (https://hughsie.github.io/oars/generate.html)</span></a> which will automatically generate AppStream
compatible metadata based on a set of questions answered about the content.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><content_rating type="oars-1.0">
<content_attribute id="drugs-alcohol">moderate</content_attribute>
<content_attribute id="language-humor">mild</content_attribute>
</content_rating></pre></div></dd><dt id="tag-agreement"><span class="term"><agreement/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-agreement">#</a></dt><dd><p>
The <code class="code"><agreement/></code> tag is an optional tag which can be added to specify agreements the user has to accept or acknowledge before using the software.
This tag can appear multiple times, if multiple agreements are required for a software component.
</p><p>
The tag should have a <code class="literal">type</code> property, indicating the type of the agreement. If the <code class="literal">type</code> property is missing,
an agreement of type <code class="code">generic</code> is assumed.
Currently recognized agreement types are:
</p><div class="itemizedlist"><ul class="itemizedlist"><li class="listitem"><p><code class="literal">eula</code> - an end-user license agreement the user has to accept before installing the software.</p></li><li class="listitem"><p><code class="literal">privacy</code> - a privacy statement for the software, usually a <a class="ulink" href="https://www.eugdpr.org/" target="_blank">GDPR<span class="ulink-url"> (https://www.eugdpr.org/)</span></a> compliant statement</p></li></ul></div><p>
The <code class="code"><agreement/></code> tag must have a <code class="literal">version_id</code> property, containing a version identifier for the license. It may be used by client applications to
determine whether an agreement needs to be shown again after it has been accepted already by the user.
</p><p>
Every <code class="code"><agreement/></code> must have <code class="code"><agreement_section/></code> children which each have an <code class="literal">id</code> property indicating
the specific section that they describe (e.g. <code class="code">introduction</code>). These values may be used to automatically jump to a specific section.
Each <code class="code"><agreement_section/></code> has a translatable <code class="literal">name</code> child denoting the name or title of the respective section, and a <code class="literal">description</code>
child that is translated according to the same translation rules that apply to the <a class="xref" href="chap-Metadata.html#tag-description"><description/></a> tag.
The <code class="literal">description</code> contains the content of the respective agreement section.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><agreement type="privacy" version_id="1.0">
<agreement_section id="introduction">
<name>Introduction</name>
<description>
<p>
We hold personal data about vendors, administrators, clients and other
individuals for a variety of purposes.
[...]
</p>
</description>
</agreement_section>
<agreement_section id="scope">
<name>Scope</name>
<description>
<p>
This policy applies to all users who have access to any of the personally
identifiable data.
</p>
</description>
</agreement_section>
[...]
</agreement></pre></div></dd><dt id="tag-update_contact"><span class="term"><update_contact/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-update_contact">#</a></dt><dd><p>
The <code class="code"><update_contact/></code> tag is an optional tag which can be added to provide an email address distributors can use to contact the project
about invalid or incomplete metadata or – in case the specification has changed – about old metadata. It can also be used to ask general questions in case of
an update of the component described in the metadata file.
</p><p>
The <code class="code"><update_contact/></code> tag must <span class="emphasis"><em>only be used by distributors</em></span>. It is not included in the distribution-provided
AppStream XML file, and therefore not exposed to the end user via any kind of UI.
</p><p>
Upstream authors might decide to add an email address in cleartext, but spam protection using <code class="code">_AT_</code> is also valid.
The value of this tag is generally treated a case-insensitive way.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><update_contact>developer_AT_example.com</update_contact></pre></div></dd><dt id="tag-name_variant_suffix"><span class="term"><name_variant_suffix/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-name_variant_suffix">#</a></dt><dd><p>
Variant suffix that software centers may append to the component name on lists in case multiple components have the same name.
This is currently primarily used for firmware, where components only need to be distinguished if multiple variants are displayed.
A name variant suffix could e.g. be 'Prerelease' or 'China'.
</p></dd><dt id="tag-branding"><span class="term"><branding/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-branding">#</a></dt><dd><p>
The <code class="code"><branding/></code> tag is an optional tag which defines properties affecting the branding and presentation of the
component. It usually affects how the component is displayed in software centers and on websites.
</p><p>
The tag may currently only contain <code class="literal">color</code> tags as children, defining accent colors for the component. Each
<code class="literal">color</code> element contains an HTML hexadecimal color string as its value. This string must start with a <code class="literal">#</code> character.
An accent color may for example be used as the background behind the logo/icon of an application.
</p><p>
A <code class="literal">color</code> tag must have a <code class="literal">type</code> attribute which denotes the color type. The color type
may currently only be <code class="literal">primary</code>.
A <code class="literal">color</code> tag may have an optional <code class="literal">scheme_preference</code> attribute which denotes a preference
for a particular color scheme where this color should be used over other colors. Values for this attribute may either be
<code class="code">light</code> or <code class="code">dark</code> for a light or dark theme preference.
Each color type/scheme combination may only appear once.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><branding>
<color type="primary" scheme_preference="light">#ff00ff</color>
<color type="primary" scheme_preference="dark">#993d3d</color>
</branding></pre></div></dd><dt id="tag-tags"><span class="term"><tags/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-tags">#</a></dt><dd><p>
The <code class="code"><tags/></code> tag is an optional tag which can be used to give the component one or multiple arbitrary labels.
For example, it can be used for apps to tag themselves as "featured" in specific software centers, or to group software together
by some well-defined criteria.
</p><p>
The interpretation of tags is completely defined by the client application that is reading AppStream metadata. Tags defined
in metainfo files may be filtered by catalog metadata generators, and may even be completely ignored by clients. Components
must not rely on the presence of specific tags to behave correctly.
</p><p>
The <code class="literal">tags</code> tag must have <code class="literal">tag</code> children which must have a value comprised only of lower-case
ASCII characters, dots, hyphens and numbers. Spaces are not allowed. The tag must also have a <code class="literal">namespace</code>
attribute to designate a namespace where the particular tag is valid. The namespace is an arbitrary string which has the
same character limitations as the tag value. It may for example be the name of the client too that consumes the data, or
the name of the organization the tag belongs to.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><tags>
<tag namespace="lvfs">vendor-2021q1</tag>
<tag namespace="plasma">featured</tag>
</tags></pre></div></dd><dt id="tag-references"><span class="term"><references/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-references">#</a></dt><dd><p>
The <code class="code"><references/></code> element is an optional tag to indicate references to this component in other registries.
This is primarily used for scientific registries, citation information and DOI
(<a class="ulink" href="https://en.wikipedia.org/wiki/Digital_object_identifier" target="_blank">Digital Object Identifier<span class="ulink-url"> (https://en.wikipedia.org/wiki/Digital_object_identifier)</span></a>) associations.
</p><p>
This information is primarily consumed by specialized tools, but may also be shown by software centers or read by the
applications themselves to compose references.
</p><p>
The <code class="literal">references</code> element may have <code class="literal">doi</code> children containing DOI identifier strings as value,
<code class="literal">citation_cff</code> children containing a link to a citation file in CFF (<a class="ulink" href="https://citation-file-format.github.io/" target="_blank">Citation File Format<span class="ulink-url"> (https://citation-file-format.github.io/)</span></a>)
format or <code class="literal">registry</code> children.
A <code class="literal">registry</code> child must have a <code class="literal">name</code> property containing the name of a registry referencing this component,
while the value of it must be the identification string in the respective registry.
</p><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><references>
<doi>10.1000/182</doi>
<registry name="SciCrunch">SCR_000000</registry>
<citation_cff>https://example.org/CITATION.cff</citation_cff>
</references></pre></div></dd><dt id="tag-custom"><span class="term"><custom/></span> <a title="Permalink" class="permalink" href="chap-Metadata.html#tag-custom">#</a></dt><dd><p>
The <code class="code"><custom/></code> tag is an optional tag which can be used as a key-value store for custom values that are not covered by the AppStream specification.
The tag is usually stripped out or filtered by catalog metadata generators, such as <code class="literal">appstream-generator</code>.
When present, the data contained in a <code class="literal">custom</code> can be read by all tools making use of AppStream metadata, making it an ideal extension point when using
an existing AppStream library is desired and some custom additions to the metadata are still required.
The <code class="literal">custom</code> tag is also often used for prototyping new features in AppStream.
</p><p>
The tag must have <code class="literal">value</code> children which must have a <code class="literal">key</code> property. The value of the <code class="literal">value</code>
tag denotes a user-defined value, while the key string set for the <code class="literal">key</code> property denotes a user-specified key string.
The key must be unique; multiple keys with the same name are not allowed.
</p><p>
To avoid name conflicts, it is recommended to prefix keys with a vendor prefix, like <code class="code">GNOME::</code> or <code class="code">KDE::</code>.
</p><div id="id-1.3.6.4.5.31.2.4" class="admonition note normal"><img class="symbol" alt="Note" title="Note" src="static/images/icon-note.png" /><h6>Note</h6><p>
Before using a <code class="literal">custom</code> tag, please consider if there is a better way to achieve your goal than adding the data to the AppStream metainfo file,
or whether AppStream maybe already contains a way to achieve what you want.
Additionally, if you think that the purpose you use the <code class="literal">custom</code> tag for is generally useful, please file a feature request against AppStream,
so we can discuss adding the new feature to the specification and make it more usable for a bigger audience.
</p></div><p>
Example:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting"><custom>
<value key="MyCorp::app_color">#FF0000</value>
<value key="MyCorp::special_id">284fd262-6870-42a6-89a4-b189d3109e3e</value>
</custom></pre></div></dd></dl></div><p>
An example for a very basic component file could look like this:
</p><div class="verbatim-wrap highlight XML"><pre class="programlisting">
<?xml version="1.0" encoding="UTF-8"?>
<component>
<id>com.example.foobar</id>
<name>Foo Bar</name>
<summary>A foo-ish bar</summary>
<url type="homepage">https://www.example.org</url>
<metadata_license>CC0-1.0</metadata_license>
<provides>
<library>libfoobar.so.2</library>
<font>foo.ttf</font>
<binary>foobar</binary>
</provides>
<releases>
<release version="1.2" date="2015-02-16" />
</releases>
<developer id="org.example">
<name>FooBar Team</name>
</developer>
</component></pre></div><p>
For a component of type <code class="literal">generic</code>, the minimal amount of required tags is: <a class="xref" href="chap-Metadata.html#tag-id-generic"><id/></a>, <a class="xref" href="chap-Metadata.html#tag-name"><name/></a>,
<a class="xref" href="chap-Metadata.html#tag-summary"><summary/></a>, <a class="xref" href="chap-Metadata.html#tag-metadata_license"><metadata_license/></a>.
</p></div></div></div></div><div class="page-bottom"><div id="_bottom-navigation"><a class="nav-link" href="sect-Metadata-Releases.html"><span class="next-icon">→</span><span class="nav-label">Release Information</span></a><a class="nav-link" href="chap-AppStream-About.html"><span class="prev-icon">←</span><span class="nav-label"><span class="number">Chapter 1 </span>About AppStream</span></a></div></div></div><div id="_inward"></div></div><div id="_footer-wrap"><div id="_footer"><p>©
2025
Freedesktop.org, the AppStream Project</p></div></div></body></html>
|