~timo-jyrinki/ubuntu/quantal/unity-lens-files/ubuntu.660

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
# Generated by Makefile. Do not edit.

2012-09-19  timo.jyrinki@canonical.com

	Release 6.6.0

2012-09-19  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Don't crash on startup if device label or uuid are null.. Fixes: https://bugs.launchpad.net/bugs/1052691. Approved by Andrea Azzarone.

2012-09-19  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Fix crash in the new device handling code caused by null label or uuid.

2012-09-18  Andrea Azzarone  <azzaronea@gmail.com>

	Use uuid+label as volume IDs.. Fixes: . Approved by Pawel Stolowski.

2012-09-18  Andrea Azzarone  <azzaronea@gmail.com>

	Use uuid+label as ID.

2012-09-18  Andrea Azzarone  <azzaronea@gmail.com>

	Use label as volume IDs.

2012-09-17  Andrea Azzarone  <azzaronea@gmail.com>

	Add filesystem icons in the "Folders" category of the files lens.. Fixes: https://bugs.launchpad.net/bugs/713423, https://bugs.launchpad.net/bugs/1046774. Approved by Pawel Stolowski.

2012-09-17  Andrea Azzarone  <azzaronea@gmail.com>

	Use mount point as IDs.

2012-09-06  Andrea Azzarone  <azzaronea@gmail.com>

	Fix warnings.

2012-09-06  Andrea Azzarone  <azzaronea@gmail.com>

	Add preview support for file system icons.

2012-09-05  Andrea Azzarone  <azzaronea@gmail.com>

	Fix manual test.

2012-09-05  Andrea Azzarone  <azzaronea@gmail.com>

	Add space.

2012-09-05  Andrea Azzarone  <azzaronea@gmail.com>

	Merge trunk.

2012-08-18  Andrea Azzarone  <azzaronea@gmail.com>

	Change uri prefix.

2012-08-16  Andrea Azzarone  <azzaronea@gmail.com>

	Add file systems lens in the files lens.

2012-09-13  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Set provide_personal_content flag.. Fixes: https://bugs.launchpad.net/bugs/1049593. Approved by Michal Hruby.

2012-09-13  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Set provides_personal_content flag.

2012-09-03  Jussi Pakkanen  <jussi.pakkanen@canonical.com>

	Filter out dummy 'x-desktop-nautilus' entry in .gtk-bookmarks.. Fixes: https://bugs.launchpad.net/bugs/1044309. Approved by Pawel Stolowski.

2012-09-03  Jussi Pakkanen  <jussi.pakkanen@canonical.com>

	Move filtering to file read function.

2012-09-03  Jussi Pakkanen  <jussi.pakkanen@canonical.com>

	Add comment.

2012-08-31  Jussi Pakkanen  <jussi.pakkanen@canonical.com>

	Filter out x-nautilus-desktop from bookmarks as it is confusing and should not exist in the first place.

2012-08-22  Łukasz 'sil2100' Zemczak  <lukasz.zemczak@canonical.com>

	Release 6.4.0

2012-08-20  Michal Hruby  <michal.mhr@gmail.com>

	Fix the order of the actions to match the design. Fixes: . Approved by Łukasz Zemczak.

2012-08-20  Michal Hruby  <michal.mhr@gmail.com>

	Fix actions order

2012-08-14  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Implemented support for previews.. Fixes: . Approved by Michal Hruby.

2012-08-13  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Preview: use GLib.format_size function instead of custom one.

2012-08-13  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Preview: fixed directory info hint to match latest design - size hint includes size and number of directory items.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Bumped required unity version to 5.93.0.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews: fix setting image_source_uri if it's a bookmark:// uri.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews - fix 'Open' handling for bookmark:// uris.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews - changes to match latest design:
	- modification time provided as preview subtitle
	- size and format are now separated
	- renamed old actions to 'Email', 'Show in Folder' and 'Open'.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews - added exception handling when querying for FileInfo or launching applications.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Renamed GLib file attributes to use FileAttribute namespace - removes new valac warnings.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Make count_directory_items throw GLib.Error and handle it in preview method.

2012-08-10  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Fixed int64 formatting in format_file_size. Expect path in count_directory_items.
	Don't use template formatting in debug() calls.

2012-08-07  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews: fixed wrong formatting for file size affecting small files (<1000 bytes).

2012-08-07  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews: provide modification time/date as string instead of timestamp.

2012-08-07  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews: don't set subtitle. Provide human-readable content type and size in a single info hint, e.g. '127.2 KB, PDF Document'.

2012-08-02  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Preview: don't set icon - only image_source_uri.

2012-08-02  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Implemented 'Email file' preview action.

2012-07-27  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews: handle 'Open' and 'Open folder' actions; provide modification time hint (for now using fs mtime, not zg).

2012-07-26  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Set image_source_uri for local files.

2012-07-25  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Previews: implemented method to count directory items (with total size), optionally recursively.

2012-07-23  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Provide file thumbnail from GLib.FileAttribute.THUMBNAIL_PATH if present; return file icon otherwise.

2012-07-23  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Fix get_modification_time call with new valac.

2012-07-23  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Merged valac fixes.

2012-07-06  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Initial support for previews. Uses GenericPreview and feeds it with file icon, parent directory, size, modification time, content type.

2012-08-10  Michal Hruby  <michal.mhr@gmail.com>

	Release 6.2.0

2012-07-26  Michal Hruby  <michal.mhr@gmail.com>

	Fix compilation issues with latest valac. Fixes: . Approved by Łukasz Zemczak, Pawel Stolowski.

2012-07-20  Michal Hruby  <michal.mhr@gmail.com>

	Fix compilation with Vala 0.16+

2012-07-04  Łukasz 'sil2100' Zemczak  <lukasz.zemczak@canonical.com>

	Change icon paths from 5 to 6.. Fixes: . Approved by .

2012-07-04  Łukasz 'sil2100' Zemczak  <lukasz.zemczak@canonical.com>

	Change icon paths from 5 to 6.

2012-04-12  Michal Hruby  <michal.mhr@gmail.com>

	Release 5.10.0

2012-04-06  Michal Hruby  <michal.mhr@gmail.com>

	Use MOST_RECENT_CURRENT_URI instead of MOST_RECENT_SUBJECTS grouping. Fixes: https://bugs.launchpad.net/bugs/974417. Approved by Andrea Cimitan, Marco Trevisan (Treviño).

