aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: f22f367b1b6689dc21c640746a811906179dab56 (plain)
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
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2020-08-18 14:07:08 +0200 Mike Gabriel

	* release 0.8.0 (HEAD -> master, tag: 0.8.0)

2020-08-15 13:22:20 +0200 Marius Gripsgard (566e0e1)

	* Merge branch 'sunweaver-pr/move-over-to-ayatana-indicators'

2020-08-15 12:13:48 +0200 Mike Gabriel (2361b98)

	* CMakeLists.txt: Introduce shipping PROJECT_VERSION in upstream code
          (not just in debian/changelog, which gets removed during
          tarball creation).

2020-08-15 12:09:08 +0200 Mike Gabriel (8954090)

	* Move over qmenumodel into the Ayatana Indicators project, upstream
          version bump preparation.

2020-08-15 12:05:36 +0200 Mike Gabriel (617c181)

	* debian/control: Add myself to Uploaders: field.

2020-08-15 11:45:39 +0200 Mike Gabriel (a05e8b1)

	* Merge branch 'ayatana-type'

2020-08-15 01:16:52 +0200 Marius Gripsgard (fa430b5)

	* Support ayatana type

2020-08-15 01:04:38 +0200 Marius Gripsgard (a17ce34)

	* Use CoverageReport from cmake-extras

2020-08-15 01:03:06 +0200 Marius Gripsgard (3c9b1ce)

	* Correct debian control file

2020-08-15 01:02:42 +0200 Marius Gripsgard (0e71197)

	* Cleanup bzr

2020-08-15 00:16:05 +0200 Marius Gripsgard (e21000a)

	* Merge branch 'xenial_-_patches' of
          https://github.com/z3ntu/qmenumodel

2020-05-18 19:48:58 +0200 Luca Weiss (b420ba1)

	* Remove use of the deprecated QModelIndex::child function

2020-05-18 19:47:51 +0200 Luca Weiss (bca9dd3)

	* Add missing header

2018-07-27 21:18:57 +0200 Florian Leeber (30e3dc5)

	* Merge pull request #2 from vanyasem/master

2018-06-20 02:46:53 +0300 Ivan Semkin (276a033)

	* Fix build with Qt 5.11_beta3 (dropping qt5_use_modules)

2017-12-27 07:12:36 +0100 Marius Gripsgard (f236743)

	* Build for xenial and bump version

2017-12-27 07:11:56 +0100 Marius Gripsgard (3463ebe)

	* Add Jenkinsfile

2017-04-04 11:27:38 +0000 Bileto Bot (760d505)

	* Releasing 0.2.12+17.04.20170404-0ubuntu1

2017-04-04 11:27:05 +0000 Albert Astals Cid (05133b2)

	* Add a return true

2017-04-03 10:16:58 +0200 Albert Astals Cid (0fd82be)

	* Add a return true

2017-03-16 16:56:06 +0000 Bileto Bot (42ba9cd)

	* Releasing 0.2.12+17.04.20170316.1-0ubuntu1

