~liuxingcs/unity-china-music-scope/unity-china-music-scope

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

2012-10-01  Timo Jyrinki  <timo.jyrinki@canonical.com>

	Release 6.8.1

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

	Revert r111. Fixes: . Approved by Neil J. Patel.

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

	Revert r111

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

	Implemented support for banshee tracks/albums previews.. Fixes: https://bugs.launchpad.net/bugs/1054720. Approved by Michal Hruby.

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

	Check number of elements when splitting uri in preview & show_in_folder methods.

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

	Support for banshee previews.

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

	add conditional search activation to the remote scope (LP: #1054746). Fixes: https://bugs.launchpad.net/bugs/1054746. Approved by Michal Hruby.

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

	listen to remote change and remove message

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

	comply to latest API

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

	add manual test

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

	dep on correct libunity version

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

	add conditional search activation to the remote scope (LP: #1054746)

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

	Ignore iradio tag (radio stations) when parsing Rhythmbox database; check if track uri is a local file, this prevents unexpected network queries when radio stations are enabled back in the future.. Fixes: https://bugs.launchpad.net/bugs/1049075. Approved by Omer Akram, Jussi Pakkanen.

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

	Added comment to radio stations test.

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

	Ignore iradio tag (radio stations) when parsing Rhythmbox database; check if track uri is a local file, this prevents unexpected network queries
	when radio stations are enabled back in teh future. 

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

	Release 6.8.0

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

	Request higher-resolution images from the U1 music store. Fixes: https://bugs.launchpad.net/bugs/1049568, https://bugs.launchpad.net/bugs/1049593. Approved by Pawel Stolowski.

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

	Increase requested image size for the U1 results

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

	Do not show Internet radio channels in music search results, because previews is not working for them.. Fixes: https://bugs.launchpad.net/bugs/1049651. Approved by Pawel Stolowski.

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

	Do not show radio stations in the Dash, because previews is not working yet.

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

	Use new icons when album cover is missing.. Fixes: https://bugs.launchpad.net/bugs/1049217. Approved by .

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

	Merged trunk.

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

	Use u1-service icon for the 'Download' button in the preview.

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

	Use new album/preview missing icons. 
	Requires new icons in /usr/share/unity/6/album_missing.png and /usr/share/unity/6/album_missing_preview.png.

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

	Use annotated icon in musicstore results. Renamed 'Available for purchase' category to 'More suggestions' and use new icon.. Fixes: https://bugs.launchpad.net/bugs/1049593. Approved by Michal Hruby.

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

	Renamed 'Treat yourself' to 'More suggestions', per design request.

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

	Renamed 'Available for Purchase' category to 'Treat yourself' and use the new icon.

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

	Use annotated icons for u1ms search results.

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-11  Pawel Stolowski  <pawel.stolowski@canonical.com>

	Set price as extra_text of 'Download' action.. Fixes: https://bugs.launchpad.net/bugs/1048649. Approved by Michal Hruby.

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

	Set price & currency as extra_text of 'Download' action for musicstore results.

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

	Detect missing codecs and trigger their installation via gstreamer API.. Fixes: https://bugs.launchpad.net/bugs/1043825. Approved by Michal Hruby.

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

	Use com.canonical.Unity name.

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

	Call HideDash() DBus method on codec installation.

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

	Also set prgname of unity-music-daemon and unity-musicstore-daemon.

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

	Set prgname for music-preview-player

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

	Use GLib's warning/debug functions instead of stderr.

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

	Added manual test for codec installation.

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

	Handle installation of missing codecs.

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

	Improved error handling affecting music preview player.. Fixes: https://bugs.launchpad.net/bugs/1043773. Approved by Michal Hruby.

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

	Added manual test for network connectivity problem with music playback.

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

	Merged error-state branch to handle gstreamer timeout; don't actually introduce ERROR state yet.

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

	Music preview player: support ERROR state, set gstreamer network timeout to a reasonable value.

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

	Preview player client class: removed "reconnect" handling logic as discussed on IRC (not needed).

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

	Preview player client - simplified getting name owner.

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

	Preview player client: watch g-name-owner property instead of using Bus.watch_name.

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

	Merged trunk.

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

	Merged trunk.

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

	Preview player: reset state and progress on ERROR message from gst bus.

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

	Preview: throw/catch PreviewPlayer errors; watch preview client on dbus to know when to reconnect.

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

	Release 6.6.0

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

	Provide video_properties dbus method for video lens.. Fixes: . Approved by Michal Hruby.

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

	Preview player: avoid releasing of the app in video_properties dbus method.

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

	Player - use actual codec name..

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

	Preview player: implemented video_properties DBus call.

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

	Release 6.4.0

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

	Reset progress on play signal.. Fixes: . Approved by Michal Hruby.

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

	Merged trunk.

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

	Preview: reset progress on play signal, otherwise switching to a different track during playback
	may initially show wrong progress.

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

	Merged trunk.

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

	Preview: set playback state immediately in the pause/play signal handlers, rather than
	waiting for the first update from progress callback.. Fixes: . Approved by Michal Hruby.

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

	Preview: set playback state immediately in the pause/play signal handlers, rather than
	waiting for the first update from progress callback.

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

	Added manual tests for rhythmbox and musicstore previews.. Fixes: . Approved by Michal Hruby.

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

	Previews manual tests - fixed/reformatted according to TEST_TEMPLATE.txt from Unity.

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

	Previews - added manual tests for u1ms previews. Small fixes to rhythmbox tests.

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

	Previews - added manual tests for Rhythmbox previews.

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

	Stop playback when preview is closed. Fixes: . Approved by Michal Hruby.

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

	Preview player: after some discussions on IRC, increased inactivity timeout to 1 minute, so the music-preview-player is reused when
	switching between previews. Race condition between play/close is very unlikely after all now.

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

	Preview music player: call app.hold() on play() if app was released by stop(); also decreased
	inactivity timeous to 300 msecs to minimize chances of races between stop and play.

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

	Merged trunk.

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

	Previews - support for closed() signal.

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

	Change renderer for purchasable music. Fixes: . Approved by Pawel Stolowski.

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

	Use FLOW renderer for purchasable apps

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

	Fixed action order for previews. Fixes: . Approved by Michal Hruby.

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

	Previews: change action order as they are expected in reverse order by the UI.

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

	Implementation of previews for Rhythmbox and Musicstore results; Banshee previews are limited (no playback).. Fixes: . Approved by Michal Hruby.

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

	Added musicstore-scope to POTFILES.in/skip files - fixes 'make check' errors.

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

	Removed extra space.

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

	Preview player: report PLAYING with progress = 1.0f on EOS and STOPPED, progress = 0.0f in progress callback to avoid race
	where late progress callback would overwrite STOPPED state.
	Play(uri) call now resumes playback for same uri if it's in paused state.

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

	Preview player service: added 'released' flag to only call GLib.Application.release() once.

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

	Preview client iface: removed set_volume method as it's not supported by at the moment by preview player.

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

	Added comments suggested in the code review.

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

	Fixed typo.

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

	Preview player: set gstreamer state to READY on EOS, otherwise progress callback never stops.

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

	Previews implementation.

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

	Merged trunk.

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

	Musicstore preview: added 'Download' action.

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

	Previews - rhythmbox: use music preview player for single track preview. Ignore preview requests for radio stations.

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

	Previews - rhythmbox: implemented 'Show in Folder' and 'Play' actions for single tracks.

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

	Previews: implemented 'Show in Folder' action for rhythmbox albums.

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

	Preview player: changed DBus name & path to "com.canonical.Unity.Lens.Music.PreviewPlayer" and "/com/canonical/Unity/Lens/Music/PreviewPlayer".

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

	Fixed music preview player compilation warnings. Use GLib.Application DBus-registration functionality.

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

	Merged previews-player branch.

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

	Implementation of standalone preview music player.

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

	Musicstore preview playback: support for music player progress(..) signal - don't pass track model to the player.

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

	First cut at the playback of musicstore previews via preview player DBus API.

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

	Added comment.

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

	Rhythmbox track preview: don't use collate when matching track uris - regular string comparision is sufficient.

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

	Musicstore previews: changed signature of get_album_details method.

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

	Merge vala fixes branch.

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

	Require valac-0.16, not 0.17.2.

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

	Musicstore previews: check if json details data has 'tracks' member rather than attempt to get
	it and check it for null - doesn't produce 
	"Json-CRITICAL **: json_object_get_array_member: assertion `node != NULL' failed" warning.

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

	Initial implementation of musicstore previews.

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

	Merged vala-fixes branch.

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

	Fixed crashes caused by changes in newer vala versions:
	- sort functions in HashTable.sort_with_data doesn't take ref arguments anymore.
	- captured parameters of array type are no more copied implicitly.
	
	Bumped required valac to 0.17.2.

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

	Use proper argument binding instead of plain printf when creating SQL statement for
	album/track details. Prevents SQL errors if strings contain apostrophes or other special characters.

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

	Populate track model for single track preview.

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

	Merged with trunk.

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

	Added 'Play Album' action to Rhythmbox music preview.

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

	Removed sort_with_data change needed by valac>0.14 for now. This will be applied
	at a later time, as for now valac-0.14 remains the default for lenses.

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

	Udated for MusicPreview API changes.

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

	Initial support for Banshee previews. Playback is not supported yet.

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

	Rhythmbox - removed duplicated code that fills in Track data, moved it to get_track method.

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

	Preview single rhythmbox track.

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

	Initial implementation of previews for Rhythmbox, for now only for albums, and with no playback.

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

	Make it not crash when compiled with valac-0.16.

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

	Fix broken categorization. Fixes: . Approved by Pawel Stolowski.

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

	Make tests consistent with other lenses

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

	Fix songs being put into albums category

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

	Release 6.2.0

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

	Fixed compatibility with Valac 0.16. Fixes: . Approved by Łukasz Zemczak, Michal Hruby.

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

	Bumped required valac to 0.16.0
	
	Fixed crashes caused by changes in newer vala versions:
	- sort functions in HashTable.sort_with_data doesn't take ref arguments anymore.
	- captured parameters of array type are no more copied implicitly.

2012-07-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix u1 search results to not seem too random. Lowers mem churn in musicstore scope quite a bit.. Fixes: https://bugs.launchpad.net/bugs/1021656. Approved by Michal Hruby.

2012-07-11  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Make updated musicstore-collection.vala work with Vala 0.14. We re-used variabel names in 2 for-loops inside the same method. Vala 0.14 no likey!

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

	Removed obsolete null checks when adding rows to the results model in the musicstore. DeeModel is null-safe wrt strings these days.

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

	Don't use magic constants

2012-07-06  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Fix u1 search results to not seem too random
	
	This was rooted in the fact that musicsearch.ubuntu.com returns a mix of artists, albums, and tracks in the results. We do not show artists, so if the results contains mainly that, then we're screwed. Luckily newer versions of the webservice contains some parameters to tweak this behaviour. This commit makes us use that.
	
	In addition to using the new musicsearch API I also fixed memory churn quite considerably by removing the need to create a lot of Track/Album objects and do excessive string copying.
	
	Also fixed a bug where we'd pass possibly-null strings into a DeeModel. This could have been the root cause of bug #917974.

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

	Add assertions.vapi to EXTRA_DIST

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

	Release 6.0.0

2012-07-02  Didier Roche  <didier.roche@canonical.com>

	adds local radio detection from rhythmbox. The category will
	only be placed after the "for purchase one" to be unobstrusive (LP: #969697)
	Also fix the non translated "Unknown" album filter appearing for non english
	users (LP: #1009069)
	Add some tests for the parser part (radios and songs). Fixes: https://bugs.launchpad.net/bugs/969697, https://bugs.launchpad.net/bugs/1009069. Approved by Pawel Stolowski.

2012-06-29  Didier Roche  <didier.roche@canonical.com>

	add it to an album if only it's a song, make type_track TypeTrack

2012-06-25  Didier Roche  <didier.roche@canonical.com>

	add tests for the parser

2012-06-05  Didier Roche  <didrocks@ubuntu.com>

	ignore unknown album (or not specified, like for radios, and fix the discared we didn't have in non english language (LP: #1009069)

2012-06-05  Didier Roche  <didrocks@ubuntu.com>

	adding rhythmbox radios to the music lens

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

	Release 5.12.0

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

	Rhythmbox scope: Implement proper album handling. Fixes: https://bugs.launchpad.net/bugs/970509. Approved by Gord Allott, Alex Launi.

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

	Implement proper album handling

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

	Backport the fix to show albums first from the banshee scope

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

	Added rhythmbox's TDB parsing so we'll have more sources of album arts in the lens. Fixes: https://bugs.launchpad.net/bugs/976067. Approved by Gord Allott.

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

	Only add Banshee and Rhythmbox scopes if the respective app is installed

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

	Try to update album art when rhythmbox's tdb changes

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

	Parse the tdb database where RB stores album art

2012-04-17  Mark Tully  <markjtully@gmail.com>

	Added more genres to the genre map. Fixes: https://bugs.launchpad.net/bugs/851424. Approved by Michal Hruby.

2012-04-10  Mark Tully  <markjtully@gmail.com>

	Added more genres to the genre map

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

	Release 5.10.0

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

	Optimize memory allocation. Fixes: https://bugs.launchpad.net/bugs/964684. Approved by Gord Allott.

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

	Use glib's MarkupParser instead of libxml

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

	Optimize memory allocation

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-22  Michal Hruby  <michal.mhr@gmail.com>

	Fix the decade filter in Rhythmbox scope.. Fixes: . Approved by Mikkel Kamstrup Erlandsen.

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

	Add comment

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

	Fix decade filter

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

	Get rid of a workaround for wrong bindings

2012-03-21  David Callé  <davidc@framli.eu>

	Implement a Rhythmbox scope.. Fixes: https://bugs.launchpad.net/bugs/948860. Approved by Michal Hruby, Mikkel Kamstrup Erlandsen, Neil J. Patel.

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

	Update POTFILES

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

	Remove debug

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

	Bump dee dependancy

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

	Use sources in the music lens

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

	A few smaller fixes

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

	Fix genres filter

2012-03-19  David Callé  <davidc@framli.eu>

	Genre filter (almost)

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

	Honour the decade filter

2012-03-19  David Callé  <davidc@framli.eu>

	Get genre (filter option id) for each track

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

	Add inverted index for genre -> genre filter id

2012-03-19  David Callé  <davidc@framli.eu>

	Add albums to results without a search

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

	Display most played tracks when there's no search

2012-03-19  David Callé  <davidc@framli.eu>

	Get the date right

2012-03-19  David Callé  <davidc@framli.eu>

	Add date and play-count to the model

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

	Honour max_results setting

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

	Cleanup

2012-03-17  David Callé  <davidc@framli.eu>

	Add albums (but not playing on the first track)

2012-03-15  David Callé  <davidc@framli.eu>

	Don't double check, the new artwork method will return null if the file doesn't exist

2012-03-15  David Callé  <davidc@framli.eu>

	Hook the new artwork method

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

	Add method to get album-art

2012-03-15  David Callé  <davidc@framli.eu>

	Get user cache dir

2012-03-15  David Callé  <davidc@framli.eu>

	Implement the first two artwork methods : 1)Nautilus thumbnails 2)Search for artwork in .cache/rhythmbox/covers

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

	Make the search method work properly

2012-03-14  David Callé  <davidc@framli.eu>

	Fix a regression caused by a late merge

2012-03-13  David Callé  <davidc@framli.eu>

	Resolve text conflict

2012-03-09  David Callé  <davidc@framli.eu>

	Fix identation and debug

2012-03-01  David Callé  <davidc@framli.eu>

	Basic search and artwork thumbnails from nautilus

2012-03-01  David Callé  <davidc@framli.eu>

	Fill up the lens with rb data

2012-02-05  David Callé  <davidc@framli.eu>

	Switch ugly ifs to case

2012-02-01  David Callé  <davidc@framli.eu>

	Add libxml to config.ac

2012-02-01  David Callé  <davidc@framli.eu>

	Comment a few things to focus on the biggest errors

2012-02-01  David Callé  <davidc@framli.eu>

	Oops

2012-02-01  David Callé  <davidc@framli.eu>

	First steps for a Rhythmbox vala scope

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

	Release 5.4.0

2012-02-07  Brandon Schaefer  <brandontschaefer@gmail.com>

	This fixes the problem when you search then delete your search; and the musicstore scope didn't update fast enough but the check for is_empty_search(search) was returning true so it leaves the scope around with results when it shouldn't.
	
	Now musicstore-collections doesn't create its own Cancellable,it gets passed down through the search_changed signal in simple-scope.vala. So now a search can get cancelled if other searchs come in.. Fixes: . Approved by Michal Hruby.

2012-02-07  Brandon Schaefer  <brandontschaefer@gmail.com>

	Changes perform_search to default cancellable to null

2012-02-06  Brandon Schaefer  <brandontschaefer@gmail.com>

	cleaning up

2012-02-06  Brandon Schaefer  <brandontschaefer@gmail.com>

	Now musicstore-collections doesn't create its own Cancellable,
	it gets passed down through the search_changed signal in
	simple-scope.vala.

2012-02-06  Brandon Schaefer  <brandontschaefer@gmail.com>

	Passing cancellable through the searchs now.

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

	Release 5.2.0

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

	Changes to the lens to suit new home lens view - collate Songs and Albums into one category (displaying Albums first). Fixes: https://bugs.launchpad.net/bugs/885738. Appoved by Mikkel Kamstrup Erlandsen.

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

	Update POTFILES

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

	Don't call get_last_iter all the time

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

	Merge trunk

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

	Don't display any results for empty search in home view

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

	Workaround dash issues

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

	Do it the simple (non-working) way

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

	Turn the main search method into an async one

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

	Spring is approaching, clean up a little

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

	Preliminary refactoring to allow us to collate the Songs and Albums categories into one Music category when doing global 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-18  Mirco Müller  <mirco.mueller@ubuntu.com>

	Resubmitting to make sure it's meant to go into trunk. I wonder what made LP think I wanted to merge it to anything different than trunk initially.
	
	The second part of the fix for LP: #841902.. Fixes: https://bugs.launchpad.net/bugs/841902. Appoved by Mikkel Kamstrup Erlandsen.

2012-01-10  Mirco Müller  <mirco.mueller@canonical.com>

	Use the new/correct name for the new CheckOptions filter

2012-01-06  Mirco Müller  <mirco.mueller@ubuntu.com>

	Using the new (temporary name) CheckFilterOption2 to support a 3-column layout... attempt to fix LP: #841902

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 packaging 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 music lens UNBLOCK. Fixes: . Appoved by Tim Penhey.

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

	get right icon path

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

	Use libunity-5.0 API.. Fixes: . Appoved by Mikkel Kamstrup Erlandsen, Mirco Müller.

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

	Use libunity-5.0 API

2011-10-13  Alex Launi  <alex.launi@canonical.com>

	Make title of lens translatable in lens.in.in

2011-10-08  Gabor Kelemen  <kelemeng@gnome.hu>

	Mark the Music search result category name for translation. LP: #870894

2011-10-03  Alex Launi  <alex.launi@canonical.com>

	merge music store decade filter cap branch

2011-10-03  john.lenton@canonical.com

	untabify

2011-10-03  john.lenton@canonical.com

	ooh, clamp. likes.

2011-10-03  john.lenton@canonical.com

	cap decade filter on api limits

2011-09-29  Alex Launi  <alex.launi@canonical.com>

	release 0.2.6

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

	Merge lp:~chipaca/unity-lens-music/fix-typo

2011-09-29  john.lenton@canonical.com

	fixed a finger-hitting-the-keyboard-at-random typo

2011-09-28  Alex Launi  <alex.launi@canonical.com>

	Merge music store filters branch

2011-09-28  Alex Launi  <alex.launi@canonical.com>

	Implement the genre filtering for the music store

2011-09-28  Alex Launi  <alex.launi@canonical.com>

	merge trunk

2011-09-28  Alex Launi  <alex.launi@canonical.com>

	fix the musicstore decade parameter builder

2011-09-27  Alex Launi  <alex.launi@canonical.com>

	Release unity-lens-music 0.2.4

2011-09-26  Alex Launi  <alex.launi@canonical.com>

	usr u1ms:// for dnd in musicstore scope

2011-09-26  Alex Launi  <alex.launi@canonical.com>

	merge branch to send fewer requests

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	cancel request if user keeps searching to cut down on number of requests sent to u1

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	remove forced geo_store=US parameter

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	release 0.2.2

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	merge branch using list of uris for dnd

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	use list of uris for dnd

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	merge trunk

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	update mime-type for albums

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	merge trunk

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	use a long string of quoted, space delimted uris

2011-09-21  Alex Launi  <alex.launi@canonical.com>

	update comment so i can remember what needs done

2011-09-21  Alex Launi  <alex.launi@canonical.com>

	merge trunk

2011-09-22  Alex Launi  <alex.launi@canonical.com>

	Go back to verbatim string. Changing it broke search

2011-09-21  Alex Launi  <alex.launi@canonical.com>

	update for purchase group icon to be the correct group-purchase.svg

2011-09-21  Alex Launi  <alex.launi@canonical.com>

	switch from using a verbatim string to avoid passing \n and \t to the sql query

2011-09-21  Alex Launi  <alex.launi@canonical.com>

	Merge fix to make banshee play activated tracks

2011-09-20  Alex Launi  <alex.launi@canonical.com>

	Actually play the enqueued songs in banshee when they're clicked in the music lens

2011-09-21  Alex Launi  <alex.launi@canonical.com>

	merge updated musicstore url branch

2011-09-21  john.lenton@canonical.com

	get the musicstore from the environ; set it to production by default

2011-09-21  john.lenton@canonical.com

	purchase_url now being offered in the main api. Also, switched to a static search result until we sort out the server.

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

	[release] 0.2.0

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

	Fixes to Alex' U1 music store branch

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

	Make global search work. Intentionally only include results from Banshee, and not U1.

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

	Move the scope.freeze_notify() up to the comment that explains it

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

	Don't search the U1 scope from the global dash search

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

	Expose SimpleScope.search_is_invalid() to sub classes,and use it in the U1 scope to stop bad queries at the doorstep.

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

	Better debug msg when searching against U1 - and include a timing in ms. Make sure we don't launch searches with empty strings. U1 will give us a BadRequest back.

2011-09-15  Alex Launi  <alex.launi@canonical.com>

	Merge in initial support for searching one.ubuntu.com for music to purchase

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	fix methods and properties to conform to vala style

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	fix distcheck

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	add forgotten musicstore-filter-parser.vala

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	add forgotten MusicStoreFilterStore.vala

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	merge filter support on the store

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	actually implement the decade filter

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	add filters to the store search url

2011-09-14  Alex Launi  <alex.launi@canonical.com>

	merge music store scope

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

	Merge lp:~kamstrup/unity-lens-music/sorted-filters

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

	Sort the Genre filter according to the translated label

2011-09-12  Alex Launi  <alex.launi@canonical.com>

	Fix crash on sql error

2011-09-12  Alex Launi  <alex.launi@canonical.com>

	use warning instead of error to avoid a crash

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	Bring back SimpleScope and the simplified banshee scope

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	Make SimpleScope actually work

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	bump version number for 0.1.4 release

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	bring limits back down to prevent the freezes I was seeing

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	revert scope simplification

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	merge scope simplification branch

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	Send just a list of filters to the search function. Abstracting out the filter retrieval

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	Change simple search API to get rid of FilterParser in the api. they are banshee specific

2011-09-08  Alex Launi  <alex.launi@canonical.com>

	Convert banshee-scope to simple scope subclass

2011-09-07  Alex Launi  <alex.launi@canonical.com>

	add SimpleScope class to avoid duplicated code in the u1 scope

2011-09-07  Alex Launi  <alex.launi@canonical.com>

	revert track count fix as it was causing issues

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

	Bump libunity requirement to 4.0.2

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

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

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

	Relfect latest API breaks in libunity

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

	Merge lp:~njpatel/unity-lens-music/fix-initial-result

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

	Treat null previous search as a change request

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	Merge fix for track/album count

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	Update counts to be more realistic

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	merge formatting fixes

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	fix source file formatting

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	Update group icon names

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	merge fix for missing 90s decade filter

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	Add decade filter option for the 90s

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	Support reading album art

2011-09-02  Alex Launi  <alex.launi@canonical.com>

	Get album art and display it in the dash

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

	[release] 0.1.2

2011-08-12  Alex Launi  <alex.launi@canonical.com>

	add single track uri to banshee arg list

2011-08-12  Alex Launi  <alex.launi@canonical.com>

	use const int for the column indices

2011-08-12  Alex Launi  <alex.launi@canonical.com>

	use const int for the column indices

2011-08-12  Alex Launi  <alex.launi@canonical.com>

	play all tracks when an album is clicked

2011-08-11  Alex Launi  <alex.launi@canonical.com>

	fix genre filter sql to correctly search genre

2011-08-11  Alex Launi  <alex.launi@canonical.com>

	keep albums unique

2011-08-11  Alex Launi  <alex.launi@canonical.com>

	fix filtering

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

	use the correct dbus namespace

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

	some distcheck fixes

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

	Make some fixes

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

	Fix lens file more

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	fix typo when creating decade filter-parser

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	merge fix for music.lens file

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

	fix lens file

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	remove hardcoded banshee directory

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	implement filter support for genre and decade

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	push up filter-parser and genre

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	fix broken years ha

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	work on implementing filter support

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	implement infrastructure for querying with filters

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	pull out the search code into its own method

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	add debugging output

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	make the project compile

2011-08-10  Alex Launi  <alex.launi@canonical.com>

	search the banshee db i hope

2011-08-09  Alex Launi  <alex.launi@canonical.com>

	fix all of the stupid vala syntax errors

2011-08-09  Alex Launi  <alex.launi@canonical.com>

	Clean out the zg scope code from the banshee scope, and comment it so i know what to do

2011-08-09  Alex Launi  <alex.launi@canonical.com>

	start splitting scope into its own file

2011-08-09  Alex Launi  <alex.launi@canonical.com>

	initial import of files lens, with some boiler plate to music