2012-04-05  Michal Hruby  <michal.mhr@gmail.com>

	Use current uri grouping

2012-04-05  angeloc  <angelo.compagnucci@gmail.com>

	Added desktop to favourites as requested by design. Fixes: https://bugs.launchpad.net/bugs/837810. Approved by Gord Allott.

2012-04-05  Michal Hruby  <michal.mhr@gmail.com>

	Update manual test

2012-04-05  Michal Hruby  <michal.mhr@gmail.com>

	Merge with trunk

2012-04-05  Michal Hruby  <michal.mhr@gmail.com>

	Fix merge comments

2012-03-16  angeloc  <angelo.compagnucci@gmail.com>

	modified:
	src/folder.vala
	- Using get_parse_name() to get desktop folder name.

2012-03-16  angeloc  <angelo.compagnucci@gmail.com>

	modified:
	src/folder.vala
	- Using File.new_for_path instead path string concatenation
	- Moved desktop folder to the end of favourites list

2012-03-16  angeloc  <angelo.compagnucci@gmail.com>

	modified:
	src/folder.vala
	
	- Fixed file:// prefix for desktop folder

2012-03-16  angeloc  <angelo.compagnucci@gmail.com>

	modified:
	src/folder.vala
	
	- Statically added desktop to favourites bookmark folders.

2012-04-04  Michal Hruby  <michal.mhr@gmail.com>

	Add also directory results to non-empty global searches. Fixes: https://bugs.launchpad.net/bugs/749566. Approved by Gord Allott.

2012-04-04  Michal Hruby  <michal.mhr@gmail.com>

	Add a manual test

2012-04-03  Michal Hruby  <michal.mhr@gmail.com>

	Add also directory results to non-empty global searches

2012-03-23  Michal Hruby  <michal.mhr@gmail.com>

	Post release bump

2012-03-23  Michal Hruby  <michal.mhr@gmail.com>

	Release 5.8.0

2012-03-20  Michal Hruby  <michal.mhr@gmail.com>

	Use libzeitgeist's get_current_uri instead of get_uri.. Fixes: . Approved by Mikkel Kamstrup Erlandsen.

2012-03-20  Michal Hruby  <michal.mhr@gmail.com>

	Add a manual test

2012-03-20  Michal Hruby  <michal.mhr@gmail.com>

	Use get_current_uri instead of get_uri

2012-03-20  Michal Hruby  <michal.mhr@gmail.com>

	Fix URL checking regressions, add tests. Fixes: . Approved by Mikkel Kamstrup Erlandsen.

2012-03-20  Michal Hruby  <michal.mhr@gmail.com>

	Fix URL checking regressions, add tests

2012-03-15  Michal Hruby  <michal.mhr@gmail.com>

	Use Zeitgeist's data to list files from Downloads directory.
	
	This makes sure that search is consistent and privacy settings are honored.. Fixes: https://bugs.launchpad.net/bugs/947856. Approved by Neil J. Patel, Siegfried Gevatter.

2012-03-15  Michal Hruby  <michal.mhr@gmail.com>

	Add a manual test

2012-03-14  Michal Hruby  <michal.mhr@gmail.com>

	Remove the download directory listing method

2012-03-14  Michal Hruby  <michal.mhr@gmail.com>

	Fix a warning

2012-03-14  Michal Hruby  <michal.mhr@gmail.com>

	Use Zeitgeist to get files from Downloads directory

2012-03-15  Michal Hruby  <michal.mhr@gmail.com>

	Monitor Zeitgeist's blacklist to make sure locate search respects privacy settings.. Fixes: https://bugs.launchpad.net/bugs/955229. Approved by Neil J. Patel, Siegfried Gevatter.

2012-03-15  Michal Hruby  <michal.mhr@gmail.com>

	Add manual test

2012-03-15  Michal Hruby  <michal.mhr@gmail.com>

	Watch Zeitgeist blacklists to make sure locate search respects privacy settings

2012-03-13  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	More robust url validation.. Fixes: https://bugs.launchpad.net/bugs/948086. Approved by Michal Hruby.

2012-03-07  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Fixing codestyle.

2012-03-07  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Splitting regex into const string
	Use OPTIMIZE flag for regexp

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Fixing Regexp glitches.

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Fixes some regexp glitches.

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Make url validation regexp more robust adding TLDs handling, fixes bug #948086

2012-03-13  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Fixes activation of remotely mountable volumes.
	
	I am merge proposing this on behalf of Angelo since there appears to be some LP hiccups.... Fixes: https://bugs.launchpad.net/bugs/773841. Approved by Michal Hruby.

2012-03-13  angeloc  <angelo.compagnucci@gmail.com>

	Merged with trunk, fix for bug 773841

2012-03-07  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Code cleanup, fixing codestyle.

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Added UrlType.UNKNOWN

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Code cleanup

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Changed NORMAL -> WEB for url enum type.
	Fixed wrong parenthesis position.
	Fixed code style.

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Fixed indentation
	Fixed wrong enum type name

2012-03-06  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Merging changes for bug 921665 because of commons.

2012-03-05  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Unified url-checker, with url-mount-checker, url-mount-checker removed.
	Collapsed regexes as much as possible.
	Using an enum to identify url_types.
	Chenged check_url to return the url type.

2012-03-02  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Collapsed wasteful regexes.
	Added url-mount-checker to makefile.