2017-03-16 16:55:36 +0000 Albert Astals Cid (1e6ebcc)

	* Use submenu-enabled for those items that don't have an action (if
          it exists) (LP: #1670694)

2017-03-16 16:55:30 +0000 Bileto Bot (f0aa8c3)

	* Add UnityMenuModel::aboutToShow ((LP: 1664578)

2017-03-16 16:55:18 +0000 Albert Astals Cid (e2b335b)

	* Batch add and removes into the model

2017-03-16 16:50:24 +0100 Albert Astals Cid (5c4aae1)

	* 0 -> G_MAXINT as found by Charles

2017-03-16 16:27:47 +0100 Albert Astals Cid (4216eb7)

	* Fix c&p, this ref should be unref

2017-03-16 10:24:11 +0100 Albert Astals Cid (8c08013)

	* Review improvements

2017-03-08 10:12:31 +0100 Albert Astals Cid (c4855ff)

	* Use submenu-enabled for those items that don't have an action (if
          it exists)

2017-03-07 13:08:32 +0100 Albert Astals Cid (4e10e84)

	* Increase version because of new api

2017-03-06 15:55:12 +0100 Albert Astals Cid (7579572)

	* Call about to show for those items that have a qtubuntu-tag
          property

2017-02-28 17:48:40 +0100 Albert Astals Cid (9058e74)

	* valign

2017-02-28 17:43:28 +0100 Albert Astals Cid (87ea781)

	* Batch add and removes into the model

2017-01-10 06:41:53 +0000 Bileto Bot (2eaa36e)

	* Releasing 0.2.11+17.04.20170110.1-0ubuntu1

2017-01-10 06:41:09 +0000 Bileto Bot (ab9f997)

	* * Added shortcut hasSubmenu and roles to UnityMenuModel * Added
          actions property to Group

2016-12-09 17:11:42 +0000 Nick Dedekind (a9c7379)

	* added to changelog

2016-12-09 17:10:27 +0000 Nick Dedekind (6be5a58)

	* fixed version file

2016-12-09 17:06:25 +0000 Nick Dedekind (69093dc)

	* merged with trunk

2016-11-16 10:42:18 +0000 Bileto Bot (89f2b36)

	* Releasing 0.2.10+17.04.20161116-0ubuntu1

2016-11-16 10:41:44 +0000 Marco Trevisan (Treviño) (9884a79)

	* converter: cleanup and add support for more variant types

2016-11-16 10:41:28 +0000 Florian Boucault (9d914ff)

	* Crossbuilding fixes.

2016-10-26 17:28:36 +0000 Bileto Bot (24f649f)

	* Releasing 0.2.10+17.04.20161026.2-0ubuntu1

2016-10-26 17:28:07 +0000 Bileto Bot (662f263)

	* Add ability to activate or change state of an action by variant
          string

2016-10-26 14:58:18 +0200 Marco Trevisan (Treviño) (352a770)

	* converterTest: add content conversions back and further from
          gvariant

2016-10-26 14:29:33 +0200 Marco Trevisan (Treviño) (210cae9)

	* converter: properly set the QByteArray using ctor, or it will be
          created twice

2016-10-26 14:28:59 +0200 Marco Trevisan (Treviño) (e1ee47e)

	* converterTest: add conversion to GVariant and back to verify
          content is correct

2016-10-25 20:56:40 +0200 Marco Trevisan (Treviño) (d56d0ba)

	* converter: return a variant when the schema is a variant

2016-10-25 20:55:34 +0200 Marco Trevisan (Treviño) (eb6e5b5)

	* converter: verify integer type conversions

2016-10-25 20:38:43 +0200 Marco Trevisan (Treviño) (fc52f84)

	* converter: free schema type on destruction

2016-10-25 20:29:53 +0200 Marco Trevisan (Treviño) (edfe13a)

	* converter: free the strv container

2016-10-25 20:27:12 +0200 Marco Trevisan (Treviño) (64a2113)

	* Merged variant-string-parser into converter-improvements.

2016-10-25 20:23:06 +0200 Lukáš Tinkl (64ac22d)

	* converter: use qUtf8Printable function

2016-10-25 20:01:23 +0200 Marco Trevisan (Treviño) (0d1bfd6)

	* UnityMenuModel: avoid copy on assignment

2016-10-25 19:57:38 +0200 Marco Trevisan (Treviño) (307efb4)

	* UnityMenuModel: use conversion with gschema in unity actions

2016-10-25 16:58:28 +0200 Marco Trevisan (Treviño) (a4c1bb6)

	* converterTest: simplify metatype definitions

2016-10-25 16:50:59 +0200 Marco Trevisan (Treviño) (6d2076c)

	* Converter: add support to String Arrays

2016-10-25 14:06:28 +0200 Marco Trevisan (Treviño) (d25887f)

	* Merging with lp:~3v1n0/qmenumodel/variant-string-parser

2016-10-25 13:37:07 +0200 Marco Trevisan (Treviño) (c314929)

	* ConverterTest: add checks for tuples and lists

2016-10-24 21:21:48 +0200 Marco Trevisan (Treviño) (3509321)

	* Add conversion tests for maps and lists to QVariant

2016-10-24 21:13:30 +0200 Marco Trevisan (Treviño) (3bcc60f)

	* converterTest: add tests for toQVariantFromVariantString

2016-10-24 21:02:38 +0200 Marco Trevisan (Treviño) (abc65a4)

	* convertertest: add tests for converting to QVariant

2016-10-24 20:46:51 +0200 Marco Trevisan (Treviño) (7f78a2c)

	* converterTest: QVERIFY comparison return value

2016-10-22 19:00:49 +0200 Marco Trevisan (Treviño) (3d2c260)

	* remove deprecated g_type_init() calls

2016-10-22 19:00:12 +0200 Marco Trevisan (Treviño) (3897067)

	* ConverterTest: remove C++11 features for now

2016-10-22 18:54:58 +0200 Marco Trevisan (Treviño) (4b495fc)

	* convertertest: create QGVariantType wrapper to avoid
          reinterperating a QString

2016-10-22 18:40:29 +0200 Marco Trevisan (Treviño) (00ddb5f)

	* convertertest: repeat tests using test data

2016-10-22 18:21:35 +0200 Marco Trevisan (Treviño) (81e73a2)

	* ConverterTest: use data in the testSchemaConvert

2016-10-20 16:06:30 +0200 Marco Trevisan (Treviño) (6d2a0aa)

	* ActionGroupTest: add test for activateByVariantString

2016-10-20 12:22:05 +0200 Marco Trevisan (Treviño) (bba640d)

	* ActionGroupTest: split tests depending on they need the helper
          script or not

2016-10-18 17:34:52 +0200 Marco Trevisan (Treviño) (901e9dc)

	* converter: stop looking if w'eve no entryType

2016-10-18 17:27:13 +0200 Marco Trevisan (Treviño) (3def677)

	* Converter: use builders and c++ facilities for schema conversions

2016-10-18 16:48:00 +0200 Marco Trevisan (Treviño) (3bd198e)

	* Converter: use some c++11 facilities for lists

2016-10-18 16:15:55 +0200 Marco Trevisan (Treviño) (d8aa881)

	* ConverterTest: add QVariantList conversion test

2016-10-18 16:09:51 +0200 Marco Trevisan (Treviño) (d3899e6)

	* convertertest: add conversion from map to qvariant check

2016-10-18 15:50:17 +0200 Marco Trevisan (Treviño) (36681ba)

	* Converter: use QMetaType to check integer subtypes

2016-10-18 15:39:20 +0200 Marco Trevisan (Treviño) (c42bc21)

	* Converter: add support for ByteArrayList

2016-10-18 12:53:27 +0200 Marco Trevisan (Treviño) (e87701e)

	* Converter: add bytestring support

2016-10-18 12:40:19 +0200 Marco Trevisan (Treviño) (3edd18d)

	* ConverterTest: add tests for toQVariant

2016-10-18 12:06:35 +0200 Marco Trevisan (Treviño) (894fbb9)

	* convertertest: use better variant map test

2016-10-18 12:06:02 +0200 Marco Trevisan (Treviño) (c3b6823)

	* CMakeLists.txt: we can safely use c++11 here

2016-10-18 11:55:14 +0200 Marco Trevisan (Treviño) (06687a7)

	* QStateAction: add ability to activate or change state by variant
          string

2016-10-18 11:44:04 +0200 Marco Trevisan (Treviño) (1adf4a6)

	* Converter: move parseVariantString here from UnityMenuModel

2016-10-17 10:04:20 +0200 Marco Trevisan (Treviño) (c998da0)

	* convertertest: add tests for [U]LongLong converters

2016-10-17 10:01:14 +0200 Marco Trevisan (Treviño) (f52b497)

	* converterTest: split tests by type

2016-10-15 02:04:05 +0200 Marco Trevisan (Treviño) (33b7533)

	* UnityMenuModel: avoid initializing an empty QVariant if not needed

2016-10-14 17:40:18 +0200 Marco Trevisan (Treviño) (462b842)

	* UnityMenuModel: avoid copying the string to a new std one

2016-10-14 17:30:46 +0200 Marco Trevisan (Treviño) (edc354a)

	* debian/changelog: bump version number

2016-10-14 17:29:10 +0200 Marco Trevisan (Treviño) (1e9cf63)

	* UnityMenuModel add support for activating and changing state with a
          variant string parameter

2016-10-14 17:26:49 +0200 Marco Trevisan (Treviño) (449ac3d)

	* Converter: add support to LongLong and ULongLong

2016-10-04 14:13:36 +0100 Nick Dedekind (a618ff5)

	* version bump

2016-10-04 13:17:20 +0100 Nick Dedekind (388be5b)

	* better boolean check

2016-07-19 22:41:52 +0200 Florian Boucault (c6bba62)

	* Crossbuilding fixes.

2016-03-29 12:57:01 +0000 CI Train Bot (9efd410)

	* Releasing 0.2.9+16.04.20160329-0ubuntu1

2016-03-29 12:56:59 +0000 Nick Dedekind (f2b1959)

	* Use Qt logging categories Fixes: #1562992 Approved by: Daniel
          d'Andrada, PS Jenkins bot

2016-03-29 12:56:53 +0000 Michał Sawicz (2e795a2)

	* Sync gcc 5.1 rebuild version Approved by: PS Jenkins bot

2016-02-23 14:35:57 +0000 Nick Dedekind (4ad6055)

	* only log critical

2016-02-23 14:29:04 +0000 Nick Dedekind (2bf6347)

	* added missing file

2016-02-19 11:06:04 +0000 Nick Dedekind (2291dec)

	* use logging categories

2016-01-15 12:08:41 +0000 Nick Dedekind (97b75c9)

	* Added roles for submenu & shortcut. Added actions

2015-12-14 17:36:13 +0100 Michał Sawicz (df7955d)

	* Sync gcc 5.1 rebuild

2015-09-08 12:38:18 +0100 Nick Dedekind (523db87)

	* accelerators

2015-04-30 19:07:48 +0000 CI Train Bot (e6e4bab)

	* Releasing 0.2.9+15.04.20150430-0ubuntu1

2015-04-30 19:07:45 +0000 Michael Terry (3e5d807)

	* Don't leave a dangling GVariant pointer in GtkMenuTrackerItem,
          which can cause a crash.

2015-04-30 10:35:09 -0400 Michael Terry (1933513)

	* Fix crash from not NULLing a variant that we later might try to
          unref

2015-01-08 13:55:53 +0000 CI Train Bot (19e4949)

	* Releasing 0.2.9+15.04.20150108-0ubuntu1

2015-01-08 13:55:44 +0000 Nick Dedekind (79ef5bc)

	* Add support for overriding QDBusActionGroup state parser Fixes:
          #1385331 Approved by: PS Jenkins bot, Albert Astals Cid

2014-12-10 16:23:27 +0000 Nick Dedekind (7dc65fd)

	* added comment

2014-11-11 15:27:02 +0000 Nick Dedekind (f1b1f9a)

	* bump version

2014-11-11 14:49:40 +0000 Nick Dedekind (0ca199d)

	* Allow override of action state parser

2014-10-13 09:36:50 +0000 CI bot (f3a203b)

	* Releasing 0.2.8+14.10.20141013-0ubuntu1

2014-10-13 09:36:38 +0000 Nick Dedekind (e0ee0a8)

	* Disconnect QDBusActionGroup add/remove/stateChange signals when
          deleting object. Fixes: 1378941 Approved by: Charles Kerr,
          Michael Sheldon, PS Jenkins bot, Lars Uebernickel

2014-10-10 18:28:11 +0100 Nick Dedekind (ec1e10b)

	* disconnect on clear

2014-08-15 16:02:02 +0000 CI bot (49d7bf9)

	* Releasing 0.2.8+14.10.20140815-0ubuntu1

2014-08-15 16:01:50 +0000 Nick Dedekind (8f2a49c)

	* Allow remote URIs to be used from file serialized icons Approved
          by: Sergio Schvezov, PS Jenkins bot

2014-07-29 14:39:50 +0100 Nick Dedekind (eac47df)

	* remove check for native file

2014-07-17 02:04:13 +0000 CI bot (d9a59c0)

	* Releasing 0.2.8+14.10.20140717-0ubuntu1

2014-07-17 02:04:02 +0000 Lars Uebernickel (f7719ce)

	* unitymenumodel: add nameOwner property Fixes: 1308011 Approved by:
          Mirco Müller, PS Jenkins bot

2014-07-15 18:11:16 +0200 Lars Uebernickel (166406a)

	* Update changelog

2014-07-11 12:02:01 +0200 Lars Uebernickel (35c2996)

	* unitymenumodel: add nameOwner property

2014-07-11 12:01:41 +0200 Lars Uebernickel (7be80e6)

	* unitymenumodel: notify when the bus name changes

2014-07-04 07:38:12 +0000 CI bot (018eaeb)

	* Releasing 0.2.7+14.10.20140704-0ubuntu1

2014-07-04 07:38:02 +0000 Nick Dedekind (2ec6160)

	* Unset the UnityMenuActions::model when destroying UnityMenuModel
          Fixes: 1334203

2014-07-04 07:37:52 +0000 Charles Kerr (d83588e)

	* Fix a dangling UnityMenuAction pointer by ensuring it's registered
          with only one menu at a time. Fixes: 1282282

2014-07-01 11:17:23 +0100 Nick Dedekind (4f4fde0)

	* fixed copywrite

2014-07-01 08:05:23 +0100 Nick Dedekind (99e2882)

	* added missing file

2014-06-30 18:42:42 +0100 Nick Dedekind (6d8d26d)

	* unset actions model in destructor

2014-05-14 11:38:43 +0000 CI bot (c7955b4)

	* Releasing 0.2.7+14.10.20140514.1-0ubuntu1

2014-05-14 11:38:35 +0000 Antti Kaijanmäki (b927a95)

	* Add standard "has the property actually changed" check to
          UnityMenuModel::setBusName()

2014-05-08 13:24:22 +0300 Antti Kaijanmäki (802224f)

	* wrap the changelog entry.

2014-05-08 13:19:51 +0300 Antti Kaijanmäki (20eb438)

	* try to fix debian/changelog for the ci train..

2014-05-08 12:53:49 +0300 Antti Kaijanmäki (26a791f)

	* manually merge debian/changelog after a manual upload to the
          archive.

2014-04-02 13:19:02 +0300 Antti Kaijanmäki (bc008a3)

	* Add standard "has the property actually changed" check to
          UnityMenuModel::setBusName()

2014-04-02 13:15:29 +0300 Antti Kaijanmäki (112eb60)

	* revert the last commit.

2014-04-02 09:28:57 +0300 Antti Kaijanmäki (5809d6f)

	* UnityMenuModel::setName: handle empty strings properly.

2014-03-16 09:36:04 -0500 Charles Kerr (0b31bc9)

	* when an action's model changes in UnityMenuAction::setModel(), make
          sure the action unregisters itself from the previous
          model.

2014-03-05 06:54:32 +0000 CI bot (94aac07)

	* Releasing 0.2.7+14.04.20140305-0ubuntu1

2014-03-05 06:54:20 +0000 CI bot (f8a07da)

	* No change rebuild against Qt 5.2.1.

2014-02-28 12:39:58 +0000 Albert Astals (788ebe3)

	* Fix use of un-initialized memory

2014-02-28 13:10:02 +0100 Albert Astals (7b70ef5)

	* Fix use of un-initialized memory

2013-12-13 09:02:47 +0000 Automatic PS uploader (24aa85f)

	* Releasing 0.2.7+14.04.20131213-0ubuntu1 (revision 99 from
          lp:qmenumodel).

2013-12-13 07:41:33 +0000 Automatic PS uploader (09b0f46)

	* Releasing 0.2.7+14.04.20131213-0ubuntu1, based on r99

2013-12-11 12:32:13 +0000 Nick Dedekind (9530a3d)

	* Added dataChange to loadExtendedAttributes function.

2013-12-11 12:04:18 +0000 Nick Dedekind (81b68c9)

	* Added data change to loadExtAttributes

2013-11-25 15:33:34 +0000 Automatic PS uploader (c40c4c2)

	* Releasing 0.2.7+14.04.20131125-0ubuntu1 (revision 97 from
          lp:qmenumodel).

2013-11-25 03:55:02 +0000 Automatic PS uploader (27b7d20)

	* Releasing 0.2.7+14.04.20131125-0ubuntu1, based on r97

2013-11-21 16:34:30 +0200 Marcus Tomlinson (12111d2)

	* Fixed #define guard.

2013-11-06 14:23:49 +0200 Marcus Tomlinson (7332db6)

	* Fixed #define guard

2013-10-16 21:32:35 +0000 Automatic PS uploader (25e6667)

	* Releasing 0.2.7+13.10.20131016-0ubuntu1 (revision 95 from
          lp:qmenumodel).

2013-10-16 02:33:28 +0000 Automatic PS uploader (cf34565)

	* Releasing 0.2.7+13.10.20131016-0ubuntu1, based on r95

2013-10-15 13:57:13 +0000 Nick Dedekind (52d2141)

	* Added pointer checks for items/iterators. (lp#1239394). Fixes:
          https://bugs.launchpad.net/bugs/1239394.

2013-10-14 17:31:14 +0100 Nick Dedekind (c50f57f)

	* removed unnecessary pointer checks

2013-10-14 15:00:44 +0100 Nick Dedekind (e7bfaf1)

	* Added iterator/item pointer checks

2013-10-11 21:31:21 +0000 Gustavo Pichorim Boiko (867693a)

	* Use g_file_get_uri instead of g_file_get_path to make sure the
          URI's percent encoding is properly kept.

2013-10-11 18:00:09 -0300 Gustavo Pichorim Boiko (fa2526b)

	* Use g_file_get_uri instead of g_file_get_path to make sure the
          URI's percent encoding is properly kept.

2013-10-11 10:18:14 +0000 Automatic PS uploader (5ac03ca)

	* Releasing 0.2.7+13.10.20131011-0ubuntu1 (revision 92 from
          lp:qmenumodel).

2013-10-11 04:26:55 +0000 Automatic PS uploader (e47e13a)

	* Releasing 0.2.7+13.10.20131011-0ubuntu1, based on r92

2013-10-01 15:46:27 +0000 Lars Uebernickel (5f66f59)

	* QStateAction: try to maintain the type of the action's state

2013-09-23 18:41:15 +0200 Lars Uebernickel (74a9ba6)

	* QStateAction: try to maintain the type of the action's state

2013-09-20 12:23:02 +0000 Automatic PS uploader (23dee12)

	* Releasing 0.2.7+13.10.20130920-0ubuntu1 (revision 90 from
          lp:qmenumodel).

2013-09-20 10:14:43 +0000 Automatic PS uploader (61b9ea6)

	* Releasing 0.2.7+13.10.20130920-0ubuntu1, based on r90

2013-09-18 08:58:25 +0000 Pete Woods (b6f00b9)

	* Fix memory leak in unitymenumodel

2013-09-17 13:32:59 +0100 Pete Woods (9b9504f)

	* Fix sequence memory leak in unitymenumodel

2013-09-13 19:39:00 +0000 Automatic PS uploader (81648d3)

	* Releasing 0.2.7+13.10.20130913-0ubuntu1 (revision 88 from
          lp:qmenumodel).

2013-09-13 15:15:28 +0000 Automatic PS uploader (d0d6d56)

	* Releasing 0.2.7+13.10.20130913-0ubuntu1, based on r88

2013-09-09 12:57:36 +0000 Mathieu Trudel-Lapierre (958d147)

	* Add changelog for manual upload of 0.2.7+13.10.20130830-0ubuntu2.

2013-09-09 08:22:11 -0400 Mathieu Trudel-Lapierre (71b514b)

	* upload version 0.2.7+13.10.20130830-0ubuntu2

2013-09-04 15:33:11 +0000 Lars Uebernickel (ce35aa4)

	* Use fully namespaced action name in UnityMenuModel::activate and
          for the action role.

2013-09-03 13:17:30 +0200 Lars Uebernickel (e01b6b5)

	* fullActioName: make sure 'name' is valid for the duration of the
          function

2013-09-03 12:02:47 +0200 Lars Uebernickel (9365885)

	* Add UnityMenuAction::index property

2013-09-02 18:35:00 +0200 Lars Uebernickel (2641328)

	* Add UnityMenuModel::getAction

2013-09-02 14:55:08 +0200 Lars Uebernickel (f58b7c7)

	* UnityMenuModel::activate: use gtk_menu_tracker_item_get_action_name

2013-09-02 14:51:38 +0200 Lars Uebernickel (fa058d5)

	* gtk_menu_tracker_item_get_action_name: return full name, including
          namespace

2013-08-30 18:47:56 +0000 Automatic PS uploader (28a4548)

	* Releasing 0.2.7+13.10.20130830-0ubuntu1 (revision 85 from
          lp:qmenumodel).

2013-08-30 18:06:44 +0000 Automatic PS uploader (279b43c)

	* Releasing 0.2.7+13.10.20130830-0ubuntu1, based on r85

2013-08-30 10:13:58 +0000 Nick Dedekind (db40e84)

	* Added UnityMenuAction for "out-of-menu" actions.

2013-08-29 19:04:39 +0000 Automatic PS uploader (751f4fb)

	* Releasing 0.2.7+13.10.20130829.1-0ubuntu1 (revision 83 from
          lp:qmenumodel).

2013-08-29 18:06:45 +0000 Automatic PS uploader (f43d10f)

	* Releasing 0.2.7+13.10.20130829.1-0ubuntu1, based on r83

2013-08-29 11:15:10 +0000 Lars Uebernickel (9acfda5)

	* Remove theme image provider

2013-08-29 10:28:23 +0000 Nick Dedekind (7d013d7)

	* Let Qt manage the destruction of child ActionStateParsers.

2013-08-29 10:45:50 +0100 Nick Dedekind (2eeecef)

	* Let Qt manage deletion of children

2013-08-28 11:19:33 +0000 Automatic PS uploader (64ab9df)

	* Releasing 0.2.7+13.10.20130828.2-0ubuntu1 (revision 80 from
          lp:qmenumodel).

2013-08-28 10:08:37 +0000 Automatic PS uploader (a601032)

	* Releasing 0.2.7+13.10.20130828.2-0ubuntu1, based on r80

2013-08-27 17:12:02 +0000 Lars Uebernickel (4f91a49)

	* Make sure the right qt modules are loaded to make QMenuModel tests
          pass. Fixes: https://bugs.launchpad.net/bugs/1217335.

2013-08-27 17:04:13 +0000 Automatic PS uploader (68e010e)

	* Releasing 0.2.7+13.10.20130827.3-0ubuntu1 (revision 78 from
          lp:qmenumodel).

2013-08-27 17:47:45 +0100 Nick Dedekind (8cc3f9a)

	* merged with trunk

2013-08-27 17:24:38 +0100 Nick Dedekind (ebace67)

	* Review comments

2013-08-27 12:20:22 -0400 Lars Uebernickel (31bdaf0)

	* Make sure the right qt modules are loaded to make QMenuModel tests
          pass

2013-08-27 14:08:52 +0000 Automatic PS uploader (298bf61)

	* Releasing 0.2.7+13.10.20130827.3-0ubuntu1, based on r78

2013-08-26 14:47:42 +0000 Automatic PS uploader (8977be5)

	* Releasing 0.2.7+13.10.20130826-0ubuntu1 (revision 75 from
          lp:qmenumodel).

2013-08-26 14:19:38 +0000 Nick Dedekind (aaa8252)

	* Adds qt event spawning to direct glib main loop callbacks. Fixes:
          https://bugs.launchpad.net/bugs/1183065,
          https://bugs.launchpad.net/bugs/1206991.

2013-08-26 14:08:39 +0000 Nick Dedekind (50563a1)

	* UnityMenuModel::changeState now uses current state parameter type
          as a base for parameter GVariant conversion.

2013-08-26 14:06:47 +0000 Automatic PS uploader (8a3c8c9)

	* Releasing 0.2.7+13.10.20130826-0ubuntu1, based on r75

2013-08-26 13:57:39 +0000 Nick Dedekind (346f5fc)

	* Added int64 & variant types to UnityMenuModel ext attribute
          parsing.

2013-08-22 20:43:49 +0100 Nick Dedekind (d23d848)

	* removed newline

2013-08-22 20:36:50 +0100 Nick Dedekind (9ed4538)

	* Added copywrite headers

2013-08-22 12:56:43 +0100 Nick Dedekind (c274656)

	* Using qt event loop to pass UnityMenuAction events

2013-08-22 13:05:44 +0200 Lars Uebernickel (1439420)

	* Remove theme image provider

2013-08-22 12:03:08 +0100 Nick Dedekind (d912a0a)

	* Added activate/changeState to UnityMenuModel

2013-08-21 21:39:47 +0100 Nick Dedekind (72cd124)

	* Added UnityMenuAction for out-of-line actions. Action muxer copied
          to submenus.

2013-08-20 19:30:09 +0100 Nick Dedekind (d83555e)

	* new unitymenumodel attribute types

2013-08-15 12:48:55 +0100 Nick Dedekind (67394e4)

	* Added toGVariantWithSchema for UnityMenuModel::changeState

2013-08-13 10:32:11 +0000 Automatic PS uploader (bac9f37)

	* Releasing 0.2.7+13.10.20130813-0ubuntu1 (revision 73 from
          lp:qmenumodel).

2013-08-13 10:06:45 +0000 Automatic PS uploader (f26e80d)

	* Releasing 0.2.7+13.10.20130813-0ubuntu1, based on r73

2013-08-13 09:47:15 +0000 Nick Dedekind (1e14a68)

	* Release version 0.2.7.

2013-08-13 10:26:14 +0100 Nick Dedekind (5111d99)

	* version bump

2013-08-13 09:10:02 +0000 Nick Dedekind (a89cb05)

	* Removed UnityMenuAction.

2013-08-12 21:02:50 +0000 Automatic PS uploader (2713de8)

	* Releasing 0.2.6+13.10.20130812-0ubuntu1 (revision 70 from
          lp:qmenumodel).

2013-08-12 21:51:20 +0100 Nick Dedekind (3caade3)

	* Removed UnityMenuAction. Fixed leaks from unitymenumodel.

2013-08-12 18:38:17 +0000 Automatic PS uploader (9d4e931)

	* Releasing 0.2.6+13.10.20130812-0ubuntu1, based on r70

2013-08-12 15:28:57 +0000 Nick Dedekind (d6085f8)

	* Added UnityMenuModel.

2013-08-12 12:33:40 +0200 Lars Uebernickel (94a0809)

	* Add isToggled role

2013-08-12 12:30:21 +0200 Nick Dedekind (6914a54)

	* Use qevents to send between direct glib loop events and qt.

2013-08-12 12:13:00 +0200 Nick Dedekind (3ded9bb)

	* use correct qvariant types for sensitive and isSeparator roles

2013-08-12 10:55:11 +0200 Lars Uebernickel (6bd9b68)

	* Expose isCheck and isRadio roles

2013-08-09 18:52:48 +0100 Nick Dedekind (6251412)

	* use correct qvariant types for sensitive and isSeparator roles

2013-08-09 13:33:39 +0200 Lars Uebernickel (4e1a260)

	* Add parameter to unitymenumodel.action.activate

2013-08-09 13:06:10 +0200 Lars Uebernickel (08a5bb3)

	* Re-add UnityMenuModel::activate()

2013-08-09 10:50:12 +0100 Nick Dedekind (2bbdf4e)

	* glib callbacks pass events through qt.

2013-08-09 09:01:43 +0100 Nick Dedekind (db47d07)

	* moved events to separate file.

2013-08-09 08:10:21 +0100 Nick Dedekind (9be2951)

	* bit of code cleanup

2013-08-08 16:12:57 +0100 Nick Dedekind (c6cb726)

	* Glib callbacks send events through qt.

2013-08-05 14:33:32 +0200 Mirco Müller (73223bd)

	* Fix exporting of boolean extended-attribute in
          attributeToQVariant()

2013-08-05 14:29:26 +0200 Nick Dedekind (248ae8d)

	* Allow changing action state

2013-08-01 18:48:19 +0200 Mirco Müller (c458dff)

	* Fix exporting of boolean extended-attribute in
          attributeToQVariant()

2013-07-31 12:14:53 +0100 Nick Dedekind (27e7c3b)

	* removed debug code

2013-07-30 20:49:44 +0100 Nick Dedekind (37e6246)

	* Added menu action updateState

2013-07-30 18:59:20 +0100 Nick Dedekind (56374f1)

	* Added action name

2013-07-30 12:02:01 +0100 Nick Dedekind (559df4b)

	* merged with parent

2013-07-30 12:23:42 +0200 Nick Dedekind (d1c96de)

	* Add action role (replacing actionState role)

2013-07-30 10:45:01 +0100 Nick Dedekind (c796dd5)

	* merged with trunk

2013-07-30 10:33:36 +0200 Lars Uebernickel (d47194b)

	* Set model qdata on items instead of the muxer

2013-07-30 07:01:48 +0200 Nick Dedekind (01d57d8)

	* Add ActionStateParser

2013-07-30 06:25:22 +0200 Nick Dedekind (ed4b694)

	* unitymenumodel: lookup themed icon before turning it into a uri

2013-07-26 16:29:32 +0200 Lars Uebernickel (16b480d)

	* unitymenumodel: add get()

2013-07-26 15:04:50 +0200 Lars Uebernickel (d57caa6)

	* Expose the state of a menu item's action in model.actionState

2013-07-25 12:52:23 +0200 Lars Uebernickel (58afcb8)

	* Fix crash in UnityMenuModel::menuItemChanged

2013-07-25 10:18:31 +0200 Lars Uebernickel (57f5b07)

	* examples/unityqmlmenumodel.qml: add license header

2013-07-25 06:28:54 +0200 Lars Uebernickel (192e9c8)

	* examples/unitymenumodel.qml: update to newest API

2013-07-25 06:09:59 +0200 Lars Uebernickel (ca81974)

	* unitymenumodel: expose type and extended attributes to qml

2013-06-25 15:39:11 -0400 Lars Uebernickel (6aaafd5)

	* unitymenumodel: add support for icons

2013-06-24 17:04:57 -0400 Lars Uebernickel (050958c)

	* Remove unityqmlmenumodel

2013-06-24 17:02:12 -0400 Lars Uebernickel (3dd6f65)

	* unitymenumodel: allow setting multiple prefixed action groups

2013-06-24 13:09:43 -0400 Lars Uebernickel (1bc2427)

	* unitymenumodel: set free func on GSequence

2013-06-24 12:50:25 -0400 Lars Uebernickel (7b06205)

	* unitymenumodel: use g_clear_object

2013-06-24 12:48:06 -0400 Lars Uebernickel (edad406)

	* unitymenumodel: remove forSubMenu

2013-06-24 12:22:28 -0400 Lars Uebernickel (f59e06e)

	* unitymenumodel: move role enum into .cpp

2013-06-24 12:20:42 -0400 Lars Uebernickel (a74628a)

	* unitymenumodel: remove redundant priv functions

2013-06-24 12:10:56 -0400 Lars Uebernickel (bf4e73f)

	* Move unityqmlmenumodel's properties to unitymenumodel

2013-06-07 09:48:48 +0000 Automatic PS uploader (52b1700)

	* Releasing 0.2.6daily13.06.07-0ubuntu1 to ubuntu.

2013-06-07 02:02:06 +0000 Automatic PS uploader (a251896)

	* Releasing 0.2.6daily13.06.07-0ubuntu1, based on r68

2013-06-06 12:27:08 +0000 Alberto Mardegan (2c5855c)

	* Use invalid index as root index

2013-06-05 17:47:08 -0400 Lars Uebernickel (45ffd91)

	* unitymenumodel: call init in the the constructor that is meant to
          be used from c++

2013-06-05 17:07:05 -0400 Lars Uebernickel (7892fd9)

	* unitymenumodel: add support for submenus

2013-06-05 13:50:12 -0400 Lars Uebernickel (e735d95)

	* unitymenumodel: add activate()

2013-06-05 10:29:43 -0400 Lars Uebernickel (692926c)

	* Link against the qml module

2013-06-04 21:05:40 -0400 Lars Uebernickel (00885c1)

	* unitymenumodel: expose isSeparator

2013-06-04 20:23:22 -0400 Lars Uebernickel (2a01b1c)

	* examples/exportmenu.py: use g_bus_own_name to avoid race

2013-06-04 20:22:08 -0400 Lars Uebernickel (9f9560d)

	* unitymenumodel: watch the bus name

2013-06-04 15:42:16 -0400 Lars Uebernickel (b1009a8)

	* Add qml example for UnityMenuModel

2013-06-04 15:40:43 -0400 Lars Uebernickel (5503064)

	* CMakeLists.txt: explicitly specify qml include path

2013-06-04 15:35:59 -0400 Lars Uebernickel (4fc790c)

	* Introduce UnityMenuModel and UnityQmlMenuModel

2013-05-23 11:44:41 +0300 Alberto Mardegan (8157af2)

	* style

2013-05-20 14:20:58 +0300 Alberto Mardegan (c5bcb29)

	* Use invalid index as root index

2013-05-03 16:17:43 +0000 Automatic PS uploader (885710f)

	* Releasing 0.2.6daily13.05.02-0ubuntu1 to ubuntu.

2013-05-02 22:58:51 +0000 Automatic PS uploader (cfcd397)

	* Releasing 0.2.6daily13.05.02-0ubuntu1, based on r66

2013-04-23 20:55:28 +0000 Mathieu Trudel-Lapierre (2701b12)

	* Don't build on powerpc (qtdeclarative5 isn't available there).

2013-04-23 16:31:19 -0400 Mathieu Trudel-Lapierre (47deee0)

	* Don't build binary packages on powerpc; qtdeclarative5 isn't
          available; so explicitly list the architectures we can
          build on.

2013-04-19 15:01:52 +0000 Mathieu Trudel-Lapierre (4a5edf4)

	* Bootstrap package.

2013-04-19 10:49:55 -0400 Mathieu Trudel-Lapierre (964f03e)

	* fix revision for bootstap

2013-04-19 10:45:43 -0400 Mathieu Trudel-Lapierre (31ddbce)

	* bootstrap

2013-03-29 13:34:16 +0000 Mathieu Trudel-Lapierre (10d7da0)

	* Packaging review for daily release.

2013-03-26 14:52:27 -0400 Mathieu Trudel-Lapierre (43f8630)

	*   - Add Homepage field.   - Extend binary packages descriptions.

2013-03-26 14:47:52 -0400 Mathieu Trudel-Lapierre (3a59b8d)

	* Move libgl-dev as an alternate Build-Depends to libgles2-mesa-dev.

2013-03-25 11:53:28 -0400 Mathieu Trudel-Lapierre (09c56ca)

	* * debian/control:   - Add Vcs-Browser, add comment to developers.  
          - Update Vcs-Bzr. * debian/rules:   - Override dh_install
          to use --fail-missing. * debian/copyright: should be
          LGPL-3, not LGPL-3+.

2013-02-11 18:34:41 +0000 Renato Araujo Oliveira Filho (46f476e)

	* Added missing file (COPYING.LGPL); Updated debian maintainer;
          Update debian scripts to follow Ubuntu standard;. Fixes:
          https://bugs.launchpad.net/bugs/1121721.

2013-02-11 11:41:35 -0300 Renato Araujo Oliveira Filho (f1d16e8)

	* Added missing key ¨Vcs-Bzr" in control file.

2013-02-11 11:36:19 -0300 Renato Araujo Oliveira Filho (0e00948)

	* Fixed COPYING.LGPL file to use LGPL 3

2013-02-11 11:31:37 -0300 Renato Araujo Oliveira Filho (f6d4f68)

	* Added missing file .

2013-02-11 11:30:44 -0300 Renato Araujo Oliveira Filho (eb7de53)

	* Added missing file ".bzr-builddeb/default.conf¨

2013-02-11 11:25:43 -0300 Renato Araujo Oliveira Filho (b0127d3)

	* Fixed variable export in rules file.

2013-02-11 11:24:31 -0300 Renato Araujo Oliveira Filho (8deae77)

	* Fixed source format.

2013-02-11 10:06:05 -0300 Renato Araujo Oliveira Filho (0a72006)

	* Added missing file (COPYING.LGPL); Updated debian maintainer;
          Update debian scripts to follow Ubuntu standard;

2013-01-31 20:02:58 +0000 Renato Araujo Oliveira Filho (54bb804)

	* releasing version 0.2.6.

2013-01-31 19:18:48 +0000 Renato Araujo Oliveira Filho (095aed4)

	* Updated to qt5 final.

2013-01-31 15:11:57 -0300 Renato Araujo Oliveira Filho (08e25df)

	* Added missing dependency.

2013-01-31 12:28:46 -0300 Renato Araujo Oliveira Filho (e5b89ef)

	* Used qmake to retrieve the import dir used to install QML modules.

2013-01-31 11:42:09 -0300 Renato Araujo Oliveira Filho (101c523)

	* Fixed extra '/' in the file path.

2013-01-31 10:43:58 -0300 Renato Araujo Oliveira Filho (b9bbb75)

	* Fixed missing license header.

2013-01-31 01:22:06 -0300 Renato Araujo Oliveira Filho (5a4ff7a)

	* Fixed files missing license header.

2013-01-31 01:14:26 -0300 Renato Araujo Oliveira Filho (35305e3)

	* releasing version 0.2.6

2013-01-18 09:10:29 -0300 Renato Araujo Oliveira Filho (5234489)

	* Updated to qt5 final.

2013-01-15 02:28:41 +0000 Renato Araujo Oliveira Filho (954e6e6)

	* releasing version 0.2.5.

2013-01-14 22:54:40 -0300 Renato Araujo Oliveira Filho (ba32c60)

	* Fixed changelog.

2013-01-15 01:30:39 +0000 Renato Araujo Oliveira Filho (f72cdbb)

	* Fixed "invokeMethod" call to use only the method name instead of
          full signature.

2013-01-14 21:26:04 -0300 Renato Araujo Oliveira Filho (9a4f675)

	* releasing version 0.2.5

2013-01-14 21:22:16 -0300 Renato Araujo Oliveira Filho (f177b47)

	* Fixed "invokeMethod" call to use only the method name instead of
          full signature.

2013-01-14 21:38:29 +0000 Renato Araujo Oliveira Filho (073cbc4)

	* releasing version 0.2.4.

2013-01-14 16:26:55 -0300 Renato Araujo Oliveira Filho (aa7a055)

	* releasing version 0.2.4

2013-01-14 15:57:10 +0000 Renato Araujo Oliveira Filho (c53b046)

	* Implemented QMenuModel as tree model. Sections and SubMenus are
          exported as tree. Fixes:
          https://bugs.launchpad.net/bugs/1090305.

2013-01-14 10:01:57 -0300 Renato Araujo Oliveira Filho (00bd7d4)

	* Used 'invokeMethod' to call slot, to make the code simple.

2013-01-11 16:00:03 -0300 Renato Araujo Oliveira Filho (6a56cd8)

	* Merged mainline.

2013-01-11 18:52:07 +0000 Renato Araujo Oliveira Filho (84b4e66)

	* Added missing license header. Fixes:
          https://bugs.launchpad.net/bugs/1097080.

2013-01-11 11:10:06 -0300 Renato Araujo Oliveira Filho (50efc4d)

	* Added missing license header.

2013-01-11 10:30:01 -0300 Renato Araujo Oliveira Filho (0115b56)

	* Merged mainline.

2013-01-11 09:41:30 -0300 Renato Araujo Oliveira Filho (774f7c4)

	* Removed the use of Qt Widgets from tests.

2013-01-10 15:54:35 -0300 Renato Araujo Oliveira Filho (33147e9)

	* Fixed item removal and insertion. Removed debug messages. Fixed
          tests to work with new tree model structure.

2013-01-03 18:38:23 -0300 Renato Araujo Oliveira Filho (2d050cd)

	* Implmeneted QMenuModel as tree model.

2012-12-17 20:42:27 +0000 Renato Araujo Oliveira Filho (70adf10)

	* releasing version 0.2.3.

2012-12-17 17:06:19 -0300 Renato Araujo Oliveira Filho (7002fc2)

	* releasing version 0.2.3

2012-12-17 18:37:53 +0000 Renato Araujo Oliveira Filho (df3cd0c)

	* Try to keep the module unchanged until the function
          begin[Insert|Remove]Rows is called. Fixes:
          https://bugs.launchpad.net/bugs/1090305.

2012-12-17 08:46:20 -0300 Renato Araujo Oliveira Filho (c34c5af)

	* Added missing test.

2012-12-16 23:00:41 -0300 Renato Araujo Oliveira Filho (64e7281)

	* Fixed model changes and singal.

2012-12-15 10:20:43 -0300 Renato Araujo Oliveira Filho (b601ff7)

	* Removed keywords from VIRTUAL functions.

2012-12-14 22:15:05 -0300 Renato Araujo Oliveira Filho (96a4d9c)

	* Only checks for row index in cache. Used Q_EMIT keywork for
          signals.

2012-12-14 12:03:52 -0300 Renato Araujo Oliveira Filho (9b94a0f)

	* Avoid change rowCount value outside of
          BeginModel[Insert|Remove|Reset] functions

2012-12-12 04:31:43 +0000 Bill Filler (c7cd7a4)

	* fix release number and formatting.

2012-12-11 23:13:00 -0500 Bill Filler (83a2418)

	* releasing version 0.2.2

2012-12-11 16:53:21 +0000 Renato Araujo Oliveira Filho (4b2c268)

	* Fixed model disconnect function. Fixes:
          https://bugs.launchpad.net/bugs/1088518.

2012-12-11 16:07:48 +0000 Renato Araujo Oliveira Filho (edbfcdf)

	* Fixed model disconnect function. Set the model null during the
          disconnection will make sure that the model was cleared
          and the new call of connect will populate the model again.

2012-12-11 11:55:34 +0000 Renato Araujo Oliveira Filho (0f20cc0)

	* Avoid emit signal during the model reset, this can crash qml.

2012-12-11 11:09:49 +0000 Renato Araujo Oliveira Filho (d4ce0d4)

	* Avoid emit signal during the model reset, this can crash qml.

2012-12-11 02:43:08 +0000 Renato Araujo Oliveira Filho (b9e5fb6)

	* Fixed crash during model changes.

2012-12-11 00:51:16 +0000 Renato Araujo Oliveira Filho (0b3bfd9)

	* Fixed crash during model changes.

2012-12-10 15:58:28 +0000 Renato Araujo Oliveira Filho (5c88419)

	* releasing version 0.2.1.

2012-12-10 12:20:13 +0000 Renato Araujo Oliveira Filho (3f548e8)

	* releasing version 0.2.1

2012-12-07 19:27:34 +0000 Renato Araujo Oliveira Filho (afd68a3)

	* Implemented conversion for GVariant and Arrays.

2012-12-07 18:20:53 +0000 Renato Araujo Oliveira Filho (e8b1e40)

	* Implemented conversion for GVariant and Arrays.

2012-12-04 12:34:18 +0000 Olivier Tilloy (94f07ed)

	* releasing version 0.2.

2012-12-04 11:58:24 +0100 Olivier Tilloy (cf798a4)

	* releasing version 0.2

2012-12-04 10:39:31 +0000 Olivier Tilloy (c544a5f)

	* Cache sub-menus.

2012-12-04 09:31:46 +0100 Olivier Tilloy (ac9450d)

	* Better comment.

2012-12-04 09:31:33 +0100 Olivier Tilloy (f9ced66)

	* Add myself to the list of authors.

2012-12-04 09:21:06 +0100 Olivier Tilloy (395a8c6)

	* Add comments to explain non-trivial cache updates.

2012-12-04 09:14:04 +0100 Olivier Tilloy (02cfba5)

	* Add a test to verify that normal menu items are not cached (only
          sub-menus are).

2012-12-04 09:11:18 +0100 Olivier Tilloy (e8927d8)

	* Add a test to verify that the cache is correctly updated after
          multiple insertions and removals.

2012-12-04 08:57:38 +0100 Olivier Tilloy (bf8e579)

	* Updated comments.

2012-12-04 08:53:19 +0100 Olivier Tilloy (50d449d)

	* Compare the exact cache indexes instead of just comparing the size
          of the cache.

2012-12-04 08:34:20 +0100 Olivier Tilloy (af2608a)

	* Simplify test code.

2012-12-04 08:32:24 +0100 Olivier Tilloy (4b57869)

	* Remove useless include.

2012-12-04 08:32:13 +0100 Olivier Tilloy (517c21c)

	* Add myself to the list of authors.

2012-12-04 08:30:24 +0100 Olivier Tilloy (7b2badf)

	* Make the cache a pointer, to enforce const correctness.

2012-12-03 18:52:59 +0100 Olivier Tilloy (2f32994)

	* Simplify the caching mechanism using a a QHash that associates
          indexes (int) to QMenuModel*.

2012-12-03 10:12:02 -0300 Renato Araujo Oliveira Filho (d39a6e1)

	* Udated ignored files list.

2012-12-03 09:36:59 -0300 Renato Araujo Oliveira Filho (5c52963)

	* Changed getLink function to not be const.

2012-12-01 17:37:46 -0300 Renato Araujo Oliveira Filho (15ac92c)

	* QMenuModel now keeps cache of any link element.

2012-11-29 22:39:12 +0000 Renato Araujo Oliveira Filho (6eb5409)

	* releasing version 0.1.9.

2012-11-29 18:12:41 -0300 Renato Araujo Oliveira Filho (85c41ee)

	* releasing version 0.1.9

2012-11-29 12:39:49 +0000 Renato Araujo Oliveira Filho (49810b9)

	* Created auxiliary functions. To allows access the model data from
          JavaScript;.

2012-11-29 09:08:15 -0300 Renato Araujo Oliveira Filho (b3ac378)

	* Used a shorter QObject::connect signature.

2012-11-28 20:19:42 -0300 Renato Araujo Oliveira Filho (08b143c)

	* Created unit test for get data function.

2012-11-28 20:19:14 -0300 Renato Araujo Oliveira Filho (236259b)

	* Optimized get function code.

2012-11-28 20:07:56 -0300 Renato Araujo Oliveira Filho (98ed17e)

	* Merged mainline.

2012-11-23 19:41:15 +0000 Renato Araujo Oliveira Filho (da5a043)

	* releasing version 0.1.8.

2012-11-23 16:17:16 -0300 Renato Araujo Oliveira Filho (8d9b6dc)

	* releasing version 0.1.8

2012-11-23 18:25:47 +0000 Renato Araujo Oliveira Filho (68533d0)

	* Fixed QMenumodel behavior when the GMenuModel is destroyed.

2012-11-23 14:56:22 -0300 Renato Araujo Oliveira Filho (bdc349d)

	* Removed missing function declaration.

2012-11-23 14:41:21 -0300 Renato Araujo Oliveira Filho (aa56c7b)

	* Take care of object ref internally on QMenumodel, instead of
          QDBusMenuModel.

2012-11-23 14:25:39 -0300 Renato Araujo Oliveira Filho (af103eb)

	* Replaced 'reinterpret_cast' for gobject cast when possible.

2012-11-23 15:10:42 +0000 Renato Araujo Oliveira Filho (7cfd1a4)

	* Removed QAction dependency from QStateAction. Exported activate
          function on QStateAction.

2012-11-23 12:03:54 -0300 Renato Araujo Oliveira Filho (f68764a)

	* Merged mainline.

2012-11-23 12:03:07 -0300 Renato Araujo Oliveira Filho (6078bd7)

	* Fixed QMenumodel behaviour when the GMenuModel is destroyed.

2012-11-23 10:22:04 -0300 Renato Araujo Oliveira Filho (5d755f4)

	* Create unit test for name property and activate function.

2012-11-23 12:41:03 +0000 Renato Araujo Oliveira Filho (de8eea6)

	* Added 'TEST_XML_OUTPUT' option on cmake to enable/disalbe test
          output in xml. OBS: The default value is On.

2012-11-23 12:22:57 +0000 Renato Araujo Oliveira Filho (374e999)

	* Implemented support to tuple conversions.

2012-11-23 08:50:51 -0300 Renato Araujo Oliveira Filho (2b54bfb)

	* Fixed code style.

2012-11-22 17:58:56 -0300 Renato Araujo Oliveira Filho (41f6ce5)

	* Added docs on new functions.

2012-11-22 17:48:25 -0300 Renato Araujo Oliveira Filho (193ddd3)

	* Only unref variant if its is valid.

2012-11-22 17:39:25 -0300 Renato Araujo Oliveira Filho (c377489)

	* Implemented support to tuple conversions.

2012-11-22 17:04:03 -0300 Renato Araujo Oliveira Filho (560f14f)

	* Added 'TEST_XML_OUTPUT' option on cmake to enable/disalbe test
          output in xml. OBS: The default value is On.

2012-11-22 16:13:02 -0300 Renato Araujo Oliveira Filho (a745160)

	* Removed QAction dependecy from QStateAction. Exported activate
          function on QStateAction.

2012-11-22 16:17:37 +0000 Renato Araujo Oliveira Filho (04391e9)

	* Fixed memory leak after the service disappear.

2012-11-22 08:57:18 -0300 Renato Araujo Oliveira Filho (a8dec79)

	* Avoid find children recursive during the model cleanup.

2012-11-22 08:05:13 -0300 Renato Araujo Oliveira Filho (f221fee)

	* Moved model children clear to clearModel function.

2012-11-21 10:54:29 -0300 Renato Araujo Oliveira Filho (af61347)

	* Fixed memory leak after the service disapear.

2012-11-20 12:04:25 +0000 Olivier Tilloy (3dec94a)

	* Reimplement roleNames() instead of using setRoleNames(…).

2012-11-19 16:06:21 +0100 Olivier Tilloy (5d33dd5)

	* Reimplement roleNames() instead of using setRoleNames(…).

2012-11-15 02:18:25 +0000 Olivier Tilloy (1430572)

	* releasing version 0.1.7.

2012-11-14 10:44:35 +0100 Olivier Tilloy (368a2e2)

	* releasing version 0.1.7

2012-11-13 17:16:59 -0300 Renato Araujo Oliveira Filho (53dfc2a)

	* Created auxiliary functions. To allows access the model data from
          JavaScript;

2012-11-08 17:38:23 +0000 Renato Araujo Oliveira Filho (1915b09)

	* Updates to get coverage and test results in jenkins.

2012-11-07 09:54:44 -0300 Renato Araujo Oliveira Filho (67680f3)

	* Merged 'lp:~renatofilho/girden/debian-dh'.

2012-11-07 09:54:06 -0300 Renato Araujo Oliveira Filho (e6cddf7)

	* Merged mainline.

2012-11-07 09:16:24 -0300 Renato Araujo Oliveira Filho (664f162)

	* Make the rule 'make check' always enabled.

2012-11-07 09:08:57 -0300 Renato Araujo Oliveira Filho (9dd5954)

	* Appended auto generated xml test output files into ignored list.

2012-11-07 09:07:59 -0300 Renato Araujo Oliveira Filho (6b8fd9e)

	* Updated README file with the new coverage flag.

2012-11-07 11:51:13 +0000 Renato Araujo Oliveira Filho (fc58dd6)

	* Updated debian package to use debhelper instead of cdbs.

2012-11-07 08:43:47 -0300 Renato Araujo Oliveira Filho (987dd97)

	* Merged 'lp:~renatofilho/girden/debian-dh' branch.

2012-11-07 08:43:20 -0300 Renato Araujo Oliveira Filho (cba9178)

	* Merged mainline.

2012-11-07 08:35:52 -0300 Renato Araujo Oliveira Filho (79c1256)

	* Updated tests make file to outpu xml results files.

2012-11-06 12:57:58 -0300 Renato Araujo Oliveira Filho (21a8952)

	* Fixed string comparation on cmake files.

2012-11-06 11:21:48 -0300 Renato Araujo Oliveira Filho (dd3e64c)

	* Skip tests on qemu to avoid crashes.

2012-11-06 09:25:10 -0300 Renato Araujo Oliveira Filho (a086f90)

	* Removed 'xvfb' from the dependency list.

2012-11-02 14:22:35 +0000 Renato Araujo Oliveira Filho (28245a5)

	* Fixed tests to avoid crashing if dbus session is not available.

2012-11-02 12:39:28 +0100 Renato Araujo Oliveira Filho (59dfda6)

	* Fixed tests code to avoid crash if dbus session is not avaliable.

2012-11-01 16:02:37 +0100 Renato Araujo Oliveira Filho (8432596)

	* Uses "QT_QPA_PLATFORM=minimal" to run qt tests.

2012-10-31 17:38:45 +0000 Olivier Tilloy (2e6ccdb)

	* releasing version 0.1.6.

2012-10-31 18:21:58 +0100 Olivier Tilloy (cf0b1b6)

	* releasing version 0.1.6

2012-10-31 17:49:11 +0100 Renato Araujo Oliveira Filho (50600e1)

	* Rename coverage option name.

2012-10-31 16:36:28 +0100 Renato Araujo Oliveira Filho (bf5a53e)

	* Updated dependency list to use python3 packages.

2012-10-31 16:04:16 +0100 Renato Araujo Oliveira Filho (abd20be)

	* Added missing python dependencies.

2012-10-31 15:33:16 +0100 Renato Araujo Oliveira Filho (c9c9d58)

	* Merged mainline.

2012-10-31 15:32:38 +0100 Renato Araujo Oliveira Filho (4aee0f1)

	* Revert last commit.

2012-10-31 13:48:39 +0100 Renato Araujo Oliveira Filho (7f4ba1a)

	* Reverted use of xvfb for tests. (Does not work with opengl)

2012-10-31 13:48:03 +0100 Renato Araujo Oliveira Filho (b4e04e3)

	* Removed QtTestGui include from tests.

2012-10-31 13:09:44 +0100 Renato Araujo Oliveira Filho (49797fd)

	* Added xvfb option on cmake to enable run tests without X running.

2012-10-31 11:51:50 +0100 Renato Araujo Oliveira Filho (07087af)

	* Added missing opengl dependency. Necessary for examples.

2012-10-31 11:10:59 +0100 Renato Araujo Oliveira Filho (485cab8)

	* Removed show widgets functions to avoid problems in the auto
          builder.

2012-10-31 11:09:33 +0100 Renato Araujo Oliveira Filho (89f52ae)

	* Added 'dbus-test-runner' ad build dependency.

2012-10-31 09:37:23 +0000 Olivier Tilloy (521a582)

	* Migrate all the scripts to python3.

2012-10-31 10:23:54 +0100 Renato Araujo Oliveira Filho (bed4cab)

	* Updated rules to avoid warnings during the package build.

2012-10-31 10:21:00 +0100 Renato Araujo Oliveira Filho (7ee5b38)

	* Fixed control file to accept any python3 version.

2012-10-31 09:30:37 +0100 Renato Araujo Oliveira Filho (d7ae33e)

	* Updated debian package to use debhelper instead of cdbs.

2012-10-30 13:53:37 +0000 Renato Araujo Oliveira Filho (e26fff2)

	* Use the correct function "g_action_group_change_action_state" to
          change the action state.

2012-10-30 13:06:35 +0100 Renato Araujo Oliveira Filho (fac3a65)

	* Used utf8 instead of latin1 for strings.

2012-10-30 13:01:18 +0100 Olivier Tilloy (0ad7c83)

	* Merge the latest changes from trunk.

2012-10-30 12:59:37 +0100 Olivier Tilloy (209c95e)

	* Migrate all scripts to python3.

2012-10-30 11:56:37 +0000 Renato Araujo Oliveira Filho (035b608)

	* Replaced gchar <-> QString convertion function, from Latin1 to
          Utf8.

2012-10-30 12:51:31 +0100 Renato Araujo Oliveira Filho (fd715d4)

	* Created function actionActivate on QDbusActionGroup.

2012-10-30 12:32:09 +0100 Renato Araujo Oliveira Filho (2496687)

	* Use the correct function "g_action_group_change_action_state" to
          change the action state.

2012-10-30 12:04:42 +0100 Renato Araujo Oliveira Filho (307b793)

	* Created unit test for utf8 strings.

2012-10-30 12:04:07 +0100 Renato Araujo Oliveira Filho (ed490f2)

	* Replaced string convertion from Latin1 to Utf8.

2012-10-25 13:12:13 +0000 Renato Araujo Oliveira Filho (4d47b26)

	* Changed the 'g_bus_watch_name' flag to auto start the service;.
          Approved by PS Jenkins bot, Olivier Tilloy.

2012-10-24 16:57:15 +0200 Renato Araujo Oliveira Filho (3c1b2d2)

	* Changed the 'g_bus_watch_name' flag to auto start the service;

2012-10-18 16:26:50 +0200 Olivier Tilloy (fef978e)

	* releasing version 0.1.5

2012-10-18 16:25:37 +0200 Olivier Tilloy (fe42b80)

	* Add missing changelog entry.

2012-10-17 15:10:49 +0000 Renato Araujo Oliveira Filho (d46ee24)

	* Implemented conversion for QVariantMap; Created unit test for
          QVariantMap conversion;. Approved by Olivier Tilloy, PS
          Jenkins bot.

2012-10-17 10:43:30 -0300 Renato Araujo Oliveira Filho (cdd910c)

	* Used utf8 instead of latin1 on QString conversion;

2012-10-17 10:41:37 -0300 Renato Araujo Oliveira Filho (c805b48)

	* Used 'G_VARIANT_TYPE_VARDICT' in GVariantBuilder constructor.

2012-10-16 14:30:47 -0300 Renato Araujo Oliveira Filho (cc79785)

	* Merged mainline.

2012-10-16 10:57:24 +0200 Olivier Tilloy (ced307a)

	* releasing version 0.1.4

2012-10-16 07:56:41 +0000 Renato Araujo Oliveira Filho (340e67d)

	* Avoid emit model reset during QMenuModel destructor, to avoid crash
          in QML engine.. Approved by Olivier Tilloy, PS Jenkins
          bot, jenkins.

2012-10-15 17:22:27 -0300 Renato Araujo Oliveira Filho (a98d548)

	* Created unit test for QVariantMap conversion;

2012-10-15 17:22:05 -0300 Renato Araujo Oliveira Filho (7f09723)

	* Implemented conversion for QVariantMap;

2012-10-15 09:54:06 -0300 Renato Araujo Oliveira Filho (5c56d12)

	* Merged mainline.

2012-10-15 12:40:44 +0000 Olivier Tilloy (5999e7a)

	* Expose a C++ library, and separate into 3 binary packages:  -
          libqmenumodel0: C++ library  - libqmenumodel-dev:
          development headers for the C++ library  - qmenumodel-qml:
          QML module. Approved by Renato Araujo Oliveira Filho,
          jenkins.

2012-10-15 11:52:09 +0200 Olivier Tilloy (4366f70)

	* Merge the latest changes from trunk.

2012-10-11 17:02:31 -0300 Renato Araujo Oliveira Filho (e243399)

	* Merged mainline.

2012-10-11 20:01:16 +0000 Ricardo Mendoza (46b559b)

	* Rebuild for armhf. Approved by Florian Boucault, jenkins.

2012-10-11 16:15:30 -0300 Renato Araujo Oliveira Filho (99229ab)

	* Added new generated test files into bzrignore.

2012-10-11 16:15:17 -0300 Renato Araujo Oliveira Filho (9bf1472)

	* Created unit test for crash during model destruction.

2012-10-11 14:42:48 -0430 Ricardo Mendoza (ef7435e)

	* Rebuild for armhf

2012-10-11 17:45:55 +0000 Ricardo Mendoza (0f71225)

	* Bump version to propagate release to the corresponding PPAs.
          Approved by Florian Boucault.

2012-10-11 12:56:53 -0430 Ricardo Mendoza (bcd640b)

	* Bump version for Release

2012-10-11 09:15:32 -0300 Renato Araujo Oliveira Filho (f430d60)

	* Added comments on qml file used in tests.

2012-10-11 11:04:59 +0200 Olivier Tilloy (f04b692)

	* Updated the TODO list: upon Renato’s suggestion, it would be
          interesting to add a ProjectConfig.cmake file.

2012-10-11 10:54:49 +0200 Olivier Tilloy (6504ccc)

	* Merge the latest changes from trunk.

2012-10-10 09:51:12 -0300 Renato Araujo Oliveira Filho (7c27fad)

	* Fixed typo in function name.

2012-10-10 09:49:39 -0300 Renato Araujo Oliveira Filho (5dd33f3)

	* Clenup qml file, removed debug messages and unused code.

2012-10-10 09:47:23 -0300 Renato Araujo Oliveira Filho (1e659ae)

	* Created a new private function "clearModel" instead of change
          signature of "setModel" function.

2012-10-10 12:43:14 +0000 Olivier Tilloy (24faac7)

	* Avoid including C headers (glib/gio) in public headers; use
          "forward declarations" instead.. Approved by Renato Araujo
          Oliveira Filho, jenkins.

2012-10-10 09:41:24 +0200 Olivier Tilloy (92ee9e3)

	* Revert to using g* types, and forward-declare them. This is more
          future-proof.

2012-10-09 18:45:05 +0000 Olivier Tilloy (f8266c8)

	* Reset the navigation history when the connection to the model is
          lost.. Approved by Renato Araujo Oliveira Filho, jenkins.

2012-10-09 15:44:25 -0300 Renato Araujo Oliveira Filho (c07f87e)

	* Fixed crash during model destruction in QML.

2012-10-09 18:37:30 +0200 Olivier Tilloy (bced31c)

	* Avoid including C headers (glib/gio) in public headers; use
          "forward declarations" instead.

2012-10-09 18:29:28 +0200 Olivier Tilloy (f5e0285)

	* Reset the navigation history when the connection to the model is
          lost.

2012-10-09 16:03:11 +0200 Olivier Tilloy (a3c6400)

	* Add a changelog entry to explain the split into 3 binary packages.

2012-10-09 15:52:06 +0200 Olivier Tilloy (69538ac)

	* Add a C++ example that demonstrates the use of libqmenumodel.

2012-10-09 15:24:38 +0200 Olivier Tilloy (35dfc73)

	* Update TODO list.

2012-10-09 13:57:16 +0200 Olivier Tilloy (b3dc371)

	* Add a missing Pre-Depends field to the control file. Fixes a
          lintian error.

2012-10-09 13:34:42 +0200 Olivier Tilloy (b81741d)

	* Ensure dh_makeshlibs ignores the QML module. Fixes an error and two
          warnings in lintian.

2012-10-09 13:32:52 +0200 Olivier Tilloy (3ba2b41)

	* Add extended descriptions for all packages. Fixes lintian errors.

2012-10-08 17:01:04 +0200 Olivier Tilloy (93c81bd)

	* Split the package into 3 packages: libqmenumodel0,
          libqmenumodel-dev, qmenumodel-qml.

2012-10-08 16:25:49 +0200 Olivier Tilloy (d2ec653)

	* Ensure the model is set before advertising the status as
          'Connected'.

2012-10-08 16:25:10 +0200 Olivier Tilloy (bc7eb61)

	* Use the Q_EMIT keyword to emit signals.

2012-10-08 13:45:00 +0200 Olivier Tilloy (07c3252)

	* Ensure libqmenumodel is linked against libglib and libgio.

2012-10-08 13:44:24 +0200 Olivier Tilloy (fa5d7c1)

	* Call g_type_init() in the constructor for QDBusObject. This ensures
          it is always called where needed: clients don’t need to
          invoke it themselves.

2012-10-08 12:37:52 +0200 Olivier Tilloy (a7852ea)

	* Cosmetics: remove trailing spaces.

2012-10-08 11:43:21 +0200 Olivier Tilloy (0186c4a)

	* Add a pkgconfig file for developers.

2012-10-08 11:13:55 +0200 Olivier Tilloy (1fec6fd)

	* Install the shared library and dev headers.

2012-10-08 10:52:20 +0200 Olivier Tilloy (2ebcae8)

	* Make libqmenumodel a shared library.

2012-10-05 15:26:44 +0000 Olivier Tilloy (a03e7e7)

	* Port to Qt5.

2012-10-05 13:26:10 +0000 Olivier Tilloy (c3fbab2)

	* Tweaks to the structure of the code, and added example code..
          Approved by Renato Araujo Oliveira Filho, jenkins.

2012-10-05 15:23:11 +0200 Olivier Tilloy (900b75e)

	* Fixed some deprecation warnings when generating the API
          documentation.

2012-10-05 15:18:01 +0200 Olivier Tilloy (2956675)

	* Fix coverage to ignore all moc files.

2012-10-05 15:13:34 +0200 Olivier Tilloy (82677d0)

	* Use the automoc feature to simplify a lot the build system.

2012-10-05 13:17:59 +0200 Olivier Tilloy (8c51550)

	* Fix packaging for Qt5.

2012-10-05 11:59:50 +0200 Olivier Tilloy (81dbf09)

	* Port to Qt5.

2012-10-05 11:50:07 +0200 Olivier Tilloy (696fba5)

	* Fix source dir for documentation generation.

2012-10-04 17:53:52 +0200 Olivier Tilloy (5fb1863)

	* Fix variant conversion on 32-bits platforms.

2012-10-04 17:42:30 +0200 Olivier Tilloy (795bf87)

	* Renamed source package to 'qmenumodel', and removed useless build
          dependencies.

2012-10-04 17:31:08 +0200 Olivier Tilloy (5292d53)

	* Updated ignore rules.

2012-10-04 17:26:16 +0200 Olivier Tilloy (c81ecae)

	* Updated ignore rules.

2012-10-04 17:26:06 +0200 Olivier Tilloy (9fab6d5)

	* Do not install under "Ubuntu" prefix.

2012-10-04 17:16:14 +0200 Olivier Tilloy (957046e)

	* Ignore clicks on menu items that do not have a submenu.

2012-10-04 17:15:44 +0200 Olivier Tilloy (8e65ebb)

	* Updated TODO list.

2012-10-04 17:15:27 +0200 Olivier Tilloy (3fbfb27)

	* Updated examples/README to reflect name changes.

2012-10-04 17:12:09 +0200 Olivier Tilloy (36cebbb)

	* Rename the source directories.

2012-10-04 16:48:48 +0200 Olivier Tilloy (62d2c4b)

	* Add a TODO file.

2012-10-04 15:53:06 +0200 Olivier Tilloy (1e045bb)

	* Fixed some #include statements.

2012-10-04 15:35:35 +0200 Olivier Tilloy (7a410b5)

	* Add instructions.

2012-10-04 15:35:16 +0200 Olivier Tilloy (af778cf)

	* Minor doc fixes.

2012-10-04 15:20:54 +0200 Olivier Tilloy (4385dad)

	* Merged back doc fixes from Renato.

2012-10-04 10:17:58 -0300 Renato Araujo Oliveira Filho (7961150)

	* Created doc source dir.

2012-10-04 14:52:34 +0200 Olivier Tilloy (e14ab1e)

	* Replace #include statements with forward declarations in
          converter.h.

2012-10-04 13:56:02 +0200 Olivier Tilloy (ba89bb2)

	* Remove useless code from the Converter namespace.

2012-10-04 13:40:02 +0200 Olivier Tilloy (445945d)

	* Add examples.

2012-10-04 12:39:55 +0200 Olivier Tilloy (37dd625)

	* Remove a leftover dependency.

2012-10-04 12:12:13 +0200 Olivier Tilloy (244ec05)

	* Removed leftover examples infrastructure.

2012-10-04 12:08:54 +0200 Olivier Tilloy (c2d5761)

	* Fix a typo.

2012-10-04 12:04:46 +0200 Olivier Tilloy (36426c5)

	* Move the enums into a class that inherits QObject, so they can be
          exposed and used directly from QML.

2012-10-04 10:40:43 +0200 Olivier Tilloy (a9416eb)

	* Fix signal parameter type, unaccessible in QMl otherwise.

2012-10-04 09:31:10 +0200 Olivier Tilloy (facb9bf)

	* Fix a typo.

2012-10-04 08:51:45 +0200 Olivier Tilloy (57b1e3f)

	* Remove the implementation of columnCount. According to the
          documentation
          (http://doc.qt.digia.com/stable/model-view-programming.html#model-subclassing-reference),
          « List models do not provide this function because it is
          already implemented in QAbstractListModel. »

2012-10-04 08:49:47 +0200 Olivier Tilloy (90bd3a7)

	* Fix a typo.

2012-10-04 08:30:40 +0200 Olivier Tilloy (63c4e47)

	* Updated ignore rules.

2012-10-02 18:58:33 +0200 Olivier Tilloy (0ce83ea)

	* Add ignore rules.

2012-09-14 16:54:28 -0300 Renato Araujo Oliveira Filho (759356c)

	* Fixed action state initialization.

2012-09-14 16:11:28 -0300 Renato Araujo Oliveira Filho (ebe349e)

	* Created function to convert from QVariant to GVariant. Moved
          QStateAction controler from QACtionGroup.

2012-09-14 09:46:29 -0300 Renato Araujo Oliveira Filho (2b9cf16)

	* Renamed Converter::parseGVariant.

2012-09-13 18:09:26 -0300 Renato Araujo Oliveira Filho (7dec723)

	* Appended comments on unit test. Added 'valid' property in
          QStateAction.

2012-09-13 14:14:56 -0300 Renato Araujo Oliveira Filho (a03360c)

	* Created class QStateAction to use as GAction proxy.

2012-09-12 16:28:34 -0300 Renato Araujo Oliveira Filho (d2e99cf)

	* Parse extra properties name to remove 'x-' and replace '-' to '_'.

2012-09-12 16:09:38 -0300 Renato Araujo Oliveira Filho (48e027e)

	* Removed invalid examples.

2012-09-12 15:19:18 -0300 Renato Araujo Oliveira Filho (d09eaad)

	* Created debian directory.

2012-09-12 14:48:24 -0300 Renato Araujo Oliveira Filho (9a62817)

	* Created unit test for QDBusActionGroup.

2012-09-12 14:47:26 -0300 Renato Araujo Oliveira Filho (a3aa532)

	* Added QML documentation.

2012-09-11 20:24:27 -0300 Renato Araujo Oliveira Filho (638bcc9)

	* Append the default licence header into source files.

2012-09-11 17:57:08 -0300 Renato Araujo Oliveira Filho (6bacc0d)

	* Splitted qmenumodel plugin in two libraries to make it testable.
          Create unit test for qmenumodel library.

2012-09-06 16:43:27 -0300 Renato Araujo Oliveira Filho (31f8103)

	* Implemented QDBusActionGroup.

2012-09-05 16:15:39 -0300 Renato Araujo Oliveira Filho (0dfd3d4)

	* Initial import.