-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathChangeLog
1590 lines (1052 loc) · 49.8 KB
/
ChangeLog
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
2023-08-24 Mike Gabriel
* release 0.9.2 (HEAD -> main, tag: 0.9.2)
2023-08-07 Mike Gabriel
* Merge branch 'tari01-pr/build-fixes' (b8050c4)
2023-08-01 Robert Tari
* Fix build errors (18ef013)
2023-07-12 Robert Tari
* Merge branch 'personal/peat-psuwit/uint16' (08289ff)
2023-06-15 Ratchanan Srirattanamet
* ayatanamenumodel: add support for {u,}int of all sizes (0defce2)
2022-02-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-forced-coverage' (24cc4ee)
2022-02-06 Robert Tari
* tests/client/CMakeLists.txt: Only enable coverage reporting if the
flag is set for it (44e35e3)
2022-02-08 Mike Gabriel
* release 0.9.1 (2561e46) (tag: 0.9.1)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
+ disable ppc64el builds (5e46aa7)
2022-02-01 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (45da057)
2022-01-13 Robert Tari
* .build.yml: Drop extra compilation flags and build with -Werror
(f441fab)
* CMakeLists.txt: Clean up compilation flags (59283b0)
* Fix all build warnings (d23a290)
2022-02-01 Mike Gabriel
* Merge branch 'correct-1-0' (7f5119f)
2021-12-23 Dalton Durst
* Make the qmltests test imports, at least (03a23b0)
* Fix build warning regarding qchar (fbb94cd)
* Fix naming of AyatanaMenuModel qml type (0333149)
* Fix versioning in examples and tests (02c973a)
2022-02-01 Mike Gabriel
* Merge branch 'tari01-pr/ayatana-style-cmake' (cc2c2d9)
2021-12-15 Robert Tari
* CMakeLists.txt: Rewrite and enable Ayatana-style options (8e228ca)
2021-12-14 Mike Gabriel
* release 0.9.0 (4c27ec6) (tag: 0.9.0)
* Merge branch 'tari01-pr/qml-1-0' (0924c28)
2021-12-08 Mike Gabriel
* debian/{control,*qmenumodel*}: Rename bin:pkg qmenumodel-qml to
qml-module-qmenumodel1 (reflecting the version bump _and_
becoming compliant to Debian's naming policy for QML
modules. (efb9bed)
2021-12-02 Robert Tari
* debian/qmenumodel-qml.install: Update QMenuModel name (a22b26b)
* Bump QMenuModel to 1.0 (8fda779)
2021-12-10 Robert Tari
* Fix CMake version and add required test packages (6abf908)
2021-12-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-qt5-use-modules-warning' (66af742)
2021-12-07 Robert Tari
* Fix qt5_use_modules warning (af5a575)
2021-11-18 Mike Gabriel
* Merge branch 'tari01-pr/bump-std-version' (5b84c10)
2021-11-18 Robert Tari
* CMakeLists.txt: Stop enforcing C++11 standard. (621d577)
2021-11-18 Mike Gabriel
* Merge branch 'tari01-pr/bump-soversion' (a817c0d)
2021-11-18 Robert Tari
* debian/*: Update libqmenumodel0 to libqmenumodel1 (6a0f949)
* libqmenumodel/src/CMakeLists.txt: Bump the SOVERSION of
libqmenumodel (f7f503f)
* Merge branch 'sunweaver-pr/amend-version-in-pkgconfig-file'
(d9d7b02)
2021-11-18 Mike Gabriel
* libqmenumodel/src/qmenumodel.pc.in: Use @PROJECT_VERSION@ for
Version: field. (79516ac)
2021-11-17 Mike Gabriel
* Merge branch 'tari01-pr/rename-unity-symbols' (62a8b8b)
2021-11-16 Robert Tari
* Rename Unity* symbols (f4e75e1)
* Rename unity* source files (f803689)
2021-11-17 Mike Gabriel
* Merge branch 'tari01-pr/rename-canonical-properties' (8089cd5)
2021-11-15 Robert Tari
* Rename com.ubuntu.menu (0d2c880)
* examples/exportmenu.py: Rename x-canonical-currentvalue (a4f024e)
* examples/unityqmlmenumodel.qml: Rename
com.canonical.indicator.sound (f89d653)
* libqmenumodel/QMenuModel/plugin.h: Rename com.canonical.qmenumodel
(9e464fb)
* Rename com.canonical.test* (e728156)
2021-11-13 Robert Tari
* Rename com.canonical.unity.slider (7bb1253)
2021-10-24 Mike Gabriel
* release 0.8.1 (7f41ec3) (tag: 0.8.1)
2021-09-09 Robert Tari
* Merge branch 'sunweaver-pr/use-ayatana-indicators-dev-scripts'
(8df381c)
2021-08-29 Mike Gabriel
* debian/{control,compat}: Bump to level 10. (dec144a)
* debian/rules: Enable unit tests. (55d51db)
* debian/{control,compat}: Bump to level 10. (2aec4a4)
* debian/rules: Enable unit tests. (47cac22)
2021-08-28 Mike Gabriel
* .travis.yml: Use Ayatana Indicators project's dev-scripts repo.
(5e12d85)
2021-06-11 Mike Gabriel
* debian/control: Ignore missing B-D bin:pkg 'qt5-default'. It has
been dropped during the Debian bullseye release cycle.
(fb58fcc)
2021-05-17 Mike Gabriel
* Merge branch 'z3ntu-glib' (ddcccb4)
2021-04-04 Luca Weiss
* Move glib includes outside of extern "C" (a6d79e8)
2021-05-17 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (792a56d)
2021-05-12 Mike Gabriel
* Travis CI: Initial draft for CI builds. (184eb5c)
2020-08-18 Mike Gabriel
* release 0.8.0 (095e205) (tag: 0.8.0)
2020-08-15 Marius Gripsgard
* Merge branch 'sunweaver-pr/move-over-to-ayatana-indicators'
(566e0e1)
2020-08-15 Mike Gabriel
* CMakeLists.txt: Introduce shipping PROJECT_VERSION in upstream code
(not just in debian/changelog, which gets removed during
tarball creation). (2361b98)
* Move over qmenumodel into the Ayatana Indicators project, upstream
version bump preparation. (8954090)
* debian/control: Add myself to Uploaders: field. (617c181)
* Merge branch 'ayatana-type' (a05e8b1)
2020-08-15 Marius Gripsgard
* Support ayatana type (fa430b5)
* Use CoverageReport from cmake-extras (a17ce34)
* Correct debian control file (3c9b1ce)
* Cleanup bzr (0e71197)
* Merge branch 'xenial_-_patches' of
https://github.com/z3ntu/qmenumodel (e21000a)
2020-05-18 Luca Weiss
* Remove use of the deprecated QModelIndex::child function (b420ba1)
* Add missing header (bca9dd3)
2018-07-27 Florian Leeber
* Merge pull request #2 from vanyasem/master (30e3dc5)
2018-06-20 Ivan Semkin
* Fix build with Qt 5.11_beta3 (dropping qt5_use_modules) (276a033)
2017-12-27 Marius Gripsgard
* Build for xenial and bump version (f236743)
* Add Jenkinsfile (3463ebe)
2017-04-04 Bileto Bot
* Releasing 0.2.12+17.04.20170404-0ubuntu1 (760d505)
2017-04-04 Albert Astals Cid
* Add a return true (05133b2)
2017-04-03 Albert Astals Cid
* Add a return true (0fd82be)
2017-03-16 Bileto Bot
* Releasing 0.2.12+17.04.20170316.1-0ubuntu1 (42ba9cd)
2017-03-16 Albert Astals Cid
* Use submenu-enabled for those items that don't have an action (if
it exists) (LP: #1670694) (1e6ebcc)
2017-03-16 Bileto Bot
* Add UnityMenuModel::aboutToShow ((LP: 1664578) (f0aa8c3)
2017-03-16 Albert Astals Cid
* Batch add and removes into the model (e2b335b)
* 0 -> G_MAXINT as found by Charles (5c4aae1)
* Fix c&p, this ref should be unref (4216eb7)
* Review improvements (8c08013)
2017-03-08 Albert Astals Cid
* Use submenu-enabled for those items that don't have an action (if
it exists) (c4855ff)
2017-03-07 Albert Astals Cid
* Increase version because of new api (4e10e84)
2017-03-06 Albert Astals Cid
* Call about to show for those items that have a qtubuntu-tag
property (7579572)
2017-02-28 Albert Astals Cid
* valign (9058e74)
* Batch add and removes into the model (87ea781)
2017-01-10 Bileto Bot
* Releasing 0.2.11+17.04.20170110.1-0ubuntu1 (2eaa36e)
* Added shortcut hasSubmenu and roles to UnityMenuModel; Added
actions property to Group (ab9f997)
2016-12-09 Nick Dedekind
* added to changelog (a9c7379)
* fixed version file (6be5a58)
* merged with trunk (69093dc)
2016-11-16 Bileto Bot
* Releasing 0.2.10+17.04.20161116-0ubuntu1 (89f2b36)
2016-11-16 Marco Trevisan (Treviño)
* converter: cleanup and add support for more variant types (9884a79)
2016-11-16 Florian Boucault
* Crossbuilding fixes. (9d914ff)
2016-10-26 Bileto Bot
* Releasing 0.2.10+17.04.20161026.2-0ubuntu1 (24f649f)
* Add ability to activate or change state of an action by variant
string (662f263)
2016-10-26 Marco Trevisan (Treviño)
* converterTest: add content conversions back and further from
gvariant (352a770)
* converter: properly set the QByteArray using ctor, or it will be
created twice (210cae9)
* converterTest: add conversion to GVariant and back to verify
content is correct (e1ee47e)
2016-10-25 Marco Trevisan (Treviño)
* converter: return a variant when the schema is a variant (d56d0ba)
* converter: verify integer type conversions (eb6e5b5)
* converter: free schema type on destruction (fc52f84)
* converter: free the strv container (edfe13a)
* Merged variant-string-parser into converter-improvements. (64a2113)
2016-10-25 Lukáš Tinkl
* converter: use qUtf8Printable function (64ac22d)
2016-10-25 Marco Trevisan (Treviño)
* UnityMenuModel: avoid copy on assignment (0d1bfd6)
* UnityMenuModel: use conversion with gschema in unity actions
(307efb4)
* converterTest: simplify metatype definitions (a4c1bb6)
* Converter: add support to String Arrays (6d2076c)
* Merging with lp:~3v1n0/qmenumodel/variant-string-parser (d25887f)
* ConverterTest: add checks for tuples and lists (c314929)
2016-10-24 Marco Trevisan (Treviño)
* Add conversion tests for maps and lists to QVariant (3509321)
* converterTest: add tests for toQVariantFromVariantString (3bcc60f)
* convertertest: add tests for converting to QVariant (abc65a4)
* converterTest: QVERIFY comparison return value (7f78a2c)
2016-10-22 Marco Trevisan (Treviño)
* remove deprecated g_type_init() calls (3d2c260)
* ConverterTest: remove C++11 features for now (3897067)
* convertertest: create QGVariantType wrapper to avoid
reinterperating a QString (4b495fc)
* convertertest: repeat tests using test data (00ddb5f)
* ConverterTest: use data in the testSchemaConvert (81e73a2)
2016-10-20 Marco Trevisan (Treviño)
* ActionGroupTest: add test for activateByVariantString (6d2a0aa)
* ActionGroupTest: split tests depending on they need the helper
script or not (bba640d)
2016-10-18 Marco Trevisan (Treviño)
* converter: stop looking if w'eve no entryType (901e9dc)
* Converter: use builders and c++ facilities for schema conversions
(3def677)
* Converter: use some c++11 facilities for lists (3bd198e)
* ConverterTest: add QVariantList conversion test (d8aa881)
* convertertest: add conversion from map to qvariant check (d3899e6)
* Converter: use QMetaType to check integer subtypes (36681ba)
* Converter: add support for ByteArrayList (c42bc21)
* Converter: add bytestring support (e87701e)
* ConverterTest: add tests for toQVariant (3edd18d)
* convertertest: use better variant map test (894fbb9)
* CMakeLists.txt: we can safely use c++11 here (c3b6823)
* QStateAction: add ability to activate or change state by variant
string (06687a7)
* Converter: move parseVariantString here from UnityMenuModel
(1adf4a6)
2016-10-17 Marco Trevisan (Treviño)
* convertertest: add tests for [U]LongLong converters (c998da0)
* converterTest: split tests by type (f52b497)
2016-10-15 Marco Trevisan (Treviño)
* UnityMenuModel: avoid initializing an empty QVariant if not needed
(33b7533)
2016-10-14 Marco Trevisan (Treviño)
* UnityMenuModel: avoid copying the string to a new std one (462b842)
* debian/changelog: bump version number (edc354a)
* UnityMenuModel add support for activating and changing state with a
variant string parameter (1e9cf63)
* Converter: add support to LongLong and ULongLong (449ac3d)
2016-10-04 Nick Dedekind
* version bump (a618ff5)
* better boolean check (388be5b)
2016-07-19 Florian Boucault
* Crossbuilding fixes. (c6bba62)
2016-03-29 CI Train Bot
* Releasing 0.2.9+16.04.20160329-0ubuntu1 (9efd410)
2016-03-29 Nick Dedekind
* Use Qt logging categories
Fixes: #1562992 Approved by: Daniel
d'Andrada, PS Jenkins bot (f2b1959)
2016-03-29 Michał Sawicz
* Sync gcc 5.1 rebuild version Approved by: PS Jenkins bot (2e795a2)
2016-02-23 Nick Dedekind
* only log critical (4ad6055)
* added missing file (2bf6347)
2016-02-19 Nick Dedekind
* use logging categories (2291dec)
2016-01-15 Nick Dedekind
* Added roles for submenu & shortcut. Added actions (97b75c9)
2015-12-14 Michał Sawicz
* Sync gcc 5.1 rebuild (df7955d)
2015-09-08 Nick Dedekind
* accelerators (523db87)
2015-04-30 CI Train Bot
* Releasing 0.2.9+15.04.20150430-0ubuntu1 (e6e4bab)
2015-04-30 Michael Terry
* Don't leave a dangling GVariant pointer in GtkMenuTrackerItem,
which can cause a crash. (3e5d807)
* Fix crash from not NULLing a variant that we later might try to
unref (1933513)
2015-01-08 CI Train Bot
* Releasing 0.2.9+15.04.20150108-0ubuntu1 (19e4949)
2015-01-08 Nick Dedekind
* Add support for overriding QDBusActionGroup state parser
Fixes:
#1385331 Approved by: PS Jenkins bot, Albert Astals Cid
(79ef5bc)
2014-12-10 Nick Dedekind
* added comment (7dc65fd)
2014-11-11 Nick Dedekind
* bump version (f1b1f9a)
* Allow override of action state parser (0ca199d)
2014-10-13 CI bot
* Releasing 0.2.8+14.10.20141013-0ubuntu1 (f3a203b)
2014-10-13 Nick Dedekind
* Disconnect QDBusActionGroup add/remove/stateChange signals when
deleting object.
Fixes: 1378941 Approved by: Charles Kerr,
Michael Sheldon, PS Jenkins bot, Lars Uebernickel
(e0ee0a8)
2014-10-10 Nick Dedekind
* disconnect on clear (ec1e10b)
2014-08-15 CI bot
* Releasing 0.2.8+14.10.20140815-0ubuntu1 (49d7bf9)
2014-08-15 Nick Dedekind
* Allow remote URIs to be used from file serialized icons Approved
by: Sergio Schvezov, PS Jenkins bot (8f2a49c)
2014-07-29 Nick Dedekind
* remove check for native file (eac47df)
2014-07-17 CI bot
* Releasing 0.2.8+14.10.20140717-0ubuntu1 (d9a59c0)
2014-07-17 Lars Uebernickel
* unitymenumodel: add nameOwner property
Fixes: 1308011 Approved by:
Mirco Müller, PS Jenkins bot (f7719ce)
2014-07-15 Lars Uebernickel
* Update changelog (166406a)
2014-07-11 Lars Uebernickel
* unitymenumodel: add nameOwner property (35c2996)
* unitymenumodel: notify when the bus name changes (7be80e6)
2014-07-04 CI bot
* Releasing 0.2.7+14.10.20140704-0ubuntu1 (018eaeb)
2014-07-04 Nick Dedekind
* Unset the UnityMenuActions::model when destroying UnityMenuModel
Fixes: 1334203 (2ec6160)
2014-07-04 Charles Kerr
* Fix a dangling UnityMenuAction pointer by ensuring it's registered
with only one menu at a time.
Fixes: 1282282 (d83588e)
2014-07-01 Nick Dedekind
* fixed copywrite (4f4fde0)
* added missing file (99e2882)
2014-06-30 Nick Dedekind
* unset actions model in destructor (6d8d26d)
2014-05-14 CI bot
* Releasing 0.2.7+14.10.20140514.1-0ubuntu1 (c7955b4)
2014-05-14 Antti Kaijanmäki
* Add standard "has the property actually changed" check to
UnityMenuModel::setBusName() (b927a95)
2014-05-08 Antti Kaijanmäki
* wrap the changelog entry. (802224f)
* try to fix debian/changelog for the ci train.. (20eb438)
* manually merge debian/changelog after a manual upload to the
archive. (26a791f)
2014-04-02 Antti Kaijanmäki
* Add standard "has the property actually changed" check to
UnityMenuModel::setBusName() (bc008a3)
* revert the last commit. (112eb60)
* UnityMenuModel::setName: handle empty strings properly. (5809d6f)
2014-03-16 Charles Kerr
* when an action's model changes in UnityMenuAction::setModel(), make
sure the action unregisters itself from the previous
model. (0b31bc9)
2014-03-05 CI bot
* Releasing 0.2.7+14.04.20140305-0ubuntu1 (94aac07)
* No change rebuild against Qt 5.2.1. (f8a07da)
2014-02-28 Albert Astals
* Fix use of un-initialized memory (788ebe3)
* Fix use of un-initialized memory (7b70ef5)
2013-12-13 Automatic PS uploader
* Releasing 0.2.7+14.04.20131213-0ubuntu1 (revision 99 from
lp:qmenumodel). (24aa85f)
* Releasing 0.2.7+14.04.20131213-0ubuntu1, based on r99 (09b0f46)
2013-12-11 Nick Dedekind
* Added dataChange to loadExtendedAttributes function. (9530a3d)
* Added data change to loadExtAttributes (81b68c9)
2013-11-25 Automatic PS uploader
* Releasing 0.2.7+14.04.20131125-0ubuntu1 (revision 97 from
lp:qmenumodel). (c40c4c2)
* Releasing 0.2.7+14.04.20131125-0ubuntu1, based on r97 (27b7d20)
2013-11-21 Marcus Tomlinson
* Fixed #define guard. (12111d2)
2013-11-06 Marcus Tomlinson
* Fixed #define guard (7332db6)
2013-10-16 Automatic PS uploader
* Releasing 0.2.7+13.10.20131016-0ubuntu1 (revision 95 from
lp:qmenumodel). (25e6667)
* Releasing 0.2.7+13.10.20131016-0ubuntu1, based on r95 (cf34565)
2013-10-15 Nick Dedekind
* Added pointer checks for items/iterators. (lp#1239394).
Fixes:
https://bugs.launchpad.net/bugs/1239394. (52d2141)
2013-10-14 Nick Dedekind
* removed unnecessary pointer checks (c50f57f)
* Added iterator/item pointer checks (e7bfaf1)
2013-10-11 Gustavo Pichorim Boiko
* Use g_file_get_uri instead of g_file_get_path to make sure the
URI's percent encoding is properly kept. (867693a)
* Use g_file_get_uri instead of g_file_get_path to make sure the
URI's percent encoding is properly kept. (fa2526b)
2013-10-11 Automatic PS uploader
* Releasing 0.2.7+13.10.20131011-0ubuntu1 (revision 92 from
lp:qmenumodel). (5ac03ca)
* Releasing 0.2.7+13.10.20131011-0ubuntu1, based on r92 (e47e13a)
2013-10-01 Lars Uebernickel
* QStateAction: try to maintain the type of the action's state
(5f66f59)
2013-09-23 Lars Uebernickel
* QStateAction: try to maintain the type of the action's state
(74a9ba6)
2013-09-20 Automatic PS uploader
* Releasing 0.2.7+13.10.20130920-0ubuntu1 (revision 90 from
lp:qmenumodel). (23dee12)
* Releasing 0.2.7+13.10.20130920-0ubuntu1, based on r90 (61b9ea6)
2013-09-18 Pete Woods
* Fix memory leak in unitymenumodel (b6f00b9)
2013-09-17 Pete Woods
* Fix sequence memory leak in unitymenumodel (9b9504f)
2013-09-13 Automatic PS uploader
* Releasing 0.2.7+13.10.20130913-0ubuntu1 (revision 88 from
lp:qmenumodel). (81648d3)
* Releasing 0.2.7+13.10.20130913-0ubuntu1, based on r88 (d0d6d56)
2013-09-09 Mathieu Trudel-Lapierre
* Add changelog for manual upload of 0.2.7+13.10.20130830-0ubuntu2.
(958d147)
* upload version 0.2.7+13.10.20130830-0ubuntu2 (71b514b)
2013-09-04 Lars Uebernickel
* Use fully namespaced action name in UnityMenuModel::activate and
for the action role. (ce35aa4)
2013-09-03 Lars Uebernickel
* fullActioName: make sure 'name' is valid for the duration of the
function (e01b6b5)
* Add UnityMenuAction::index property (9365885)
2013-09-02 Lars Uebernickel
* Add UnityMenuModel::getAction (2641328)
* UnityMenuModel::activate: use gtk_menu_tracker_item_get_action_name
(f58b7c7)
* gtk_menu_tracker_item_get_action_name: return full name, including
namespace (fa058d5)
2013-08-30 Automatic PS uploader
* Releasing 0.2.7+13.10.20130830-0ubuntu1 (revision 85 from
lp:qmenumodel). (28a4548)
* Releasing 0.2.7+13.10.20130830-0ubuntu1, based on r85 (279b43c)
2013-08-30 Nick Dedekind
* Added UnityMenuAction for "out-of-menu" actions. (db40e84)
2013-08-29 Automatic PS uploader
* Releasing 0.2.7+13.10.20130829.1-0ubuntu1 (revision 83 from
lp:qmenumodel). (751f4fb)
* Releasing 0.2.7+13.10.20130829.1-0ubuntu1, based on r83 (f43d10f)
2013-08-29 Lars Uebernickel
* Remove theme image provider (9acfda5)
2013-08-29 Nick Dedekind
* Let Qt manage the destruction of child ActionStateParsers.
(7d013d7)
* Let Qt manage deletion of children (2eeecef)
2013-08-28 Automatic PS uploader
* Releasing 0.2.7+13.10.20130828.2-0ubuntu1 (revision 80 from
lp:qmenumodel). (64ab9df)
* Releasing 0.2.7+13.10.20130828.2-0ubuntu1, based on r80 (a601032)
2013-08-27 Lars Uebernickel
* Make sure the right qt modules are loaded to make QMenuModel tests
pass.
Fixes: https://bugs.launchpad.net/bugs/1217335.
(4f91a49)
2013-08-27 Automatic PS uploader
* Releasing 0.2.7+13.10.20130827.3-0ubuntu1 (revision 78 from
lp:qmenumodel). (68e010e)
2013-08-27 Nick Dedekind
* merged with trunk (8cc3f9a)
* Review comments (ebace67)
2013-08-27 Lars Uebernickel
* Make sure the right qt modules are loaded to make QMenuModel tests
pass (31bdaf0)
2013-08-27 Automatic PS uploader
* Releasing 0.2.7+13.10.20130827.3-0ubuntu1, based on r78 (298bf61)
2013-08-26 Automatic PS uploader
* Releasing 0.2.7+13.10.20130826-0ubuntu1 (revision 75 from
lp:qmenumodel). (8977be5)
2013-08-26 Nick Dedekind
* Adds qt event spawning to direct glib main loop callbacks.
Fixes:
https://bugs.launchpad.net/bugs/1183065,
https://bugs.launchpad.net/bugs/1206991. (aaa8252)
* UnityMenuModel::changeState now uses current state parameter type
as a base for parameter GVariant conversion. (50563a1)
2013-08-26 Automatic PS uploader
* Releasing 0.2.7+13.10.20130826-0ubuntu1, based on r75 (8a3c8c9)
2013-08-26 Nick Dedekind
* Added int64 & variant types to UnityMenuModel ext attribute
parsing. (346f5fc)
2013-08-22 Nick Dedekind
* removed newline (d23d848)
* Added copywrite headers (9ed4538)
* Using qt event loop to pass UnityMenuAction events (c274656)
2013-08-22 Lars Uebernickel
* Remove theme image provider (1439420)
2013-08-22 Nick Dedekind
* Added activate/changeState to UnityMenuModel (d912a0a)
2013-08-21 Nick Dedekind
* Added UnityMenuAction for out-of-line actions. Action muxer copied
to submenus. (72cd124)
2013-08-20 Nick Dedekind
* new unitymenumodel attribute types (d83555e)
2013-08-15 Nick Dedekind
* Added toGVariantWithSchema for UnityMenuModel::changeState
(67394e4)
2013-08-13 Automatic PS uploader
* Releasing 0.2.7+13.10.20130813-0ubuntu1 (revision 73 from
lp:qmenumodel). (bac9f37)
* Releasing 0.2.7+13.10.20130813-0ubuntu1, based on r73 (f26e80d)
2013-08-13 Nick Dedekind
* Release version 0.2.7. (1e14a68)
* version bump (5111d99)
* Removed UnityMenuAction. (a89cb05)
2013-08-12 Automatic PS uploader
* Releasing 0.2.6+13.10.20130812-0ubuntu1 (revision 70 from
lp:qmenumodel). (2713de8)
2013-08-12 Nick Dedekind
* Removed UnityMenuAction. Fixed leaks from unitymenumodel. (3caade3)
2013-08-12 Automatic PS uploader
* Releasing 0.2.6+13.10.20130812-0ubuntu1, based on r70 (9d4e931)
2013-08-12 Nick Dedekind
* Added UnityMenuModel. (d6085f8)
2013-08-12 Lars Uebernickel
* Add isToggled role (94a0809)
2013-08-12 Nick Dedekind
* Use qevents to send between direct glib loop events and qt.
(6914a54)
* use correct qvariant types for sensitive and isSeparator roles
(3ded9bb)
2013-08-12 Lars Uebernickel
* Expose isCheck and isRadio roles (6bd9b68)
2013-08-09 Nick Dedekind
* use correct qvariant types for sensitive and isSeparator roles
(6251412)
2013-08-09 Lars Uebernickel
* Add parameter to unitymenumodel.action.activate (4e1a260)
* Re-add UnityMenuModel::activate() (08a5bb3)
2013-08-09 Nick Dedekind
* glib callbacks pass events through qt. (2bbdf4e)
* moved events to separate file. (db47d07)
* bit of code cleanup (9be2951)
2013-08-08 Nick Dedekind
* Glib callbacks send events through qt. (c6cb726)
2013-08-05 Mirco Müller
* Fix exporting of boolean extended-attribute in
attributeToQVariant() (73223bd)
2013-08-05 Nick Dedekind
* Allow changing action state (248ae8d)
2013-08-01 Mirco Müller
* Fix exporting of boolean extended-attribute in
attributeToQVariant() (c458dff)
2013-07-31 Nick Dedekind
* removed debug code (27e7c3b)
2013-07-30 Nick Dedekind
* Added menu action updateState (37e6246)
* Added action name (56374f1)
* merged with parent (559df4b)
* Add action role (replacing actionState role) (d1c96de)
* merged with trunk (c796dd5)
2013-07-30 Lars Uebernickel
* Set model qdata on items instead of the muxer (d47194b)
2013-07-30 Nick Dedekind
* Add ActionStateParser (01d57d8)
* unitymenumodel: lookup themed icon before turning it into a uri
(ed4b694)
2013-07-26 Lars Uebernickel
* unitymenumodel: add get() (16b480d)
* Expose the state of a menu item's action in model.actionState
(d57caa6)
2013-07-25 Lars Uebernickel
* Fix crash in UnityMenuModel::menuItemChanged (58afcb8)
* examples/unityqmlmenumodel.qml: add license header (57f5b07)
* examples/unitymenumodel.qml: update to newest API (192e9c8)
* unitymenumodel: expose type and extended attributes to qml
(ca81974)
2013-06-25 Lars Uebernickel
* unitymenumodel: add support for icons (6aaafd5)
2013-06-24 Lars Uebernickel
* Remove unityqmlmenumodel (050958c)
* unitymenumodel: allow setting multiple prefixed action groups
(3dd6f65)
* unitymenumodel: set free func on GSequence (1bc2427)
* unitymenumodel: use g_clear_object (7b06205)
* unitymenumodel: remove forSubMenu (edad406)
* unitymenumodel: move role enum into .cpp (f59e06e)
* unitymenumodel: remove redundant priv functions (a74628a)
* Move unityqmlmenumodel's properties to unitymenumodel (bf4e73f)
2013-06-07 Automatic PS uploader
* Releasing 0.2.6daily13.06.07-0ubuntu1 to ubuntu. (52b1700)
* Releasing 0.2.6daily13.06.07-0ubuntu1, based on r68 (a251896)
2013-06-06 Alberto Mardegan
* Use invalid index as root index (2c5855c)
2013-06-05 Lars Uebernickel
* unitymenumodel: call init in the the constructor that is meant to
be used from c++ (45ffd91)
* unitymenumodel: add support for submenus (7892fd9)
* unitymenumodel: add activate() (e735d95)
* Link against the qml module (692926c)
2013-06-04 Lars Uebernickel
* unitymenumodel: expose isSeparator (00885c1)
* examples/exportmenu.py: use g_bus_own_name to avoid race (2a01b1c)
* unitymenumodel: watch the bus name (9f9560d)
* Add qml example for UnityMenuModel (b1009a8)
* CMakeLists.txt: explicitly specify qml include path (5503064)
* Introduce UnityMenuModel and UnityQmlMenuModel (4fc790c)
2013-05-23 Alberto Mardegan
* style (8157af2)
2013-05-20 Alberto Mardegan
* Use invalid index as root index (c5bcb29)
2013-05-03 Automatic PS uploader
* Releasing 0.2.6daily13.05.02-0ubuntu1 to ubuntu. (885710f)
2013-05-02 Automatic PS uploader
* Releasing 0.2.6daily13.05.02-0ubuntu1, based on r66 (cfcd397)
2013-04-23 Mathieu Trudel-Lapierre
* Don't build on powerpc (qtdeclarative5 isn't available there).
(2701b12)
* Don't build binary packages on powerpc; qtdeclarative5 isn't
available; so explicitly list the architectures we can
build on. (47deee0)
2013-04-19 Mathieu Trudel-Lapierre
* Bootstrap package. (4a5edf4)
* fix revision for bootstap (964f03e)
* bootstrap (31ddbce)