forked from ximion/appstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1004 lines (875 loc) · 44.4 KB
/
NEWS
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
Version 0.10.0
~~~~~~~~~~~~~~
Released: 2016-08-30
Notes:
* This release breaks API/ABI in order to support multiple metadata sets describing the same
component (needed for bundling support), moving away from the database as central data store
and general cleanup.
* Porting is relatively straightforward, if you were using AsDatabase, you should switch to AsPool
now (AsDatabase has been a wrapper around AsPool for a while anyway).
* Many methods became private API with this release, file a bug if you miss anything.
* The 'categories.xml' file is gone - please account for that if you were reading it directly,
and consider using AsCategory instead, which offers the same functionality.
Features:
* Remove the AsDatabase class (Matthias Klumpp)
* Use cmakedefine for compile-time features (Matthias Klumpp)
* Rename AsDataPool -> AsPool (Matthias Klumpp)
* Add placeholder enum for web applications (Matthias Klumpp)
* qt: Implement Appstream::Release for the Qt interface (Aleix Pol)
* Recognize the "Pantheon" desktop for Elementary (Matthias Klumpp)
* Get rid of the menu parser and make AsCategory more useful instead (Matthias Klumpp)
* Allow AsComponent to automatically check for list-value duplicates (Matthias Klumpp)
* Give bundles their own class (Matthias Klumpp)
* Stop shipping the categories.xml file (Matthias Klumpp)
* Allow multiple metadata sets in the pool to describe a component (Matthias Klumpp)
* Name AppStream metadata styles consistently (Matthias Klumpp)
* Allow the 'C' description fallback to be turned off (Iain Lane)
* Make AsScreenshot return localized images by default (Matthias Klumpp)
* Allow to compare AsRelease versions easily (Matthias Klumpp)
* Make get_icon_repository_paths private API (Matthias Klumpp)
* ascli: Allow dumping metadata as YAML (Matthias Klumpp)
* Use GVariant instead of ProtoBuf based cache (Matthias Klumpp)
* Enable stemming by default (Matthias Klumpp)
* Make components directly reference their addons, avoiding to query twice (Matthias Klumpp)
* Refactor data pool metadata loading (Matthias Klumpp)
* Allow setting the AppStream format version when (de)serializing data (Matthias Klumpp)
* Always write modern metadata, unless a lower format version is requested explicitly (Matthias Klumpp)
* Also find components in searches which have the search keyword in an addon (Matthias Klumpp)
* ascli: Add function to convert XML to YAML and vice versa (Matthias Klumpp)
* Consistent naming for metadata format and style (Matthias Klumpp)
Specification:
* spec: Add hint on how the keywords tag should be localized (Matthias Klumpp)
Bugfixes:
* Resolve unit test failures on arm and mips (Matthias Klumpp)
* gir: Correctly annotate ownership transference of GPtrArrays (Matthias Klumpp)
* l10n: Drop languages without translations (Matthias Klumpp)
* Don't hide symbols in public headers (Matthias Klumpp)
* Properly validate desktop-environment strings (Matthias Klumpp)
* validator: Fix name/summary check in validate-tree (Matthias Klumpp)
* xml: Properly write localized keywords (Matthias Klumpp)
* Avoid watching superfluous directories for metadata (Matthias Klumpp)
* Update architecture diagrams and optimize PNGs (Matthias Klumpp)
* Get rid of Xapian-isms (Matthias Klumpp)
Translation:
* Chinese (Taiwan)
- Chang-Chia Tseng
* Chinese (China)
- Dingzhong Chen
- wsxy162
* French:
- Christophe CHAUVET
- Claude Paroz
* German:
- Mario Blättermann
* Czech:
- Michal Čihař
* Italian:
- Milo Casagrande
* Russian:
- Nataliia
* Polish
- Piotr Drąg
* Catalan:
- Robert Antoni Buj Gelonch
* Ukrainian:
- Yuri Chornoivan
* Hungarian:
- kelemeng
Version 0.9.8
~~~~~~~~~~~~~~
Released: 2016-08-10
Features:
* qt: Different approach for storing the icon size and url relation (Aleix Pol)
* Strictly validate AppStream IDs (Matthias Klumpp)
* Add AsSuggested class (Lucas Moura)
* tests: Test merges for suggestions (Lucas Moura)
* Add functions handling SPDX license ids and expressions (Matthias Klumpp)
* validator: Include a line-hint in the issue report (Matthias Klumpp)
* Implement console-application component type (Matthias Klumpp)
* validator: Validate files following the new cid scheme properly (Matthias Klumpp)
* validator: Validate metadata_license for permissiveness (Matthias Klumpp)
* Compress cache data (Matthias Klumpp)
* Implement "translate" URL type (Matthias Klumpp)
* xml: Implement the suggests tag (Matthias Klumpp)
* yaml: Implement reading and writing of Suggests field (Matthias Klumpp)
* Consider merge components valid if they have at least an ID (Matthias Klumpp)
* yaml: Read/write merge components (Matthias Klumpp)
Specification:
* spec: Add console-application component type (Matthias Klumpp)
* spec: Streamline the requirements for component-ids (Matthias Klumpp)
* spec: Define a "translate" URL type (Matthias Klumpp)
* spec: Specify the suggests tag (Matthias Klumpp)
* spec: Describe the merge property (Matthias Klumpp)
* spec: Proofreading fixes (Philip Withnall)
Bugfixes:
* Make searching for multiple terms work properly again (Matthias Klumpp)
* Don't fail on invalid search terms (Matthias Klumpp)
* Don't re-instantiate stemmer on each use (Matthias Klumpp)
* ascli: Line-wrap unicode texts properly on the console (Matthias Klumpp)
* Add missing docs to the API reference (Matthias Klumpp)
* tests: Add test description to each test (Matthias Klumpp)
* Sort search results by default (Matthias Klumpp)
* Fix a few issues with merging (Matthias Klumpp)
Version 0.9.7
~~~~~~~~~~~~~~
Released: 2016-07-20
Notes:
* This release contains a lot of very invasive changes and deprecates some API, most
notably AsDatabase. Please test this release carefully.
There will be an API/ABI break in a future release, so if possible please adjust your
code to not use deprecated interfaces.
Features:
* Don't fall back to Debian screenshots server if none is specified for the distro (Matthias Klumpp)
* Split out distro-specific helpers (Matthias Klumpp)
* Implement Xapian-less search (Matthias Klumpp)
* Use a pure PB cache instead of Xapian (Matthias Klumpp)
* qt: Don't rely on Xapian for searches (Matthias Klumpp)
* Deprecate AsDatabase (Matthias Klumpp)
* Hide internal symbols from the symbols table (Matthias Klumpp)
* Allow injecting components into the pool and unittest the cache (Matthias Klumpp)
* Add by-category filter to AsDataPool (Matthias Klumpp)
* Validate Freedesktop category names (Matthias Klumpp)
* Allow building AppStream with stemming support (Matthias Klumpp)
* Cache search tokens (Matthias Klumpp)
Specification:
* docs/quickstart: Clarify the role of releases/provides (Matthias Klumpp)
* docs/quickstart: Screenshot images don't need to define width/height (Matthias Klumpp)
Bugfixes:
* qt: Properly expose enums for introspection (Aleix Pol)
* qt: Make it possible to easily output data types using QDebug (Aleix Pol)
* xml: Fix formatting of <screenshot/> tag (Matthias Klumpp)
* xml: Work around non-threadsafe behavior of libxml2 (Matthias Klumpp)
* xml: Properly write provides tag (Matthias Klumpp)
* Fix code documentation for as_component_get_id (Lucas Moura)
* Fix some xmldata methods documentation (Lucas Moura)
* cli: Create metainfo directory if it is missing and respect DESTDIR (Matthias Klumpp)
Version 0.9.6
~~~~~~~~~~~~~~
Released: 2016-05-12
Features:
* Improve metadata file decompression code (Matthias Klumpp)
* validator: Simplify loading of data too (Matthias Klumpp)
* Make it easy to compile with Address Sanitizer enabled (Matthias Klumpp)
* Allow compiling with UBSan as well (Matthias Klumpp)
* Add back support for Travis CI (Matthias Klumpp)
* yaml: Write Releases field (Matthias Klumpp)
Bugfixes:
* qt: Properly check for component validity (Matthias Klumpp)
* Ensure decompressed metadata is null-terminated (Neil Mayhew)
* validator: Long descriptions are not needed for generic components (Matthias Klumpp)
* Make VAPI generation depend on GIR typelibs explicitly (Matthias Klumpp)
* Be more verbose when failing to move the cache directory (Matthias Klumpp)
* Handle format errors when parsing YAML metadata (Neil Mayhew)
Version 0.9.5
~~~~~~~~~~~~~~
Released: 2016-05-02
Features:
* Update README (Matthias Klumpp)
* Provide a bit more hints for translators (Matthias Klumpp)
* Improve error messages when reading broken XML (Matthias Klumpp)
* Load all XML in AsXMLData (Matthias Klumpp)
* Implement reading localized images from metadata (Matthias Klumpp)
* Write localized images in XML/YAML serialize routines (Matthias Klumpp)
* Unify codepaths for checking compatible locales (Matthias Klumpp)
* yaml: Implement read/write support for the Languages field (Matthias Klumpp)
* xml: Serialize and read languages tag properly (Matthias Klumpp)
* validator: Validate files in legacy paths too (Matthias Klumpp)
Specification:
* spec: Allow localized screenshot images (Matthias Klumpp)
Bugfixes:
* Refactor icon-finding code and fix rare double-free corruption (Matthias Klumpp)
* Properly validate randomly ordered XML tags for duplicates (Matthias Klumpp)
* validator: The translation tag is only valid in metainfo files (Matthias Klumpp)
* Be slightly less pedantic about size info when reading screenshot images (Matthias Klumpp)
* xml: Properly write <release/> description tag (Matthias Klumpp)
Version 0.9.4
~~~~~~~~~~~~~~
Released: 2016-04-18
Features:
* Handle legacy screenshot tags (Matthias Klumpp)
* Print prettier YAML documents (Matthias Klumpp)
* yaml: Allow loading of distro metadata slices without header (Matthias Klumpp)
* Do not check for installation candidate on minimal validation (Matthias Klumpp)
* Don't check if component has an installation candidate before including it (Matthias Klumpp)
* Quick-check components only when the pool is fully loaded (Matthias Klumpp)
* Support the stub data of GNOME Software (Matthias Klumpp)
* Support reading per-component priorities (Matthias Klumpp)
* Implement the architecture property (Matthias Klumpp)
* Use architecture data to resolve conflicting IDs (Matthias Klumpp)
* Add icon size information to generated XML (Matthias Klumpp)
* xml: Load size hints for icons (Matthias Klumpp)
* l10n: Update
Specification:
* docs: Explicitly define more minimally required tags per component type (Matthias Klumpp)
* Make /usr/share/metainfo the canonical path for upstream metadata (Matthias Klumpp)
* spec: Make architecture a property of <components/>, and no tag (Matthias Klumpp)
* spec: Update the cached icon DEP-11 specification to allow size information (Matthias Klumpp)
Bugfixes:
* Fix a few minor issues spotted by the YAML validator (Matthias Klumpp)
* Correctly build distro XML descriptions from upstream XML (Matthias Klumpp)
* Be very strict about which elements are allowed in a description tag (Matthias Klumpp)
* yaml: Prevent bool keys (Matthias Klumpp)
* ascli: Properly print long descriptions and wrap lines (Matthias Klumpp)
* Export less C++ symbols (Matthias Klumpp)
* Show a better error message when failing to parse XML (Matthias Klumpp)
* Allow adding 0x0 icons (Matthias Klumpp)
* yaml: Implement the updated "cached" icon format in a backwards-compatible way (Matthias Klumpp)
* apt: Drop flat repository entries (Matthias Klumpp)
* Probe less sizes if we already have size information (Matthias Klumpp)
* Don't make stubs delete package information from valid components (Matthias Klumpp)
* apt: Handle quoted origin entries properly (Matthias Klumpp)
Version 0.9.3
~~~~~~~~~~~~~~
Released: 2016-03-24
Features:
* Allow to update an existing component with fresh metadata
* Implement YAML serialization
* writer: Allow to omit writing a header/root node
* cli: Add convenience method to install metainfo files
* cli: Add a new "status" command for various diagnostic information
* yaml: Allow unicode
* Print prettier XML by default
* l10n: Update
Bugfixes:
* Reset umask before building the data cache
* apt: Work around APT using server mtime for its downloaded files
Version 0.9.2
~~~~~~~~~~~~~~
Released: 2016-02-28
Features:
* qt: Improve usage of Qt containers (Aleix Pol)
* qt: Implement Component::extends on the Qt front-end (Aleix Pol)
* qt: Also call reserve for bundles on the Qt frontend (Aleix Pol)
* validator: strstrip values when reading XML/YAML and validate linebreaks in summaries (Matthias Klumpp)
* validator: Check if a description is present (Matthias Klumpp)
* Always build with YAML support (Matthias Klumpp)
* Move XML parser into its own class (Matthias Klumpp)
* Make data-pool use the new YAML-aware metadata parser (Matthias Klumpp)
* Simplify data-pool building routine (Matthias Klumpp)
* Preprocess extension information for frontends (Matthias Klumpp)
* qt: Use the new extensions property (Matthias Klumpp)
* Implement translations tag (Matthias Klumpp)
* cli: Document the "install" command (Matthias Klumpp)
* l10n: Update
Specification:
* spec: Document the translation tag (Matthias Klumpp)
* doc: Don't use <tip/> tags in documentation (Matthias Klumpp)
* spec: Mention the essential tags for a type:desktop component (Matthias Klumpp)
Bugfixes:
* as-cache-builder: Cope with no YAML documents (Iain Lane)
* 50appstream: Don't run if we can't write to the system paths (Iain Lane)
* Check for writability instead of root permissions when updating the cache (Matthias Klumpp)
* qt: Don't compute screenshot images and then forget about them (Aleix Pol)
* Add the missing extends property to the Xapian cache (Matthias Klumpp)
* validator: Don't fail validation for description-less addons. (Matthias Klumpp)
* Make reading empty cache values more robust (Matthias Klumpp)
* Check if GIR scanner & compiler are really installed (Matthias Klumpp)
Version 0.9.1
~~~~~~~~~~~~~~
Released: 2016-02-04
Features:
* Improve Qt5 usage (Aleix Pol)
* Also use Q_GLOBAL_STATIC for Provides::kindToString (Aleix Pol)
* validator: Validate the font component type (Matthias Klumpp)
* Implement date property on release tags (Matthias Klumpp)
* Ship ITS files from KDE upstream (Matthias Klumpp)
Specification:
* doc: Clarify why the metadata_license tag is needed (Matthias Klumpp)
* spec: Specify font component type (Matthias Klumpp)
* doc: Update year and version (Matthias Klumpp)
* spec: Specify a date attribute on release tags, containing an ISO8601 time (Matthias Klumpp)
Bugfixes:
* Lower cmake requirement to 3.1.0 (Harald Sitter)
* doc: DEP-11 URLs are no integers (Matthias Klumpp)
* apt: Hide appstreamcli stdout output (Matthias Klumpp)
* Return specific error when cache was not found (Matthias Klumpp)
* apt: Ensure DEP-11 files stay gzip compressed (Matthias Klumpp)
* apt: Correctly test for appstreamcli (Matthias Klumpp)
* Fix a few memory leaks (Matthias Klumpp)
* Work around limitations of GLibs time_val_from_iso8601 function (Matthias Klumpp)
Version 0.9.0
~~~~~~~~~~~~~~
Released: 2015-12-12
Notes:
* This release breaks API/ABI, ensure you adjust your depending applications!
All code marked as legacy has been removed, as well as some older, now unnecessary
classes. Instead, new classes, like AsProvided, have now been introduced.
Take a look at the API documentation for furher information.
* For Debian-based systems, we now provide full integration with the APT package-manager.
Support for this feature needs to be explicitly enabled at build-time.
Features:
* Use modern GLib macros to declare types (Matthias Klumpp)
* Refactor icon handling (Matthias Klumpp)
* Refactor handling of provided items (Matthias Klumpp)
* Modernize AsCacheBuilder class (Matthias Klumpp)
* Modernize AsCategory class (Matthias Klumpp)
* Bump API level (Matthias Klumpp)
* Make some AsComponent methods private (Matthias Klumpp)
* Drop obsolete utility functions (Matthias Klumpp)
* Modernize AsDatabase class (Matthias Klumpp)
* Drop AsSearchQuery (Matthias Klumpp)
* Make AsDistroDetails a modern class (Matthias Klumpp)
* Modernize AsMenuParser and AsImage (Matthias Klumpp)
* Update validator classes (Matthias Klumpp)
* Improve error handling for database queries. (Matthias Klumpp)
* Initial code to improve APT integration (Matthias Klumpp)
* Refine the AsDataPool class (Matthias Klumpp)
* cli: Add new install command to directly install components (Matthias Klumpp)
* cli: Make removal of packages by component-id possible (Matthias Klumpp)
* Make cache builder smarter in detecting metadata changes (Matthias Klumpp)
* l10n: Update translations
Bugfixes:
* categories: Add missing icon names (Aleix Pol)
* Tweak the component-id-collision test slightly (Matthias Klumpp)
* AsComponent: Added missing documentation (Corentin Noël)
* gir: Fix warnings (Matthias Klumpp)
* Always build a new cache if none existed yet in the target location (Matthias Klumpp)
* Don't do symlink maintenance if target doesn't exist yet (Matthias Klumpp)
Version 0.8.6
~~~~~~~~~~~~~~
Released: 2015-11-06
Features:
* Define autoptr macros for AppStream types (Matthias Klumpp)
* Implement the release/size tag (Matthias Klumpp)
* validator: Check for missing name / summary in metainfo and .desktop files
(Matthias Klumpp)
Specification:
* spec: Specify the appstream:// URL handler (Matthias Klumpp)
* spec: Add new size tag to the release tag (Matthias Klumpp)
Bugfixes:
* Don't fail displaying package names in component_to_string (Matthias Klumpp)
* Fixed VAPI compilation. (Corentin Noël)
* qt: Correctly load icon urls again (Matthias Klumpp)
* Add missing GIR annotations. (Corentin Noël)
* Reinitialize the DEP-11 parser after each file (Corentin Noël)
Version 0.8.5
~~~~~~~~~~~~~~
Released: 2015-10-14
Features:
* Update README
* Use ProtoBuf to serialize data for the Xapian cache
* Annotate the proto definition with descriptions about the messages
* Restructure database schema definition
* qt: Read screenshots pb data
* qt: Fully support the new database layout
* Show if component type is unknown in debug output
* Implement the release-urgency property
* qt: Don't build standalone - this now only leads to potential errors
* qt: Add some very basic unit tests
* Enable unit-tests unconditionally
Specification:
* spec: Document the release-urgency property
Bugfixes:
* Don't stop processing completely, if XML file with errors is found
* cli: Fix display of detailed output
* Correctly check the database schema version
* Move default cache to avoid errors when the old db is still around
* qt: Ensure database schema version matches
* Don't crash if database schema is unknown
Version 0.8.4
~~~~~~~~~~~~~~
Released: 2015-09-08
Features:
* ascli: Validate whole file trees
* qt: Align version number with the AppStream version numbers
* validator: Always include the filename in validator output
* qt: Remove support for Qt4
* ascli: Allow some commands to bypass the cache
* Change validator output to make it a bit easier to read
* validator: Validate metainfo filenames as well
* l10n: Update translations
Bugfixes:
* Fix crash when parsing metainfo file without all locales enabled
* ascli: Make manpage reflect reality
Version 0.8.3
~~~~~~~~~~~~~~
Released: 2015-08-28
Notes:
* All the different appstream-* tools are now combined in one
appstream-cli tool.
Features:
* Be less strict about valid screenshot tags
* Implement changes on provides/firmware
* Rename the 'appstream*' tools to 'appstream-cli'
* Implement MediaBaseUrl property
* dep11: Implement parsing of Releases
Specification:
* docs: Document the new naming scheme for type:firmware component IDs
* Start documenting DEP-11 in AppStream as well
* docs: Mention the DEP-11 validator tool
* docs: Completely describe current DEP-11 spec
Bugfixes:
* The DBus session bus is actually an user bus
* Fix component priorization for XML and YAML
Version 0.8.2
~~~~~~~~~~~~~~
Released: 2015-06-26
Notes:
* Ubuntu AppInstall support has been removed from this release, as its data
never matched the DEP11/ASXML data and pretty much every distribution can offer
one of those better data sources now.
* This release contains some heavy refactoring, most importantly it removes the
"DataProvider" concept and hardcodes the ASXML/DEP11 metadata parsers.
This improves maintainability and speed of the AppStream libraries.
Please report any bugs you may find!
Features:
* Refactor DataProvider code (Matthias Klumpp)
* Remove DEP-11 validator, it belongs to the dep11 package (Matthias Klumpp)
* Add icon information to generated XML (Matthias Klumpp)
* Allow more than one checksum kind per AsRelease (Matthias Klumpp)
* Propagate bundle information in case multiple components with the same id are found
(Matthias Klumpp)
Bugfixes:
* tests: Add unit test for simple XML description writer (Matthias Klumpp)
* Remove some useless code in AsDataPool and recognize DEP-11 data again (Matthias Klumpp)
* Fix several quirks in the ASXML description writing code (Matthias Klumpp)
* tests: Add rudimentary DEP-11 test (Matthias Klumpp)
* Fix a rare double-free corruption (Matthias Klumpp)
* Extract correct description markup when reading distro XML (Matthias Klumpp)
* Updated POTFILES.in (Piotr Drąg)
Version 0.8.1
~~~~~~~~~~~~~~
Released: 2015-05-31
Features:
* qt: Add QLoggingCategory appstreamqt.database (Daniel Nicoletti)
* Don't implicitly clear component list when parsing XML (Matthias Klumpp)
* Implement support for firmware component type (Matthias Klumpp)
* qt: Recognize firmware component type (Matthias Klumpp)
Specification:
* spec: Document the firmware component (Matthias Klumpp)
Bugfixes:
* qt: Remove useless moc file on database.cpp (Daniel Nicoletti)
* Fix doc symlink install code (Matthias Klumpp)
* qt: Load developer_name from database (Matthias Klumpp)
* Prevent crash when saving an empty XML document (Matthias Klumpp)
* Handle empty XML document as valid file (Matthias Klumpp)
* Relicense some remaining files from GPLv3 to GPLv2 (Matthias Klumpp)
* Fix typo which prevented description XML from being generated (Matthias Klumpp)
Version 0.8.0
~~~~~~~~~~~~~~
Released: 2015-01-26
Notes:
* This release contains a few new tags, <source_pkgname/> and <bundle/>, as well
as several specification refinements.
Refer to the documentation for detailed explanations.
Features:
* qt: Make Qt5 default (Aleix Pol)
* validator: Hide pedantic issues by default (Matthias Klumpp)
* Make origin a public property of the metadata generator (Matthias Klumpp)
* Implement the <bundle/> tag (Matthias Klumpp)
* qt: Implement support for bundles (Matthias Klumpp)
* Update the validator to the latest spec version (Matthias Klumpp)
* Implement <source_pkgname/> tag (Matthias Klumpp)
* validator: Make it possible to validate a gzip-compressed metadata file (Matthias Klumpp)
* Install prebuilt documentation by default (Matthias Klumpp)
Specification:
* spec: Allow width and height properties for "local" and "remote" icons (Matthias Klumpp)
* spec: Add <bundle/> tag (Matthias Klumpp)
* spec: Allow bundles of type "xdg-app", additionally to "limba" (Matthias Klumpp)
* spec: Make clear that <release/> tags may have a <description/> child (Matthias Klumpp)
* spec: Recommend screenshot sizes for distro-XML (Matthias Klumpp)
* spec: Specify the <source_pkgname/> tag (Matthias Klumpp)
Bugfixes:
* Clean up some dead code in Xapian wrapper (Matthias Klumpp)
* Fix a couple of minor issues found by static code analysis (Matthias Klumpp)
* asi: Always return a valid exit code (Matthias Klumpp)
* Always search for data in /usr/share, ignore DATADIR (Aleix Pol)
* Correctly read and propagate language properties (Matthias Klumpp)
* Add missing developer_name to database (Matthias Klumpp)
* Improve database-writing code to ignore NULL values (Matthias Klumpp)
* Properly write localized XML for some tags (Matthias Klumpp)
* validator: Fix empty-check for description tag (Matthias Klumpp)
* validator: Don't perform sanity checks on the metadata tag (Matthias Klumpp)
Version 0.7.6
~~~~~~~~~~~~~~
Released: 2015-01-14
Notes:
* This release contains some API and ABI breaks. Recompiling against the new library
should be the only necessary step for most software, if you were not using
deprecated functionality.
Features:
* Update translations
* Update database location for possible fast language switching (Matthias Klumpp)
* Use colorful output when using GCC and compiling in maintainer-mode (Matthias Klumpp)
* Make API to parse distro XML in AsMetadata public (Matthias Klumpp)
* Allow building distro XML from a list of AsComponent objects (Matthias Klumpp)
* Convert AsComponent into a "modern" GObject (Matthias Klumpp)
* Add extra multilanguage support to AsComponent, which is needed for
complete serialization (Matthias Klumpp)
* Remove functions marked as deprecated (Matthias Klumpp)
* Add convenience functions to save generated XML (Matthias Klumpp)
Bugfixes:
* Move component serialization to AsMetadata (Matthias Klumpp)
Version 0.7.5
~~~~~~~~~~~~~~
Released: 2014-11-28
Features:
* Update translations
Specification:
* doc: Clarify meaning of icon types (Matthias Klumpp)
Bugfixes:
* dep11: Fix memory leak in DEP-11 parser (Matthias Klumpp)
* Fix origin<->name confusion (Matthias Klumpp)
Version 0.7.4
~~~~~~~~~~~~~~
Released: 2014-10-30
Features:
* Add local icon directories to the icon search path (Matthias Klumpp)
* Properly handle origin and icons in size-specific directories (Matthias Klumpp)
* Allow client applications to fetch icons in multiple sizes (Matthias Klumpp)
* qt: Implement multisize-icons (Matthias Klumpp)
* qt: Add documentation to the deprecated methods (Matthias Klumpp)
* validator: Ensure that stock and cached icons only contain the icon basename (Matthias Klumpp)
Bugfixes:
* dep11: refine quote test (Matthias Klumpp)
* Don't count it as problem if no metadata is found (Matthias Klumpp)
* Check if AppInstall directory exists, before attempting to scan it (Matthias Klumpp)
* Don't query system categories while processing metadata (Matthias Klumpp)
Version 0.7.3
~~~~~~~~~~~~~~
Released: 2014-10-10
Features:
* Implement basic support for the new icon cache layout (Matthias Klumpp)
Specification:
* spec: Update the icon-cache layout to allow icons with larger sizes (Matthias Klumpp)
Bugfixes:
* Treat the text/plain mimetype equal to YAML or XML (Matthias Klumpp)
* Use camel-case for the AppStream GIR (as used everywhere else) (Matthias Klumpp)
* qt: Include QMultiHash (Aleix Pol)
* Fix wrong DATADIR variable (Matthias Klumpp)
Version 0.7.2
~~~~~~~~~~~~~~
Released: 2014-09-22
Notes:
* This release drops the PackageKit plugin (and the build dependency on PK alltogether).
This means that AppStream will no longer automagically update the Xapian index. Please
make sure that tools or packages which modify the AppStream distro XML/YAML call
'appstream-index refresh' when they are done. (reason for dropping the plugin is PackageKit
removing support for plugins with its 1.0 release)
Features:
* Remove the PackageKit plugin (Matthias Klumpp)
* Use GNUInstallDirs (Matthias Klumpp)
Bugfixes:
* Ensure that we do not convert NULL to a C++ string (Matthias Klumpp)
* Fix check for generic/unknown component in XML serialization (Matthias Klumpp)
* Fix tests on a system which doesn't have a 'categories.xml' (Matthias Klumpp)
* Fix some compiler warnings with clang (Matthias Klumpp)
Version 0.7.1
~~~~~~~~~~~~~~
Released: 2014-09-08
Features:
* qt: Make it possible to build AppstreamQt against Qt5 (Aleix Pol)
* qt: Introduce a method to check if a Qt Appstream::Component is
fully initialized (Aleix Pol)
* qt: Make it possible to query the database for the components given
a package name (Aleix Pol)
* Improve generator performance by caching the short language code (Matthias Klumpp)
* qt: Print component id instead of package name in warning messages (Matthias Klumpp)
* Improve loading of uncompressed distro-metadata (Matthias Klumpp)
* Allow manually defining the default locale for a data pool (Matthias Klumpp)
* dep11: Add validator for the DEP-11 file-format (Matthias Klumpp)
* Add basic function to convert AsComponent to XML (Matthias Klumpp)
* dep11: Implement DEP-11 data parser based on libyaml (Matthias Klumpp)
* Share icon-refinement and component-completion between all data providers (Matthias Klumpp)
Bugfixes:
* qt: Respect the global install paths set by the toplevel CMake file (Matthias Klumpp)
* docs: get rid of "childrens" (Vladimír Čunát)
* Don't crash if no timestamp was defined (Matthias Klumpp)
* Fix FTBFS with Clang (Matthias Klumpp)
* docs: Update architecture images to reflect reality (Matthias Klumpp)
* Install PK plugin into PK >= 0.9.x plugin path (Matthias Klumpp)
* Don't crash in as_component_to_string() if no packages are set (Matthias Klumpp)
* Don't crash when generating the database in case a component has no categories (Matthias Klumpp)
Version 0.7.0
~~~~~~~~~~~~~~
Released: 2014-07-16
Notes:
The AppStream code has been relicensed from LGPL-3+ to LGPL-2.1+
There have also been smaller API breaks in libappstream, see the
list below for information about that.
Features:
* Allow overriding of watched data dirs (Matthias Klumpp)
* More work on the cache-builder to be more flexible (Matthias Klumpp)
* Add DataPool helper class (Matthias Klumpp)
* Do some major refactoring on how the cache is created (Matthias Klumpp)
* validate: Process multiple files (Matthias Klumpp)
* Get rid of as_strv_dup (Matthias Klumpp)
* Implement support for the "addon" component type (Matthias Klumpp)
* Implement support for dbus provides type (Matthias Klumpp)
* Allow fetching data by component type (Matthias Klumpp)
* Relicense to LGPLv2.1+ and GPLv2+ (Matthias Klumpp)
* Drop some deprecated API (Matthias Klumpp)
* Add some limited support for parsing legacy upstream metadata files (Matthias Klumpp)
* Implement developer_name tag (Matthias Klumpp)
* Allow querying the database for multiple component types with one query (Matthias Klumpp)
* Implement 'languages' tag (Matthias Klumpp)
* Improve code which loads urls from the database (Matthias Klumpp)
* validator: Correctly check for compliant localization of tags (Matthias Klumpp)
* Share database definition between libas and libas-qt (Matthias Klumpp)
* appinstall: Handle NoDisplay as well, and treat OnlyShowIn as compulsority (Matthias Klumpp)
* qt: Make it possible to compile only the Qt library (Matthias Klumpp)
* Optimize database generation process to save some time (Matthias Klumpp)
* asi: Don't use GObject class to handle the tool's internals (Matthias Klumpp)
* asi: Improve command syntax (Matthias Klumpp)
* asi: Further code improvements (Matthias Klumpp)
* Expose internal options for database and data placement to asi (Matthias Klumpp)
* Improve database refresh API (Matthias Klumpp)
* tests: Make tests work standalone (Matthias Klumpp)
* vapi: Move to contrib, it's not static data (Matthias Klumpp)
* Update global categories definition (Matthias Klumpp)
* Implement support for multiple package names per component (Matthias Klumpp)
* qt: Implement support for screenshots (Matthias Klumpp)
* qt: More methods to retrieve components from the database (Matthias Klumpp)
* docs: Install gtk-doc documentation (Matthias Klumpp)
* Use XZ compression for release tarball (Matthias Klumpp)
* Use the same datasource-dir method for AsDataPool which was used for AsBuilder (Matthias Klumpp)
* qt: Parse the screenshot xml and store it in some relevant datatypes (Sune Vuorela)
* qt: Acually return the map built when converting UrlKinds to strings (Sune Vuorela)
* qt: Parse and handle the Provides part of the appstream data (Sune Vuorela)
* Some Qt cleanups after a review by Andreas. (Sune Vuorela)
* qt: Create a database constructor that uses the default system path (Sune Vuorela)
* qt: Adapt to multiple package names for a component (Sune Vuorela)
Specification:
* spec: Use UNIX epoch instead of YYYYMMDD for timestamps (Matthias Klumpp)
* spec: Add new "languages" tag to distro XML (Matthias Klumpp)
* spec: Add new component type: Addon (Matthias Klumpp)
* spec: Define a 'dbus' type as new 'provides' element (Matthias Klumpp)
* spec: Specify a developer_name tag (Matthias Klumpp)
* spec: Allow an update_contact tag in upstream-metadata (Matthias Klumpp)
* spec: Allow /var/cache location for icons (Matthias Klumpp)
* spec: Allow multiple definitions of the 'pkgname' tag (Matthias Klumpp)
* spec: Hide multiarch install path section (Matthias Klumpp)
Documentation:
* docs: Add quickstart page template (Matthias Klumpp)
* docs: Export documentation by default (Matthias Klumpp)
* docs: Restructure application description and add quickstart page (Matthias Klumpp)
* docs: Explicitly allow the mimetypes tag in generic components (Matthias Klumpp)
* docs: Sketch section about translation (Matthias Klumpp)
* docs: Various fixes for the spec, add missing project_license to generic component (Matthias Klumpp)
* docs: Add Intltool translation Automake integration hints (Matthias Klumpp)
* docs: Sketch section about addons (Igor Gnatenko)
* docs: Fix some quirks in the distro XML spec (Matthias Klumpp)
* docs: Update app quickstart guide and add example screenshots (Matthias Klumpp)
Bugfixes:
* Fix some bugs in handling of provides-items (Matthias Klumpp)
* Fix some annotations & remove cruft (Matthias Klumpp)
* Update tests and fix a memory leak (Matthias Klumpp)
* validator: Improve handling of translated metadata files (Matthias Klumpp)
* Fix issue when loading compressed metadata files (Matthias Klumpp)
* qt: Added 'const' to the description (Floris-Andrei Stoica-Marcu)
* Print a better result message on cache update in case of metadata errors (Matthias Klumpp)
* Fix crash in AppInstall data provider (Matthias Klumpp)
* Remove bogus g_free() of paths strv in ASXML provider (Matthias Klumpp)
* Get rid of explicit include of config.h (Matthias Klumpp)
* Fix typo in appstream-index manpage (Sune Vuorela)
* validator: Only test if valid tags are empty (Matthias Klumpp)
* Make creating the Xapian cache at different locations work again (Matthias Klumpp)
* Remove leftover cruft from config.h.in (Sune Vuorela)
* asi: Respect the no-color option (Matthias Klumpp)
Version 0.6.2
~~~~~~~~~~~~~~
Released: 2014-05-12
Features:
* Deprecate get_homepage in favour of get_url
* Store all urls in the database
* Split validation into new AsValidator for future extension
* Heavily improve metadata validator, add new as-validator binary
* Add methods to check if component is compulsory or in a specific category
* Add function to pretty-print description markup and use it in asi-tool
* Implement missing support for mimetypes
* Add manpage for appstream-validate
* Allow fast searching for mimetype handlers
Specification:
* spec: Use subdirectories for multiarch metadata
* spec: Exclusively use SPDX license tags
* spec: Update screenshot spec to reflect reality
* docs: Fix some quirks and issues
* docs: Rework url information as variablelist
* spec: Rename "manual" url type to "help"
Bugfixes:
* Ensure active metadata locale does not have an UTF-8 suffix
* Refine icon path/url detection for applications
* Deprecate idname and make Component header nicer to work with
* Fix bug in category-loading and display categories in the asi-tool
* Fix multiple potential crashes when parsing upstream metadata
* Make sure we don't use deprecated methods internally anymore
* tests: Run database tests on private db copy
* asi-tool: Fix small (but annoying) warning
* asi-tool: Adjust manpage to reflect reality
* validator: Create better log messages
Version 0.6.1
~~~~~~~~~~~~~~
Released: 2014-04-24
Features:
* Make AsMetadata handle (almost) all XML parsing (Matthias Klumpp)
* Add function to parse upstream metadata in AsMetadata (Matthias Klumpp)
* Add methods to set/get locale used for metadata parsing (Matthias Klumpp)
* Add function to load metadata from memory (Matthias Klumpp)
* Implement a parser mode to abstract away differences in AS metadata (Matthias Klumpp)
* Auto-generate Vala API file, if desired (Matthias Klumpp)
* Add functions to get a component by it's ID (Matthias Klumpp)
* Index terms for provided items (Matthias Klumpp)
* Allow fetching components by the items they provide (Matthias Klumpp)
* Parse AppStream data in /var/lib/app-info/xmls (Matthias Klumpp)
* Implement priority property (Matthias Klumpp)
Specification:
* spec: Add priority property for components in distro-metadata (Matthias Klumpp)
Bugfixes:
* Fix libappstream pkgconfig (Matthias Klumpp)
* Make data-providers emit "component" signal (instead of "application") (Matthias Klumpp)
* Make translation possible again (Matthias Klumpp)
* Handle lib directory suffix on distributions like Fedora (Rex Dieter)
* docs: Fix examples to use the <releases/> tag correctly (Matthias Klumpp)
* Print error if compiled with -DVAPI, but no vapigen was found (Matthias Klumpp)
* Improve documentation and annotations (Matthias Klumpp)
* Improve API for provides-tests (Matthias Klumpp)
* Implement strict parsing of the description tag in upstream metadata (Matthias Klumpp)
* docs: Fix the section on 3rd-party screenshot services (Matthias Klumpp)
Version 0.6.0
~~~~~~~~~~~~~~
Released: 2014-04-16
Notes:
This release breaks both the library API and the Appstream specification.
Please adjust your tools to work with Appstream 0.6, especially take a look
at the documentation for the new Appstream XML specification.
Features:
* Add new AsComponent class (Matthias Klumpp)
* Rewrote libappstream in plain C (Matthias Klumpp)
* client: Add option for detailed output (Matthias Klumpp)
* Use "kind" instead of "ctype" for component types (Matthias Klumpp)
* Implement compulsory-for-desktop (Matthias Klumpp)
* Some refactoring, additions and improvements (Matthias Klumpp)
* Correctly handle component types according to the 0.6 spec (Matthias Klumpp)
* Bring back thumbnail support for ss.d.n services (Matthias Klumpp)
* client: Improve screenshot url display (Matthias Klumpp)
* Implement support for <provides/> (Matthias Klumpp)
* Implement support for <release/> (Matthias Klumpp)
* Some API future-proofing (Matthias Klumpp)
* Add helper to generate Vala VAPI file (Matthias Klumpp)
Specification:
* docs: Initial documentation on components and lots of restructuring (Matthias Klumpp)
* docs: Add FontData meta-info spec (Matthias Klumpp)
* docs: Add description of input-method metainfo (Matthias Klumpp)
* docs: Some changes on ASXML for component-support (Matthias Klumpp)
* docs: Clarify font classifier (Matthias Klumpp)
* spec: Don't use specialized tags, everything is a component. Kill <id/> types (Matthias Klumpp)
* spec: All upstream meta-info goes to /usr/share/appdata now (Matthias Klumpp)
* specs: Update Appstream example XML for latest changes (Matthias Klumpp)
* specs: Add new <architectures/> tag to Appstream distro spec (Matthias Klumpp)
* spec: Add "origin" property for components tag (Matthias Klumpp)
* spec: Define icon repository (Matthias Klumpp)
* spec: Component-type is "desktop" for apps now (Matthias Klumpp)
* spec: Add <releases/> parent for release tags (Matthias Klumpp)
* spec: Allow more url types (Matthias Klumpp)
* spec: Clarify how the description tag should be translated (Matthias Klumpp)
* spec: Hide fonts for now - the spec is not yet ready (Matthias Klumpp)
* spec: Add component type for codecs (Matthias Klumpp)
* specs: Update project mission statement (Matthias Klumpp)
* spec: Use metadata_license instead of the BE version (Matthias Klumpp)
* spec: Add note on multiarch-support (Matthias Klumpp)
Bugfixes:
* Make parallel compilation possible (Matthias Klumpp)
* Allow compiling with -Wall -Werror (Matthias Klumpp)
* Prevent identifier collisions in the database (Matthias Klumpp)
* Some fixes for the introspection build process (Matthias Klumpp)
* Some basic fixes for the XSD schemes (Matthias Klumpp)
Version 0.5.0
~~~~~~~~~~~~~~
Released: 2014-02-23
Features:
* Parse screenshot data and make it available via library API (Matthias Klumpp)
* Add screenshot data to the Xapian database (Matthias Klumpp)
* Add function to dump screenshot data as XML (Matthias Klumpp)
* cli: Add colored output to the command-line tool (Matthias Klumpp)
* cli: Display some screenshot information, if it is found (Matthias Klumpp)
* cli: Allow the tool to trigger cache rebuilds (Matthias Klumpp)
* Add new API to return available screenshot sizes (Matthias Klumpp)
* Always compile tests (Matthias Klumpp)
* Improve Xapian search capabilities (Matthias Klumpp)
Specification:
* spec: Deprecate appcategory element in favour of category element (Matthias Klumpp)
* docs: Update architecture images (Matthias Klumpp)
* docs: Remove reference to OCS (Matthias Klumpp)
* spec: Add caption for screenshots (Matthias Klumpp)
Bugfixes:
* Always install appstream.pc in correct libdir (Matthias Klumpp)
* Always rebuild the database if watchfile is missing (Matthias Klumpp)
* Don't throw an error if we are on a system without the ASXML dir (Matthias Klumpp)
* Fix some memory leaks (Matthias Klumpp)
* Fix some strange vala compile issue with newer valac versions (Matthias Klumpp)
Version 0.4.0
~~~~~~~~~~~~~~
Released: 2013-10-20
Features:
* Include /var/cache/app-info as location for AppStream XMLs (Matthias Klumpp)
* Search for icons in the caches too (Matthias Klumpp)
* Remove API for manually refreshing the Xapian cache (Matthias Klumpp)
* Remove refresh action from appstream-index tool (Matthias Klumpp)
* Implement PackageKit plugin to refresh the cache (Matthias Klumpp)
* Implement support for compressed AppStream files (Matthias Klumpp)
* Support all icon types in AppStream XML parser (Matthias Klumpp)
* Parse description tags in AppStream XML (Matthias Klumpp)
* Update database schema, breaking USC compatibility (Matthias Klumpp)
* Only rebuild AppStream Xapian cache if data has changed (Matthias Klumpp)
* Store app homepage and iconpath correctly in new database layout (Matthias Klumpp)
* docs: Document important parts of AppStream (Matthias Klumpp)
* docs: Document appcategories tag (Matthias Klumpp)
* docs: Add example XML for AppStream files (Matthias Klumpp)
* docs: Briefly describe the screenshot service (Matthias Klumpp)
* docs: Include preexisting architecture graphics and fix some quirks (Matthias Klumpp)
* docs: Specify how icons will be handled and which ones take priority (Matthias Klumpp)
Specification:
* spec: Add project_group element (Matthias Klumpp)
* spec: The "remote" type is much more precise than "url" (Matthias Klumpp)
* spec: Add documentation tag to the AppStream spec (Matthias Klumpp)
* spec: Enforce at least one id, pkgname, name, summary and icon tag (Matthias Klumpp)
* spec: Define and describe project_license tag (Matthias Klumpp)
* spec: Add screenshots to the AppStream XML spec (Matthias Klumpp)
* spec: Add new compulsory_for_desktop tag (Matthias Klumpp)
Bugfixes:
* Ensure that we have GI set up, before compiling libappstream (Matthias Klumpp)
* Set has_type_id=false for Xapian binding (Matthias Klumpp)
* Ensure we do always target the right GLib version (Matthias Klumpp)
* Fix crash in AppStream PackageKit plugin (Matthias Klumpp)
Version 0.3.1
~~~~~~~~~~~~~~
Released: 2013-06-26
Bugfixes:
* Use a GPtrArray for search results
* Adjust unit-tests and client tool
Version 0.3.0
~~~~~~~~~~~~~~
Released: 2013-06-10
Features:
* Add command-line method to search for apps (Matthias Klumpp)
* Restructure code to clearly separate client and daemon (Matthias Klumpp)
* Make DBus API an internal implementation detail (Matthias Klumpp)
* Rewritten and more advanced XDG menu file parser (Matthias Klumpp)
* Implemented new Category handling (Matthias Klumpp)
* Many improvements in documentation (Matthias Klumpp)
* Implement API to access any AppStream-compliant screenshot service (Matthias Klumpp)
Bugfixes:
* Fix creation of missing database (Matthias Klumpp)
* Make UAI more failsafe (Matthias Klumpp)
* Improve error handling and command-line output (Matthias Klumpp)
* Greatly improve search results (Matthias Klumpp)
* Fix translation template (Matthias Klumpp)
Version 0.2.0
~~~~~~~~~~~~~~
Released: 2013-03-15
Features:
* Add distro-agnostic category definition (Matthias Klumpp)
* Make DBus API more failsafe (Matthias Klumpp)
* Place Xapian cache in different directory (Matthias Klumpp)
* Add release script and release instructions (Matthias Klumpp)
Bugfixes:
* Kill some compiler warnings (Matthias Klumpp)
* Print error message if xmlto was not found (Matthias Klumpp)
* Make --nowait option finally work again (Matthias Klumpp)
* docs: Build C API documentation (Matthias Klumpp)
* Print better message if category dir is null (Matthias Klumpp)
Version 0.1.0
~~~~~~~~~~~~~~