2012-03-02  Angelo Compagnucci  <angelo.compagnucci@gmail.com>

	Dash now understands correctly mountable remote locations (LP: #773841)

2012-03-12  Michal Hruby  <michal.mhr@gmail.com>

	Fix activation of bookmark URIs. Standard URIs now also fall through so unity will activate them (that way they're launched using proper AppLaunchContext).. Fixes: https://bugs.launchpad.net/bugs/921665. Approved by Mikkel Kamstrup Erlandsen.

2012-03-12  Michal Hruby  <michal.mhr@gmail.com>

	Improve readability

2012-03-06  Michal Hruby  <michal.mhr@gmail.com>

	Make sure folders are not duplicated

2012-03-05  Michal Hruby  <michal.mhr@gmail.com>

	Fix activation of bookmark uris

2012-03-12  Michal Hruby  <michal.mhr@gmail.com>

	Post release bump

2012-03-12  Michal Hruby  <michal.mhr@gmail.com>

	Release 5.6.0

2012-03-08  Michal Hruby  <michal.mhr@gmail.com>

	Use locate to make sure we're able to find files which aren't logged by Zeitgeist. Also adds a gsettings schema where this can be easily disabled.
	
	UNBLOCK. Fixes: . Approved by Didier Roche.

2012-03-08  Michal Hruby  <michal.mhr@gmail.com>

	Make sure the manual-test performer uses touch (and didrocks will live happily ever after)

2012-03-08  Michal Hruby  <michal.mhr@gmail.com>

	Add manual test for locate scope

2012-03-02  Michal Hruby  <michal.mhr@gmail.com>

	Filter out backup files and files that are not writable

2012-03-02  Michal Hruby  <michal.mhr@gmail.com>

	Remove an unrelated fix, deserves its own branch

2012-03-02  Michal Hruby  <michal.mhr@gmail.com>

	Simplify cancellable usage

2012-03-02  Michal Hruby  <michal.mhr@gmail.com>

	Use locate to get more hits and make everyone happy

2012-02-17  Michal Hruby  <michal.mhr@gmail.com>

	Release 5.4.0

2012-02-16  Olivier Tilloy  <olivier.tilloy@canonical.com>

	Although unlikely in "normal" use cases, Environment.get_user_special_dir(UserDirectory.DOWNLOAD) may return NULL (see http://developer.gnome.org/glib/stable/glib-Miscellaneous-Utility-Functions.html#g-get-user-special-dir).
	If it does, the files lens won’t display any search results. Instead of letting that happen, just check the result of get_user_special_dir(…), and ignore the downloaded files if it’s NULL.. Fixes: . Approved by Michal Hruby.

2012-02-14  Olivier Tilloy  <olivier.tilloy@canonical.com>

	Fail gracefully if the XDG user directories are not defined, instead of failing to display results in the lens.

2012-02-03  Michal Hruby  <michal.mhr@gmail.com>

	Release 5.2.0

2012-01-30  Michal Hruby  <michal.mhr@gmail.com>

	Fixed missing search update for global search when Zeitgeist pings us. UNBLOCK. Fixes: . Approved by Mikkel Kamstrup Erlandsen.

2012-01-30  Michal Hruby  <michal.mhr@gmail.com>

	Update also GLOBAL search when zg pings us

2012-01-30  Michal Hruby  <michal.mhr@gmail.com>

	Fixes wrong category IDs we use. UNBLOCK. Fixes: . Approved by Mikkel Kamstrup Erlandsen.

2012-01-30  Michal Hruby  <michal.mhr@gmail.com>

	Fix categories we use

2012-01-30  Michal Hruby  <michal.mhr@gmail.com>

	Support selection of multiple filters at once, also simplify various code paths. UNBLOCK. Fixes: https://bugs.launchpad.net/bugs/841847. Approved by Mikkel Kamstrup Erlandsen.

2012-01-30  Michal Hruby  <michal.mhr@gmail.com>

	Remove unused method

2012-01-27  Michal Hruby  <michal.mhr@gmail.com>

	Bump valac requirement

2012-01-27  Michal Hruby  <michal.mhr@gmail.com>

	Add missing commit

2012-01-27  Michal Hruby  <michal.mhr@gmail.com>

	Decrease number of code paths, support selection of multiple filters

2012-01-26  Michal Hruby  <michal.mhr@gmail.com>

	Clean up, don't use 3 different if styles

2012-01-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Implement the new home screen policy. That is; when we don't have a global search show the Recent Files and Downloads categories (in that order), and when we do have a global search show only a Files and Folders category. See also https://code.launchpad.net/~kamstrup/unity/home-lenses/+merge/89669. Fixes: https://bugs.launchpad.net/bugs/885738. Appoved by Michal Hruby.

2012-01-18  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Use clock icon on home screen instead of generic folders icon for the Recent Files category

2012-01-18  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	To avoid category name collisions on the Home screen use Recent Files instead of just Recent for that particular situation

2012-01-17  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add a new collated category Files & Folders that we use in the global search results. Very boring in fact. This should give status quo to what is in Oneiric when we have a non-empty search string ;-)

2012-01-17  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make global search results without a search string display the correct results (that would be Recent files and Downloads)

2012-01-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Sync with trunk

2012-01-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Remember to emit SearchFinished if exiting global search prematurely. Also - fill the model with results on an empty search in global search. Also add the downloads category to the global results when we don't have a search

2012-01-19  Michal Hruby  <michal.mhr@gmail.com>

	Send no-results-hint when there are no results.. Fixes: https://bugs.launchpad.net/bugs/711199. Appoved by Mikkel Kamstrup Erlandsen.

2012-01-19  Michal Hruby  <michal.mhr@gmail.com>

	Add file explaining tests

2012-01-16  Michal Hruby  <michal.mhr@gmail.com>

	Use the no-results-hint

2012-01-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 5.0.0

2012-01-10  Didier Roche  <didier.roche@canonical.com>

	Rebuild against latest libunity rebuild UNBLOCK. Fixes: . Appoved by .

2012-01-10  Didier Roche  <didier.roche@canonical.com>

	dummy commit for ABI rebuild

2012-01-10  Didier Roche  <didier.roche@canonical.com>

	Get the right icon path for the unity files lens UNBLOCK. Fixes: . Appoved by Mikkel Kamstrup Erlandsen.

2012-01-10  Didier Roche  <didier.roche@canonical.com>

	get the right icon path for the lens

2012-01-09  Didier Roche  <didier.roche@canonical.com>

	Remove the zg daemon check in configure.ac which is not relevant anymore. Fixes: . Appoved by Mikkel Kamstrup Erlandsen.

2011-12-05  Didier Roche  <didier.roche@canonical.com>

	remove zeitgeist daemon .pc check

2011-12-08  Michal Hruby  <michal.mhr@gmail.com>

	Update for libunity-5.0.. Fixes: . Appoved by Mikkel Kamstrup Erlandsen.

2011-12-06  Michal Hruby  <michal.mhr@gmail.com>

	Use new libunity API

2011-11-02  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Bump version to 4.99.99 in prep for the 5.0 series

2011-10-06  Michal Hruby  <michal.mhr@gmail.com>

	Release 0.6.12

2011-10-06  Michal Hruby  <michal.mhr@gmail.com>

	Merge lp:~mhr3/unity-lens-files/fix-868192

2011-10-06  Michal Hruby  <michal.mhr@gmail.com>

	Get rid of some flickering while searching in dash

2011-10-03  Michal Hruby  <michal.mhr@gmail.com>

	Merge lp:~mhr3/unity-lens-files/bug-850714

2011-10-03  Michal Hruby  <michal.mhr@gmail.com>

	Fix bug 850714

2011-09-29  Michal Hruby  <michal.mhr@gmail.com>

	Release 0.6.10

2011-09-29  Michal Hruby  <michal.mhr@gmail.com>

	Merge lp:~kamstrup/unity-lens-files/bookmarks-handling

2011-09-29  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Let errors from bookmark launching bubble up to the main activation handler

2011-09-29  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Handle bookmarks using the default inode/directory handler. This fixes it so we don't open FTP bookmarks in the browser

2011-09-29  Michal Hruby  <michal.mhr@gmail.com>

	Merge lp:~mhr3/unity-lens-files/bug-748915

2011-09-29  Michal Hruby  <michal.mhr@gmail.com>

	Move stripping and casefolding into list_dir_internal

2011-09-29  Michal Hruby  <michal.mhr@gmail.com>

	Check files in Download directory when doing non-empty search

2011-09-29  Michal Hruby  <michal.mhr@gmail.com>

	Bump Vala requirement and get rid of unneeded sed

2011-09-28  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Unset the DBUS_STARTER_ADDRESS and DBUS_STARTER_BUS_TYPE envvars. These were inherited by sub processes which caused odd behaviour. Among other things gedit not starting on the first run, only the second.

2011-09-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.6.8

2011-09-22  Michal Hruby  <michal.mhr@gmail.com>

	Merge from <lp:~mhr3/unity-lens-files/folder-fixes>

2011-09-22  Michal Hruby  <michal.mhr@gmail.com>

	Refactor the bookmark filtering code into the Bookmarks class

2011-09-21  Michal Hruby  <michal.mhr@gmail.com>

	Check if bookmarks exist

2011-09-21  Michal Hruby  <michal.mhr@gmail.com>

	Handle folder searches properly

2011-09-21  Michal Hruby  <michal.mhr@gmail.com>

	Make size filter work

2011-09-20  Michal Hruby  <michal.mhr@gmail.com>

	Make sure we properly filter types on files from the Download folder

2011-09-15  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.6.6

2011-09-15  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge lp:~kamstrup/unity-lens-files/fix-timerange-for-downloads 

2011-09-14  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make the timerange filter work on the Downloads category

2011-09-13  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Sort the Type filter options by their translated labels

2011-09-08  Neil Jagdish Patel  <neil.patel@canonical.com>

	[release] 0.6.4

2011-09-08  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge lp:~kamstrup/unity-lens-files/gi-friendly-api-tweaks

2011-09-08  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Reflect latest API changes in libunity

2011-09-08  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge lp:~njpatel/unity-lens-files/fix-initial-results

2011-09-07  Neil Jagdish Patel  <neil.patel@canonical.com>

	Treat null previous search as a change request

2011-08-25  Neil Jagdish Patel  <neil.patel@canonical.com>

	0.6.2

2011-08-11  Didier Roche  <didier.roche@canonical.com>

	set correct dbus namespace for file lens

2011-08-11  Neil Jagdish Patel  <neil.patel@canonical.com>

	[release] 0.6.0

2011-08-11  Neil Jagdish Patel  <neil.patel@canonical.com>

	update icon

2011-08-10  Neil Jagdish Patel  <neil.patel@canonical.com>

	fix hash table

2011-08-09  Neil Jagdish Patel  <neil.patel@canonical.com>

	fix cat icons

2011-08-08  Neil Jagdish Patel  <neil.patel@canonical.com>

	Fix lens file

2011-08-07  Neil Jagdish Patel  <neil.patel@canonical.com>

	Fix a boo boo

2011-08-07  Neil Jagdish Patel  <neil.patel@canonical.com>

	[merge] Place => Lens

2011-08-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	Search working now too

2011-08-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	make type and time filters work

2011-08-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	global search working

2011-08-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	it compiles

2011-08-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	half-way-house

2011-06-27  Oier Mees  <oier.mees@gmail.com>

	Merge Oier Mees' branch renaming Favorite Folders to Folders

2011-06-08  Oier Mees  <oier.mees@gmail.com>

	Fixed #723866 renaming "Favourite Folders" to "Folders"

2011-05-02  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Olver Sauder's branch lp:~sao/unity-place-files/ignore-hidden-files:
	
	* Don't show hidden files (bug #756280: Files lense should ignore hidden files)

2011-04-29  Oliver Sauder  <os@esite.ch>

	Optimized file hidden and exists test

2011-04-27  Oliver Sauder  <os@esite.ch>

	Ignore hidden files (Closes: #756280)

2011-04-12  Didier Roche  <didier.roche@canonical.com>

	merge sladen's new export asset (LP: #745555)

2011-04-11  Paul Sladen  <sladen@ubuntu.com>

	* Add cropped + renamed icon from upstream
	Unity Design team asset dump.  These are
	in bitmaps form:
	+ files.png
	(LP: #741804, #745555, #745647)
	* This icon has been re-cropped/re-named to hopefully
	what it should be.

2011-03-24  Didier Roche  <didier.roche@canonical.com>

	scale to 48x48

2011-03-24  Didier Roche  <didier.roche@canonical.com>

	Merge sladen's asset change (LP: #704997)

2011-03-24  Paul Sladen  <sladen@ubuntu.com>

	overwrite files.png with unity/resources/find_files.png (LP: #704997)

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.4.46

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's branch lp:~kamstrup/unity-place-files/url-launcher:
	
	* In *global* search aka Dash search, and not in dedicated file search; you can now enter a URL or something that resembles a web address and the first hit will launch that URL in your prefered browser

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	In *global search* (not dedicated file search) check if the input string looks like a HTTP(S) URL and add a link for opening it if it does

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's branch lp:~kamstrup/unity-place-files/auto-update:
	
	* Automatically update the results model for the place entry when Zeitgeist notifies us of updates. In case we are inactive we'll simply mark ourselves dirty and do the update once we're put back in active state (ie the files place is shown by Unity)
	
	* Bump libzeitgeist dep to 0.3.7 to get latest VAPI fixes for ZeitgeistMonitor
	
	* Bump libunity dep to 3.6.3 (which should have been done a while ago) in order to get the PlaceSearch.finished() signal

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Automatically update the result model for the place entry if Zeitgeist notifies us about changes. If we're marked inactive we'll simply mark our selves as dirty and do the refresh once we're marked active again.

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Wire up to change signals from Zeitgeist on any file:// related event. This is still not triggering an update of our state, that's the next step

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Require latest libzeitgeist in order to get the fixed VAPI for ZeitgeistMonitor
	
	Require latest libunity (which we should have done a while ago) in order to get the PlaceSearch.finished() method

2011-03-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's branch lp:~kamstrup/unity-place-files/folder-search:
	
	* Make bookmarked folders searchable

2011-03-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make bookmark searching in global searches work

2011-03-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Bookmarks are now searchable and placed in the Top Results section when matches are found

2011-03-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Factor out bookmarks logic into its own class

2011-03-21  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's branch lp:~kamstrup/unity-place-files/finished-signal:
	
	* Call PlaceSearch.finished() when done searching

2011-03-21  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Call PlaceSearch.finished() to drop a hint for the Unity shell when we are done searching

2011-03-17  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2011-03-17  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.44 (bumping Dee dep to 0.5.16)

2011-03-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Don't count a pure whitespace string as a valid search. This fixes bug #732746 '"Your search did not match any files" when I haven't searched yet'

2011-03-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Don't show the "Search did not match any files" and "Search the web" messages in global aka Dash searches

2011-03-14  Didier Roche  <didier.roche@canonical.com>

	add SearchHint entry (LP: #733897)

2011-03-10  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2011-03-10  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Relase 0.5.42

2011-03-10  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Rename the Favorite Folder group to just Folders

2011-03-07  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Marco Biscaro's branch lp:~marcobiscaro2112/unity-place-files/fixes-727672:
	
	* Fix the path the files.png icon is looked up in

2011-03-02  Marco Biscaro  <marcobiscaro2112@gmail.com>

	Changing the folder where files.png is looked for.

2011-03-07  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2011-03-07  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.40

2011-03-07  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Disable folder browsing -( But it's cool. Nautilus only takes 10s to start on my netbook.

2011-03-07  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	The Xapian query parser (used by the Zeitgeist FTS Extension) seems to handle hyphens in a special way, namely that it forces the joined tokens into a phrase query no matter if it appears as the last word in a query and we have the PARTIAL flag set on the query parser. This makes 'unity-p' not match 'unity-package-search.cc' etc.

2011-03-04  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make the message for empty sections translation friendly

2011-02-24  Didier Roche  <didier.roche@canonical.com>

	remove dbusmenu

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.38

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge lp:~kamstrup/unity-place-files/reentrancy-hack:
	
	* Fixes reentrancy issues when multiple slow searches where issued rapidly causing the results models to get in undefined states
	
	* Fixes potential dupes when searching inside the files place
	
	* Fixes warnings about models out of sync on startup
	
	* Fixes missing group definitions for global search
	
	* Fixes inconsistent search results in global aka Dash searches
	
	* Don't do existence checks, thumbnail-, or mimetype checks on remote files - that is very sloooooow

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	A new and dedicated code path for global searches they are just very different in nature compared to the dedicated file search. The generic codepath was simply to complex to maintain.

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Properly filter out dupes between Top Results and time grouped hits
	
	Remove some debugging/profiling statements

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Simplify the search reentrancy fix a lot by using g_object_freeze/thaw_notify() to prevent concurrent updates of the search

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix deduplication between Top Results and time grouped search results

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	More detailed debug info for removals when filtering the result set

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Sync with trunk as there are some rather nice fixes there...

2011-02-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Don't do *any* IO on GFile's that are not native. Querying whether a HTTP file exists can take a lot of time!
	
	Adds an exessive amount of profiling statements... To be cleaned up

2011-02-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	A hack to try out and figure out if the root cause of bug #701569 is reentrancy when spammed with searches

2011-02-24  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Don't start populating any of our models before *all* of them are in a synchronized state

2011-02-23  Didier Roche  <didier.roche@canonical.com>

	bring the shortcut to the place (LP: #617356)

2011-02-17  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Adapt to API break in libunity revno 37, v3.4.3. Flattening on Unity.Place namespace
	
	Re-add dbusmenu-glib-0.4 to pkg check. We need it for gcc, but not for Vala.

2011-02-11  Didier Roche  <didier.roche@canonical.com>

	dbusmenu-glib isn't needed, it's libunity which leaks the api and should do the check

2011-02-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Include files.png in EXTRA_DIST to unbreak distcheck

2011-02-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Remove now-obsolete explicit --pkg switch for Dbusmenu-0.4

2011-02-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Use Vala package Dbusmenu-0.4 instead of Dbusmenu-Glib-0.4. This bumps dbusmenu-glib-0.4 requirement to >= 0.3.97
	
	Always build with debug symbols

2011-02-04  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge branch I had that updates us to latest libunity

2011-02-04  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Newest libunity pulls in a transitive dep on dbusmenu-glib-0.4. Make sure to link against that everywhere!

2011-02-04  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Depend on very latest ABI from libunity

2011-02-01  Didier Roche  <didier.roche@canonical.com>

	add and distribute files.png (LP: #710790)

2011-01-31  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2011-01-31  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.36

2011-01-31  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Do a sync check for our DBus name instead of relying on GApplication for this because that is racy

2011-01-14  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2011-01-14  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.34

2011-01-13  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix some issues with null-mimetypes making libdee segfault or complain loudly. Thou shalt not add null members in DeeModel

2011-01-13  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Require glib >= 2.27 in order to get GApplication

2011-01-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Remove unused function

2011-01-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Whitespace cleanups

2011-01-10  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix segfault in pathbar_model.prepend() because they where ported properly to new dee api style

2011-01-10  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Coorect initialization and declaration of static globals for the main() function

2011-01-10  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Massive cleanup of the main() entry point

2011-01-06  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Initial stab at GDBus port

2010-12-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Require unity >= 3.2.8. While we'd technically compile against the old API, while break because there has been some twiddling to the linking of the olde libunity

2010-12-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Require dee-1.0 >= 0.5.2 to pick up the correct soname for the new dee abi.
	
	Don't require vala packaes clutter, clutk, and gtk+

2010-12-15  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Port to dee >= 0.5.0 API. I have observed a few crashes related to some g_slice() stuff, I haven't really chased it down - but it's stable enough to run test code against at least...

2010-11-18  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Allow building out-of-tree with jhbuild

2010-10-01  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-10-01  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.32

2010-10-01  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix bug #652840 "Files place is slow to come up and dismiss".
	
	The files place is slow to show on screen and takes > 1s to go away when dismissing it.
	
	This is because there is a "miscommunication" in the DBus interactions, where Unity sends us a barrage of messages that confuses the files daemon. The daemon then emits PlaceEntryInfoChanged (when the info hasnøt really changed) - this then confuses Unity and it sends an even bigger barrage of messages to the files daemon :-)

2010-09-29  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix bug #650908 "Files not sorted according to locale in folder browsing mode".
	
	We where only setting LC_MESSAGES and not LC_ALL in the setlocale() call in the beginning on main(). LC_ALL is required to also set LC_COLLATE to make the glib sorting routines do The Right Thing.

2010-09-29  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix bug #650897 "Unable to activate root section of pathbar in folder browsing mode".
	
	Always mark us dirty (that is - schedule a reload of the model data when the section changes) when we go into folder browsing mode

2010-09-28  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix bug #649598 "Files place not reset after folder browsing mode".
	
	We have some flood gates in place for when Unity send N SetActiveSection() and SetActiveSearch() requests (for N >= 3). These flood gates could prevent our state from being reset when leaving folder browsing mode. This commit makes the logic clearer and more robust.

2010-09-28  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Don't show .hidden or backup~ files in the Downloads group. This fixes bug #649219 "unity-place-files shouldn't show hidden files".

2010-09-27  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-09-27  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.30

2010-09-27  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add files.place.in.in to POTFILES.in
	
	Add new strings in Danish sample translation

2010-09-27  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-09-27  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.28

2010-09-27  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add X-Ubuntu-Gettext-Domain=unity-place-files in the [Desktop Entry] group of the .place file

2010-09-27  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Big optimization: If we're already showing the requested section - don't reload the data from Zeitgeist. Unity is sending 3 SetActiveSection() requests every time we show the files place. This is hammering Zeitgeist quite a lot.

2010-09-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-09-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.26

2010-09-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Rename place file to files.place.in.in and generate files.place.in in configure, and then feed that to @INTLTOOL_PLACE_RULE@. This fixes broken icon path in the .place file introduced when we marked the place file for translation.

2010-09-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge lp:~unity-team/unity-place-files/translatable-place-files:
	
	* Mark .place file for translation

2010-09-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make .place file translatable

2010-09-22  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Bump to require libunity >= 0.2.41 to account for break in the libunity abi

2010-09-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-09-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.24

2010-09-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix typo in message "You search did not match any files" -> "Your ..."

2010-09-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's branch lp:~unity-team/unity-place-files/browse-in-nautilus:
	
	* Fix an unreported bug where browsing a favorite folder, with a custom name (ie. != folder's basename), from the files' home screen would not work because the files' place passed a bad URL to Unity
	
	* Add support for the UnityExtraAction hint, which in this case is used to show a small "Browse the current folder in Nautilus" button, when you are in folder browsing mode

2010-09-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix unreported bug where favorite folders with custom names (ie != folder's basename) could not be browsed in Unity because we created some bad URLs for them

2010-09-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Set UnityExtraAction hint when browsing into a folder

2010-09-16  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add support for launching the default file manager when Activate(".") is called over the bus. This is step one in fixing bug #633201 'Provide an "open this folder" button'

2010-09-14  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-09-14  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.22

2010-09-10  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Sort files and folders alphabetically with locale sensitive collation when in folder browsing mode.
	
	This fixes bug #634769 "Sort files alphabetically in folder browsing mode"

2010-09-09  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-09-09  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.20

2010-09-09  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add missing group icon for "Yesterday"
	
	Fix icon path for group-timerange.svg -> group-daterange.svg

2010-09-09  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Set icon hints for group headers

2010-09-07  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's branch lp:~unity-team/unity-place-files/i18nfixes:
	
	* A Vala @-string was marked for translation. This doesn't work.
	
	* Fix TRANSLATORS comment

2010-09-07  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Don't use Vala @-strings where we want translations. This wont work

2010-09-06  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Too aggresive state resetting was causing double queries against Zeitgeist each time the files place was activated

2010-09-06  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Simplify the Zeitgeist queries by removing some redundant conditions
	
	Apply some fuzzy logic to determine when the active search has actually changed in order to trigger fewer updates. Fx. Don't update when the activse search changes from null to "". Or from "" to " ".
	
	Add some more detailed profiling of the Zeitgeist queries and fix some off-by-a-factor-of-1000000 errors in ms conversions on the debug statements :-)

2010-08-26  Neil Jagdish Patel  <neil.patel@canonical.com>

	Post release bump

2010-08-26  Neil Jagdish Patel  <neil.patel@canonical.com>

	[release] 0.5.18

2010-08-26  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Neil's (and a bit of my own) work lp:~unity-team/unity-place-files/results-view-fixes
	
	* Everything except items on the files place home screen is rendered with UnityFileInfoRenderer. This renders the file metadata to the right of the icon, instead of just the basename below the icon
	
	* Some fuzzy logic to determine a suitable time-range labels for files. Eg "Two hours ago", "Earlier today", "Yesterday". Displayed when using the UnityFileInfoRenderer

2010-08-26  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Sync with trunk.
	
	Fix some reversed logic in Utils.get_time_group() when figuring out how many hours ago we opened some doc

2010-08-25  Neil Jagdish Patel  <neil.patel@canonical.com>

	- Set the correct renderer name for FileInfo
	- Send in some fuzzy time estimates for renderering

2010-08-25  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add build deps on dbus-glib-1 >= 0.88

2010-08-25  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Update return value of activate() from bool to uint32.
	
	Bump depends to Unity trunk

2010-08-25  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Import Danish translation

2010-08-25  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Correct parsing of ~/.gtk-bookmarks with URI escaping and taking explicit naming into account. THis fixes bug #621884 "Doesn't parse Favorites (gtk bookmarks) well"

2010-08-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add .pot file

2010-08-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Bring gettext configure.ac magic more in line with what is described on the Ubuntu wiki

2010-08-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add a GLib.Intl.setlocale(GLib.LocaleCategory.MESSAGES, "") courtesy seb128
	
	Build fixes

2010-08-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's branch lp:~unity-team/unity-place-files/i18n:
	
	* Add i18n support
	
	* Mark all user visible strings for translation
	
	* Make distcheck pass

2010-08-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add AM_GLIB_GNU_GETTEXT

2010-08-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Enable i18n
	
	Make distcheck pass

2010-08-23  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Prettify configure.ac

2010-08-20  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Set the ExpandedGroups hint to make the Favorite Folders group always show all bookmarks as per IX spec

2010-08-20  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make null checking more robust in search_is_invalid()

2010-08-19  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-08-19  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.16

2010-08-19  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Handle empty sections and empty search results as agreed with njpatel

2010-08-17  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make incremental updates to the result set work

2010-08-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Post release version bump

2010-08-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Release 0.5.14
	
	Bump deps to libzeitgeist >= 0.2.6 and dee >= 0.4.2

2010-08-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	When showing the All Files section without a search string we now collapse all files from Zeitgeist into one Recent group instead of the detailed timeline breakdown.

2010-08-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Disable filter searches: They where broken and very much non-trivial to fix

2010-08-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Clean up some compilation warnings

2010-08-12  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Clean up some compile time warnings, due to some missing casting magic from Vala's generated C

2010-08-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	First stab at dynamically filtering the result set when typing a search

2010-08-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Bump deps to Unity >= 0.2.25 and Dee >= 0.4.1

2010-08-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Use properly emblemed folder icons in the Favorite Folders group of the home page

2010-08-09  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Merge Mikkel's  branch lp:~unity-team/unity-place-files/other-section:
	
	* Implement the Other section properly, listing only stuff that is not
	found in the other sections (Documents, Images, Audio, etc)

2010-08-09  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Implement the Other section. This requires Zeitgeist >= 0.5.0 to work properly

2010-08-06  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	When leaving browsing mode set the section we came from in the UnityActiveSection hint, and make sure we load results up for that section
	
	Indentation fixes

2010-08-06  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Merge Mikkel's branch lp:~unity-team/unity-place-files/folder-section:
	
	* Enable the Folders section. Filling it with folders sorted by most recently used
	
	* Add build requirement for Zeitgeist daemon >= 0.5.0 because we need that to sort by folders (aka subject origin) recency and/or popularity

2010-08-06  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Require least version 0.5.0 of Zeitgeist daemon to build. This is needed to support the Folders section

2010-08-06  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Bugfix: Clicking a folder in the pathbar would drop the currently browsed folder from the back/forward history
	
	Enable the Folders section

2010-08-02  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Add some NEWS

2010-08-02  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Post release version bump

2010-08-02  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Release 0.5.12

2010-08-02  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Merge lp:~unity-team/unity-place-files/browser-stack-fixes:
	
	* Fix the back/forward stack in folder browsing mode
	
	* More stable calculation of the pathbar sections (they sometimes had screwed up ordering)
	
	* Add some debug statements here and there and remove the most noisy one

2010-08-02  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Query the file path synchronously (not async) when building the pathbar model, to work around a bug in libdee that otherwise reverses the order of the signals
	
	Add some dedbugging statements to monitor state of the folder browsing

2010-08-02  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Don't commit to back/fwd history when clicking bread crumbs

2010-08-02  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Reflect tweaked browser stack API in libunity

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Fix an off-by-1 when clicking pathbar section

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Don't show hidden or backup files when browsing a folder
	
	Fix infinite loop when clicking pathbar section

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	React to clicks on the pathbar. Clicking the root element (the section you browsed from) will take you out of folder browsing mode

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Split logic of updating the pathbar into a separate (async) method

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	When in browsing mode build pathbar model relative to the home dir (if the path is a subpath of home). Also add as first path element the root section we started the browsing from

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Remove stray semi-colon

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Implement a Downloads group containing the files from the user's Downloads dir, sorted by mtime

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Clean up in comment string

2010-07-29  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Add an Audio section

2010-07-28  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Clear all state when deactivated by the Unity Shell. This makes sure we leave folder browsing mode when the dash is closed

2010-07-28  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Merge lp:~unity-team/unity-place-files/activation-api:
	
	* Implement URI activation spec (we subscribe to activation on inode/directory mimetypes)
	
	* Implement folder browsing
	
	Missing:
	
	* Lots of polish
	
	* Bread crumb navigation via the pathbar is not wired up (but should be shown in Unity)
	
	* In-folder searching
	
	* Currently there is no way to leave browsing mode once you in it! Caveat emptor!

2010-07-28  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Log warnings if Unity triggers unimplemented folder navigation features (notably bread crumb navigation and in-folder searching)

2010-07-27  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Add some docstrings and fixmes to make the logic a bit clearer

2010-07-27  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Add mtime and atime attribs for file querying. We need that we we start sorting downloads by timestamp

2010-07-27  Mikkel Kamstrup Erlandsen  <kamstrup@delight>

	Sync with trunk

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	[feature] When entering folder browsing mode set change sections model to a special prupose pathbar model and keep that updated as we browse

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Elaborate on FIXME from previous commit

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Add FIXME: we need to change the sections_model over to another model we use for rendering the path bar/breadcrumbs. Setting the files.sections_model property will be enough for this

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	[feature] Go into "folder browsing mode" if activate() is called (via DBus) on a valid directory URI
	
	[feature] Wire up back and forward signals from the Browser object
	
	[refactor] Make the Daemon class itself implement the Unity.Place.Activation interface

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Sync with trunk

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Bump unity build dep to 0.2.15

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Sync with trunk

2010-07-01  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	* Enable custom Activation DBus API
	
	* Prepare for exporting the Browser API over DBus (with hints hooked up and everything)

2010-07-01  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Add an [Activation] group to the .place file

2010-07-01  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Install an activation handler which tiggers only on folders

2010-07-22  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Add a Favorites Folder group with the folders defined in .gtk-bookmarks file

2010-07-22  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Post release version bump to 0.5.10

2010-07-19  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Merge branch from Seif Lotfy which checks for existence of files before adding them to the shared model.
	
	NOTE: This is only a temporary measure - and alternative solution being easier on the IO is planned

2010-07-19  Seif Lotfy  <seif@lotfy.com>

	don't show unreachable items

2010-07-16  Neil Jagdish Patel  <neil.patel@canonical.com>

	Bump to next devel version

2010-07-16  Neil Jagdish Patel  <neil.patel@canonical.com>

	[release] 0.5.8

2010-07-15  Neil Jagdish Patel  <neil.patel@canonical.com>

	[merge] Reset search on invalid search string

2010-07-15  Neil Jagdish Patel  <neil.patel@canonical.com>

	Reset search on invalid search string

2010-07-12  Neil Jagdish Patel  <neil.patel@canonical.com>

	Bump for next devel release

2010-07-12  Neil Jagdish Patel  <neil.patel@canonical.com>

	[release] 0.5.6

2010-07-02  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	[bug] Fix switching of sections when the search string is empty or invalid

2010-07-01  Neil Jagdish Patel  <neil.patel@canonical.com>

	Bump for next devel version

2010-07-01  Neil Jagdish Patel  <neil.patel@canonical.com>

	[release] 0.5.4

2010-06-30  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Take the active search string into account when changing section. This closes bug #598082 "Take search string into account when section changes"

2010-06-30  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Merge lp:~unity-team/unity-place-files/browsing-api :
	
	* Update to new libunity API
	
	* Simplify code and callbacks by using closures
	
	* Do truncated matching on the last word of the search string

2010-06-30  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Also append a wildcard to the end of the search string used to find items sorted by time, before this commit it was only applied to the case where we sorted by query relevancy

2010-06-30  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Always append a wildcard to the last word in the query. This fixed bug #599893 "the search filter in files and applications views is buggy"

2010-06-30  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Hook for global search changes was wired up to changes in the place entry search

2010-06-30  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Don't execute a search if the search is empty or null

2010-06-30  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Port to new libunity API in lp:~unity-team/unity/browsing-api

2010-06-29  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Re-enable thumbnail and icon detection code

2010-06-29  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Re-enable thumbnailing and icon detection code in order to take the load of the Unity shell

2010-06-24  Didier Roche  <didier.roche@canonical.com>

	- install daemon binary to lib/
	- add service file
	- install service file for place

2010-06-24  Didier Roche  <didier.roche@canonical.com>

	- install daemon binary to lib/
	- add service file
	- install service file for place

2010-06-24  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Release 0.5.2

2010-06-24  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Disable monitoring of events for now. Since we don't de-dupe the results yet, this is mostly an annoyance. Added FIXME and bug tracker links

2010-06-23  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Release 0.5.1

2010-06-23  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Include a "Top Results" group sorted by relevancy in the top of search results as per spec

2010-06-23  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Time grouping is now to spec modulo using the right strings, and properly calculating the groups beyong the previous year.
	
	Require Zeitgeist 0.2.2 or later since we need some of the newly introduced timestamp handling api
	
	Return more results in all cases

2010-06-22  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Properly expand all variables in config.vala at build time

2010-06-18  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Release 0.5.0

2010-06-18  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Bump libzeitgeist dep to 0.2.1 as 0.2.0 had a bad integer overflow bug causing time range queries to go askew

2010-06-18  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Merge bzr merge lp:~anjali-team/anjali/unity-place-files.groups. Bumps libzeitgeist dep to 0.2.0 and enables a *prototype** implementation of the time based grouping of files. The grouping is not accurate nor to the spec, but is good enough for the gui to have something to play around with for now

2010-06-17  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Bump libzeitgeist dep to 0.2.0

2010-06-17  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	First prototype of time grouping complete. The grouping is *not* complete or to the spec, but is there for Neil to have something to play with

2010-06-17  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Populate the groups model with all months ahead of time because we are going to need them anyway

2010-06-17  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Start adding the right time based grouping

2010-06-18  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Merge bzr merge lp:~anjali-team/anjali/unity-place-files.search. Enabling the SetSearch() and SetGlobalSearch() methods in the DBus API. Note that you need Zeitgeist 0.4.0 or later running with the FTS extension in order for this to work

2010-06-16  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Moce unused, but useful, code ti utils.vala

2010-06-16  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Search results for SetSearch() and SetGlobalSearch() are now added to their respective Dee.SharedModels (thus shared on the bus)

2010-06-16  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	DBus calls to SetSearch() and SetGlobalSearch() getting through and result in an actual call against ZG FTS. The Dee models are still not populated, but we are getting there...

2010-06-16  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Merge lp:~anjali-team/anjali/unity-place-files.sections enabling the sections- and groups- models. You can also update the results model by setting the section of the files place entry

2010-06-14  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Restrict to subjects of URI file:*. We can't solely rely on NFO_FILE_DATA_OBJECT as NFO_REMOTE_FILE_DATA_OBJECT is also a child of this type

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	w00t! sections actually work (not exactly as specced, but somewhere close to that)

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Fix memory corruption due to the fact that GPtrArray doesn't ref objects when you add them. Vala doesn't like that...

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Hook up infrastructure for section shuffling

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Add link to ZG bug reporthttps://bugs.launchpad.net/zeitgeist/+bug/592599

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Build a list of event templates to use in the query indexed by section id

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Grab a Zeitgeist.Index() so we can do full text search on ZG

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Export the Unity.Place.Controller as the last thing in the Daemon constructor to ensure that all the Dee.SharedModels are up when the place is "ready"

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Fill out the sections model and entry goups model on construction of the Daemon

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Upgrade to work against libzeitgeist 0.1.1

2010-06-11  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Refactor: pull Daemon class out into its own .vala file so that main.vala only contains... well... main() :-)
	
	Rename model-schemas.vala to just schemas.vala

2010-06-10  Neil Jagdish Patel  <neil.patel@canonical.com>

	- Update files.place.in with new key names
	- Update main.vala to export with correct name (.Unity. instead of .unity.)

2010-06-09  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Flatten src/ dir and ensure distcheck passes. Clean up unused files. Bump version to 0.3.1

2010-06-09  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Post 0.3.0 tag

2010-06-08  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	No more g_criticals() or g_warnings() on stderr... Vala *really* doesn't like anonymous variables... The following diff makes all the difference:
	
	-      templates.add (new Zeitgeist.Event ());
	+      var event = new Zeitgeist.Event ();
	+      templates.add (event);

2010-06-08  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Almost working again now, modulo Vala oddness

2010-06-08  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Remove the old helper class Unity.Place.Daemon from the build as it's not all handled inside libunity

2010-06-07  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Refactor to new libunity place daemon impl. Works module the fact that libunity doesn't ship a .pc file yet, meaning that automagic fails to detect libunity

2010-06-07  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Auto-magic to generate a config.vala and include that in the build

2010-06-01  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Initial import of (working!!) Vala/DBus prototype of the Place API

2010-05-27  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Silence some cast-warnings from valac (requires yet to be released Dee 0.2.1)

2010-05-27  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Port from DbusModel to Dee

2010-04-29  Mikkel Kamstrup Erlandsen  <kamstrup@hardback>

	Initial project setup of a Unity Place Daemon providing recently used files. At the time of writing we require dbusmodel trunk and libzeitgeist trunk in order to work.