summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 72ed682a206cee4ea2cc189777011f9b45e0ceb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
2007-03-01  Jamie McCracken <jamiemcc at gnome org>

	* Made configure auto build stuff like libtracker-gtk if dependencies are met
	* changed --enable-preferences to --disable-preferences


2007-03-01 patch from Michael Biebl <mbiebl at gmail com>

	* Cleaned up libtracker-gtk with John Stowers

2007-03-01 patch from John Stowers <john.stowers@gmail.com>

	* Add libtracker-gtk 


2007-02-28  Jamie McCracken <jamiemcc at gnome org>

	* Removed superflous subfolders from imap uri


2007-02-28  Patch from Tshepang Lekhonkhobe <tshepang@gmail.com>

    	* Patch for README file


2007-02-28 Patch from Anders Rune Jensen <anders@iola.dk>

	*  Fix mem leak in Fam handler


2007-02-28 Patch from Michael Biebl <mbiebl at gmail com>

	* added realpath support to thumbnailer


2007-02-26  Jamie McCracken <jamiemcc at gnome org>

	* Fixed email issues
	* Now handles deleted and junk emails (these are removed when trackerd is next started)
	* Fixed bugs with text Files not being detected


2007-02-26  Luca Ferretti  <elle.uca@libero.it>

	* src/trackerd/trackerd.c:
	Use "VALUE" not "value" in --help for -t and -v explanation
	as any other option 

2007-02-18  Jamie McCracken <jamiemcc at gnome org>

	* made sure we call gmime_stream_close before unreffing to release file descriptors
	* a few memory leaks plugged

2007-02-13  Patch from Tshepang Lekhonkhobe <tshepang@gmail.com>

    	* tracker.cfg: replaced the unused EnableDebugLogging entry with Verbosity
    	* remove unnecessary checks for tracker->verbosity
    	* some spelling corrections and other minor changes
    	* lowered tracker-preferences' GTK+2.0 version requirement from 2.10 to 2.8
    	* README fixes

2007-02-12 Patch from Gergan Penkov <gergan at gmail com>

	* Added missing function prototype


2007-02-12  Jamie McCracken <jamiemcc at gnome org>

	* lots of bug fixes to get imap email support functional


2007-02-11  Luca Ferretti  <elle.uca@libero.it>

	* src/tracker-preferences/tracker-preferences.c:
	(tracker_preferences_init):
	Fix the glade name of buttonbox area.

2007-02-10  Jamie McCracken <jamiemcc at gnome org>

	* finished adding evolution email support
	* added revamped tab interface to tracker-search-tool
	* added email searching support to tst
	* added new methods to get hit counts by service
	* added cropping to tst display
	* split up sql scripts
	* added evolution display of emails in tst


2007-02-10  Patch from Saleem Abdulrasool <compnerd at gentoo org>

	* Added preferences capplet


2007-01-29  Jamie McCracken <jamiemcc at gnome org>

	* fixed bug for service types
	* fixed mplayer bug with audio/video.Duration


2007-01-28  Jamie McCracken <jamiemcc at gnome org>

	* fixed bug where moving a file would not update index of the new filename
	* made some of the db data static
	

2007-01-28 Patch from Michael Biebl <mbiebl at gmail com>

	* removed python header from deskbar module
	* changed Max results to 10


2007-01-28  Patch from Laurent Aguerreche <laurent aguerreche at free fr>
	
	* email fixes
	* improved imap4 support
	* memory leak fix in indexer

2007-01-27  Patch from Saleem Abdulrasool <compnerd at gentoo org>

	* Made deskbar-handler installation optional

2007-01-27  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

	* configure.ac: added ru to ALL_LINGUAS.

2007-01-25  Jamie McCracken <jamiemcc at gnome org>

	* fixed update of embedded keywords
	* added deskbar handler to tarball and installation
	* updated man page for trackerd

2007-01-24 Patch from Michael Biebl <mbiebl at gmail com>

	* converted xdgmime to private lib

2007-01-24  Jamie McCracken <jamiemcc at gnome org>

	* Added magic.h to check_headers in configure.ac
	* Created tracker_info and tracker_debug and replaced all the g_log functions that were polluting xsession-errors


2007-01-23  Jamie McCracken <jamiemcc at gnome org>

	* Improved message display
	* Made sure all external stuff is fully protected from excessive memory/cpu
	* Repaired mplayer backend and make it used when gstreamer returns nothing
	* Added libmagic for extra mime checks


2007-01-22 Patch from Michael Biebl <mbiebl at gmail com>

	* Fix to get test suite built


2007-01-22  Luca Ferretti  <elle.uca@libero.it>

	* src/libtracker/tracker-stats.c:
	
	Port tracker-stats to GOption and mark translatable strings.
	Fix bug 397940.

2007-01-21 Patch from Daniel Fullmer <cgibreak at gmail com>
	
	* fix for parallel make

2007-01-21 Patch from Michael Biebl <mbiebl at gmail com>

	* Updated License info
	* added LGPL Copying.Lib to libtracker


2007-01-21  Jamie McCracken <jamiemcc at gnome org>

	* Completed optimisation of indexing
	* Added a verbosity command line param
	* Made sure all indeixng occurs under a single transaction
	* removed superflous code
	

2007-01-21  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.ac: Added nb to ALL_LINGUAS.


2007-01-19  Jamie McCracken <jamiemcc at gnome org>

	* changed mmap back to shared as optimisation would destroy the index
	* made indexing super fast
	* smoothed out indexing so that it (virtually) never slows the system down
	* made default full throttle (turbo) 
	* Added new high speed index flusher
	* Improved word descriminator


2007-01-14  Jamie McCracken <jamiemcc at gnome org>

	* added throttling param to control speed of indexing (--throttle)
	* adjusted default throttling so that cpu ~50% during heavy indexin
	* throttled tracker daemon at strategic points
	* removed erroneous cache word deletion when delete_directry
	* removed problem statement that was somehow deleting the cache db
	* Improved word breaker and fixed index roots not being indexed
	* changed shared mmap to private for qdbm to work on FUSE


2007-01-12 Patch from Michael Biebl <mbiebl at gmail com>

	* Fixed make distcheck
	* added bzip2 build
	* fix for configure.in -> configure.ac move


2007-01-12  Jamie McCracken <jamiemcc at gnome org>

	* Sped up word breaker and made it use less memory
	* Fixed bug where root dirs were not getting indexed properly
	* Added some sleeping to reduce stress on machine when heavily indexing


2007-01-11  Patch from Saleem Abdulrasool <compnerd at gentoo org>

	* Detect dbus service directory

2007-01-11 Patch from Michael Biebl <mbiebl at gmail com>

	* based on patch from Saleem Abdulrasool <compnerd at gentoo org>
	* removed mysql files
	* cleaned up build for sqlite

2007-01-10  B Berteh <berteh at hotmail com>

	* added README for deskbar handler and nautilus tags
	* remove temporary included image files left by wvText

2007-01-10  Jamie McCracken <jamiemcc at gnome org>

	* Merged all extraction into one thread to lessen queueing overhead
	* disabled some code in the emails section
	* added some more email db support routines
	* improved support for email attachments indexing

2007-01-10  Patch from Saleem Abdulrasool <compnerd at gentoo org>

	* Build fixes
	* fixed build of test suite
	* fixed --enable-debug-code configure arg
	* made libpng a mandatory dependency
	* added check for thumbnail directory and create it if necessary

2007-01-09  Ignacio Casal Quinteiro  <nacho.resa@gmail.com>

	* configure.in: Added 'gl' to ALL_LINGUAS.

2007-01-07  Tshepang Lekhonkhobe <tshepang@gmail.com>

	* README: Ensured all lines over 79 colums were reduced for readability
	* README: Added xdg-utils, libpng, libexif, and libgsf as dependencies
   	* t-s-t: Added xdg-open to 'Open Folder' with a fallback to gnome-open

2007-01-07  Priit Laes  <plaes@svn.gnome.org>

    * configure.in: Added 'et' (Estonian) to LINGUAS.


2007-01-03  Tshepang Lekhonkhobe <tshepang@gmail.com>

	* Added a note on the reason why SQLite is statically-linked

2007-01-03 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* improved email support
	* added imap support
	* linked in db email support

2007-01-02  Jamie McCracken <jamiemcc at gnome org>

	* Added new crawler to speed up indexing


2007-01-02  Matic Zgur <mr.zgur@gmail.com>

	* configure.in: Added sl to ALL_LINGUAS.


2007-01-01  Patch from Bjoern Gruening <bjoern at gruenings eu>

	* Added tex filter support

2007-01-01  Jamie McCracken <jamiemcc at gnome org>

	* Added db support for emails
	* added indexing support for emails
	* optimised metadata insertion
	
2007-01-01  David Lodge <dave@cirt.net>

	* configure.in: Added en_GB

2006-12-23  Jamie McCracken <jamiemcc at gnome org>

	* Added debug compile option
	* fixed memory leaks during indexing
	* Made Database changes to support new Metadata engine
	* Changed metadata to reflect RDF style (using colon instead of fullstop for class/metadata)
	* Added Dublin Core metadata
	* modified code to use new metadata names and also Dublin Core
	* added support for metadata relationships
	* made metadata support more than one value per item
	* made keywords use the new metadata engine.
	* changed keyword metadata to "DC:Keywords"
	* Applied some Dublin Core relationships to existing metadata
	* Made RDF QUery function with new metadata engine and also metadata relationships
	* Used file command to check to see if files are plain text or not
	* split filenames by hyphen and underscore so individual parts will show up in searches
	* index meaningful numbers (IE all numbers at least 5 digits long so searchers can now be done for things like telephone no.s, bank accounts, ISBN etc)
	* modified snippet to start/end on a word break if possible

2006-12-19  Francisco Javier F. Serrador  <serrador@openshine.com>

	* configure.in: Added 'es' to ALL_LINGUAS

2006-12-16  Luca Ferretti  <elle.uca@libero.it>

	* src/tracker-search-tool/tracker-search-tool.desktop.in:

	Update launcher description to match GNOME HIG.

2006-12-16  Luca Ferretti  <elle.uca@libero.it>

	* src/tracker-search-tool/tracker-search-tool.c:
	(update_search_counts), (update_constraint_info),
	(get_desktop_item_name):

	Comment out some unused strings from gnome-search-tool and
	change other "Search for Files" window title strings to
	"Tracker Search Tool". But those should be unused too.

	Now all strings marked as translatable should really appears
	in the GUI.

2006-12-14  Ilkka Tuohela <hile@iki.fi>

	* configure.in: Added 'fi' and 'sv' to ALL_LINGUAS

2006-12-03  Eugenio <me at eugesoftware com>

	* added a QT based search tool to python directory

2006-11-30  Luca Ferretti  <elle.uca@libero.it>

	* src/trackerd/trackerd.c:
	Add a missing : in --help message to match other tools.

2006-11-30  Luca Ferretti  <elle.uca@libero.it>

	* src/trackerd/trackerd.c:
	Change command line options and enable i18n. Fore more info
	about changes, see http://mail.gnome.org/archives/tracker-list/2006-November/msg00382.html

2006-11-29 Patch from Michael Biebl <mbiebl at gmail com>
	
	* cleaned up makefiles for debian compliance
	* removed debian subfolder from cvs
	* fixed make dist

2006-11-29  Jamie McCracken <jamiemcc at gnome org>

	* Cleaned up Makefiles
	* set executable scripts to libdir and not datadir
	* added missing license/copyright info to files
	

2006-11-27 Edward Duffy <eduffy at gmail com>
	
	* made thumbnailing fdo compliant

2006-11-27  Jamie McCracken <jamiemcc at gnome org>

	* fixed crasher in snippet generator and made it more utf-8 friendly

2006-11-26 Eugenio <me at eugesoftware com>
	
	* updated fuse based trackerdfs 
	* omplete support for move/copy/create dir/file

2006-11-26 Gergan Penkov <gergan at gmail com>

	* Updated configure.in to support more distro firendly options 

2006-11-21  Deji Akingunola <dakingun gmail com>

	* removed extra trackerd.desktop file
	* fixed t-s-t desktop file


2006-11-21  Luca Ferretti  <elle.uca@libero.it>

	* python/FUSE/trackerfs.py:
	Updated by Eugenio Cutolo.

2006-11-21  Luca Ferretti  <elle.uca@libero.it>

	* src/libtracker/tracker-search-tool.c:
	Reduce the number of translable messages using C style comment
	blocks to exclude unused functions and remove _() macros from
	unused strings.
	Change the window title to match the launcher label.

2006-11-21  Luca Ferretti  <elle.uca@libero.it>

	* src/libtracker/tracker-tag.c:
	* src/libtracker/tracker-search.c:
	Fix a couple of typos in translatable messages.

2006-11-21  Luca Ferretti  <elle.uca@libero.it>

	* src/libtracker/tracker-tag.c:
	* src/libtracker/tracker-search.c:
	Standardized error messages.

2006-11-20  Luca Ferretti  <elle.uca@libero.i>

	* configure.in: Add a check for glib >= 2.12.0 and
	define HAVE_RECENT_GLIB.

	* src/libtracker/tracker-tag.c: Use g_option_context_set_summary
	only if HAVE_RECENT_GLIB is defined.

2006-11-20  Jamie McCracken <jamiemcc at gnome org>

	* updateded desktop files
	* fixed t-s-t to let back/forward buttons to remain sensitive if applicable
	* fixed resizing of columns in t-s-t
	* improved snippet generation
	* made snippet call async in t-s-t
	* made use of tracker's mime instead of slower Gnome-vfs mime detection in t-s-t

2006-11-19  Jamie McCracken <jamiemcc at gnome org>

	* fixed snippets so that multiple terms are highlighted
	* used a copied version of function g_utf8_strcasestr from gtksourceview to provide caseless utf-8 searching
	* used utf-8 casefold and normalization in parser
	* tidied up t-s-t
	* made font colour of snippet much clearer
	* made snippets wrap around when resizing t-s-t
	* added icon to both t-s-t and desktop file
	* reduced sqlite cache usage
	

2006-11-18  Jamie McCracken <jamiemcc at gnome org>

	* Limited tracker-extracts memory usage using setrlimit
	* prevents unreasonable memory usage (especially mistaken treatment of large binary files as video files) 
	* fixed rdf bug where a search term without a query could not be executed

2006-11-18 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* added more tmeplate filters
	* improved use of tmp directory for temporary stuff


2006-11-16 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* added missing OOO templates to our filters


2006-11-16 Eugenio <me at eugesoftware com>
	
	* added fuse based trackerdfs to our python tools


2006-11-16 Edward Duffy <eduffy at gmail com>
	
	* added timeout to all external processes used by tracker


2006-11-16  Luca Ferretti  <elle.uca@libero.it>

	* src/libtracker/tracker-tag.c:
	Add l10n/i18n support, changing some messages for a better
	translation experience.

2006-11-15 Edward Duffy <eduffy at gmail com>
	
	* added xdg-open to t-s-t with fallback to gnome-open

2006-11-15 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* added desktop files to debs

2006-11-15  Luca Ferretti  <elle.uca@libero.it> 	 
  	 
         * */.cvsignore: Add cvs ingore files.

2006-11-12 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* changed html filter to use w3m

2006-11-12 Gergan Penkov <gergan at gmail com>

	* fixed dbus warning

2006-11-12 Edward Duffy <eduffy at gmail com>
	
	* added abiword and xml text filters

2006-11-12  Deji Akingunola <dakingun gmail com>

	* added tracker.spec file
	* added trackerd.desktop file

2006-11-12  Jamie McCracken <jamiemcc at gnome org>

	* fixed fam backend

2006-11-11  Jamie McCracken <jamiemcc at gnome org>

	* fixed bug in rdf query so that non file objects are supported by default
	* fixed gstreamer extractor to time out after a few seconds (this prevents it hanging with some movie files)
	

2006-11-10 Edward Duffy <eduffy at gmail com>
	
	* Downgraded libpoppler requirements


2006-11-10  Deji Akingunola <dakingun gmail com>
	
	* added .desktop file for tracker-search-tool

2006-11-10  Luca Ferretti  <elle.uca@libero.it>

	* configure.in:
	Replace AM_GLIB_DEFINE_LOCALEDIR with a custom test and AC_DEFINE
	due to the bug #343825 (glib vs. autoconf >= 2.60). See also
	http://lists.debian.org/debian-gtk-gnome/2006/06/msg00001.html
	(from Laurent Aguerreche)	

2006-11-10  Luca Ferretti  <elle.uca@libero.it>

	* debian/tracker-dev.docs:
	* debian/tracker-dev.install:
	Removed from cvs (from Laurent Aguerreche)

2006-11-09  Luca Ferretti  <elle.uca@libero.it>

	* src/libtracker/tracker-search.c:
	Restore #include <locale.h> (maybe needed on some systems) and
	move setlocale() before *textdomain() (from Laurent Aguerreche)

2006-11-09  Luca Ferretti  <elle.uca@libero.it>

	* Makefile.am:
	* debian/tracker-utils.manpages:
	* dedian/tracker.manpages:
	Add missing manpages for deb packages which have to be
	distributed by "make dist" (patch by Laurent Aguerreche)

2006-11-09  Hendrik Richter  <hendrikr@gnome.org>

	* configure.in: Added "de" to ALL_LINGUAS

2006-11-09  Luca Ferretti  <elle.uca@libero.it>

	* src/libtracker/tracker-search.c:
	Restore "setlocale" call. Now localization should work at runtime
	for this tool (by Laurent Aguerreche)

2006-11-09  Luca Ferretti  <elle uca libero it>

	* fixed "make dist" for intltool-* stuff (by Laurent Aguerreche)

2006-11-07 Luca Ferretti <elle uca libero it>

	* added internationlisation support to tracker and t-s-t

2006-11-07 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* fixed bad comment tag in mplayer extractor


2006-11-07  Julien <julienc psychologie-fr org>

	* fixed bug in tracker-query so that service types are enabled



2006-11-07  Jamie McCracken <jamiemcc at gnome org>

	* fixed bug in plain text sniffer



2006-11-05 <tpgww@onepost.net>

	* cleanups to remove compiler warnings

2006-11-05 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* improved use of tmp directory
	* added gstreamer based extractor for audio and video tags
	* cleaned up other extractors


2006-11-01  Jamie McCracken <jamiemcc at gnome org>

	* emebedded sqlite with threadsafe mode enabled
	* inlined sqlite code and made it a prvate non-installable lib which is statically linked in
	* fixed initilaisations of vars in mp3-extract to prevent segfaults


2006-11-01  Luca Ferretti  <elle uca at libero it>

	* fixed build (Makefile, not MakeFile)

2006-10-30 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* fixed and cleaned debian build 
	* fixed build of man pages


2006-10-30 Samuel Cormier-Iijima <sciyoshi at gmail com>

	* created python based notification applet for tracker


2006-10-29 Bastien Nocera <hadess hadess net>

	* totem parsing speedup


2006-10-29 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Updated debian build 
	* cleaned up process
	* added new package for tracker-search-tool


2006-10-29 Jamie McCracken <jamiemcc at gnome org>

	* fixed tag error when setting a new tag on a file


2006-10-29 Eskil Bylund <eskil at letterboxes org>

	* fixed window sizing of tracker-search-tool
	* added buttonbox for prev/next buttons in t-s-t

2006-10-29 Ulrik Mikaelsson <ulrik mikaelsson gmail com>

	* fixed leak in GetMetadataForFilesInFolder
	* fixed field checking in GetMetadataForFilesInFolder
	* added dbus argument error handling 
	* fixed issue with tracker-tag not reporting file not found
	* added comamnd line args to t-s-t


2006-10-29 tobutaz <tobutaz gmail com>

	* imporved ioprio detection and operation


2006-10-29 Mikkel Kamstrup Erlandsen <mikkel kamstrup gmail com>

	* added grey lettering for snippet


2006-10-29 Baptiste Mille-Mathias <baptiste.millemathias gmail com>
	
	* added initial manpages for the tracker command line tools


2006-10-22 Richard Quirk <quirky@zoom.co.uk>

	* fixed potential crasher in tracker_db_search_text

2006-10-22 Jamie McCracken <jamiemcc at gnome org>

	* updated debian folder and files to build debs
	* fixed tracker.pc to use libtrackerclient
	* fixed bug where data flushing to qdbm could end up in an infinite loop


2006-10-22 Eskil Bylund <eskil at letterboxes org>

	* build fix for make dist
	* fix for tracker-search-tool's handling of filenames by escaping them 


2006-10-16 Jamie McCracken <jamiemcc at gnome org>

	* Fixed gui
	* added buttons
	* cleaned up code
	* created dbus methods to get snippets


2006-10-17 Edward Duffy <eduffy at gmail com>
	
	* Made a totem extractor
	* Fix for pdf extractor



2006-10-16 Jamie McCracken <jamiemcc at gnome org>

	* Added optional periodic fsync and fast mode to make tracker more background friendly
	* Added intermediate temp storage of words so that most common words are applied at the end to prevent fragmentation
	* Added sheduling
	* Made sure tracker daemon is now really smooth
	* fixed a few leaks

2006-10-16 Edward Duffy <eduffy at gmail com>
	
	* Made an mplayer extractor
	* Fix for potential crasher in tracker-extract
	* Fix for autotools


2006-10-11 Jamie McCracken <jamiemcc at gnome org>

	* Fixed crasher by applying a mutex to guard non-threadsafe stemmer


2006-10-12 Marcus Fritzsch <fritschy at googlemail com>
	
	* Patch to make sure ignore dirs argument is treated as an array


2006-10-11 Jamie McCracken <jamiemcc at gnome org>

	* Created command line options for trackerd
	* Created more extensive options for tuning performance/memory and disk space usage - new config file format
	* Removed LibExtractor dependency
	* created new mp3 extractor for id3 id3v21, id3v22, id3v23 and id3v24
	* added snowball stemmers (as a static library)
	* added multi language stopword files
	* added support for determining which language to use by default based on locale
	* made sure only lstat is used to prevent symlink directories from being followed

2006-10-11 Jedy Wang <Jedy Wang at Sun COM>
	
	* Patch to improve compilation on Solaris


2006-10-08 Jamie McCracken <jamiemcc at gnome org>

	* Created tracker-search-tool (based on gnome-search-tool)
	* Bug fix for handling uri's without a leading backslash in indexing
	* tuned indexer
	


2006-10-07 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Made Thunderbird backend aware of vfolders


2006-10-05 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Email uri fixes


2006-10-05 Jamie McCracken <jamiemcc at gnome org>

	* blocked extraction of non-regular files


2006-10-05 Marcus Fritzsch <fritschy at googlemail com>
	
	* Patch to make sure NULL is returned if no date is available in tracker_db_get_field_def 


2006-10-03 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Cleaned up tracker-db-sqlite source
	* Fixed potential crasher where g_free was being used on a g_lice allocation

2006-10-03 Jamie McCracken <jamiemcc at gnome org>

	* fixed retrieval of metadata types
	* fixed Metadata.Get method
	* fixed Files.GetByMimeType
	* added python stuff to repository 
	* added lyrics.py ripped from rhythmbox and modded by Samuel Cormier-Iijima
	* added nautilus tag tabs written by Edward Duffy


2006-10-03 Edward Duffy <eduffy at gmail com>
	
	* added libgsf extractor for ms office files
	* added open document thumbnailers
	* fix for sqlite sql
	* fixed auto tagging


2006-10-03 Anders Aagaard <aagaande at gmail com>
	
	* added ionice support


2006-10-02 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Force email body to return plain text instead of html
	* Fixed signedness warnings in xdgmime


2006-10-02 Jamie McCracken <jamiemcc at gnome org>

	* restructured database for email support
	* Fixed RDF Query to work with sqlite
	* Added sqlite sql functions (display of dates)
	* Added keywords support to rdf query
	* Changed most of the a{sv} dbus methods to aas
	* Modified command line tools to use aas
	* removed redundant dbus methods and parameters


2006-10-01 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Added Kmail email support
	* Added fixes for sqlite 


2006-10-01 Jamie McCracken <jamiemcc at gnome org>

	* restructured database
	* Used Curia instead of Depot for inverted index as its more scalable
	* Fixed issues with new indexer
	* Fixed keywords to update indexer properly
	* Fixed keyword search and list methods
	* Added auto tag support for Doc.Keywords and Image.Keywords (based on patch by Edward Duffy)
	* Auto optimize index after first run and automatically after user settable no of updates


2006-09-27 Edward Duffy <eduffy at gmail com>
	
	* made internal extractors external and intgrated into tracker-extract
	* added extractors for images

2006-09-27 Jamie McCracken <jamiemcc at gnome org>

	* fix bug with search text (correct no of results now returned)
	* got search mime , search location and search mime location working
	* replaced bzip compression with zlib
	


2006-09-26 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Added #ifdefs to make libpoppler usage optional


2006-09-26 Jamie McCracken <jamiemcc at gnome org>

	* fix bug with get_metadata routine expecting metadata name and not metadata id
	

2006-09-25 Jamie McCracken <jamiemcc at gnome org>
	
	* Integrated new indexer and parser into tracker/sqlite
	* Added support for insert, update and delete
	* performs differential indexing for updates
	* got tracker-search to function with it

2006-09-25 Edward Duffy <eduffy at gmail com>
	
	* added internal extractors for pdf, OpenDocument, Abiword and Postscript

2006-09-25 Fabien VALLON <fabien at sonappart net>
	
	* Did an initial ogg extractor 

2006-09-25 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Added thunderbird email support
	* Added fixes for detecting deleted and junk emails in Evolution mail parser

2006-09-21 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Added detection of deleted and junk messages to email indexing


2006-09-21 Edward Duffy <eduffy at gmail com>
	
	* added jpeg and png thumbnailers


2006-09-21 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Inotify patch to clean up code
	* Also made sure inotify timeout for file move detection is removed when no moved files are pending (this prevents tracker from peridoically waking up)
	* added g_message support for logging messages

2006-09-21 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Added initial email indexing support
	* Added indexing of evolution emails
	* Added indexing of email attachments


2006-09-21 Jamie McCracken <jamiemcc at gnome org>
	
	* Created Test suite for new indexer
	* fixed bugs in indexer


2006-09-19 Jamie McCracken <jamiemcc at gnome org>
	
	* Finished tracker's new indexer


2006-09-19 Fabien VALLON <fabien at sonappart net>
	
	* Added retrieval of tracke number to tracker-extract


2006-09-18 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Added search by service option to tracker-search


2006-09-17 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Added Goption and limit option to tracker-search 


2006-09-16 Jamie McCracken <jamiemcc at gnome org>
	
	* Fixed erroneous rdf query where returned values were null


2006-09-16 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Patch to fix sqlite sql
	* Patch to fix race condition in request thread


2006-09-16 Jamie McCracken <jamiemcc at gnome org>
	
	* More work on tracker-indexer



2006-09-12 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Patch to fix segfault when retrieveing metadata
	* Patch to use g_slice_new0 instead of g_slice_new



2006-09-11 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Patch to fix sending of null values on Dbus
	* Also fix for erroneous g_free on a g_slice allocation


2006-09-13 Jamie McCracken <jamiemcc at gnome org>
	
	* Tidied up tracker-GUI
	* Inline libsexy widget
	* extended parser to support line by line indexing
	* added more functionality to new indexer


2006-09-13 Edward Duffy <eduffy at gmail com>
	
	* Enhanced tracker GUI
	* fixed display of sexy icon entry


2006-09-13 Jaime Frutos Morales <acidborg at gmail com>
	
	* Patch to add skeleton for tracker GUI


2006-09-11 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Patch to add Goption support for tracker-tag


2006-09-11 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Added option to disable thumbnail generation


2006-09-11 Jamie McCracken <jamiemcc at gnome org>
	
	* Added bug fixes to sqlite functionality



2006-09-10 Jamie McCracken <jamiemcc at gnome org>
	
	* Added rough sqlite support


2006-09-10 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Fixed symlink problem 
	* More code cleanup


2006-09-07 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Handled Dbus Connection shutdown gracefully
	* tracker deamon now shuts down smoothly when dbus session bus is stopped
	* Big code cleanup


2006-09-06 Jamie McCracken <jamiemcc at gnome org>
	
	* Finishsed db abstractions
	* Added initial sqlite support


2006-09-02 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Fix for Rdf-query parser to allow "contains" function to be called more easily 


2006-09-02 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Added locale handling for non utf-8 files
	* Made sure all filenames passed to posix system calls are translated to user's locale
	* made sure all results are displayed in user's locale
	* cleaned up code


2006-09-02 Jamie McCracken <jamiemcc at gnome org>
	
	* Added more abstractions for db calls

2006-08-25 Jamie McCracken <jamiemcc at gnome org>
	
	* Improved thread synchronisation speed
	* Fixed potential deadlock as pointed out by Laurent Aguerreche <laurent aguerreche at free fr>
	* Improved exiting

2006-08-21 Gergan Penkov <gergan at gmail com>
	
	* Fix sql for an SP

2006-08-21 Jamie McCracken <jamiemcc at gnome org>
	
	* Improved thread synchronisation using G_COND and g_cond_signal and g_cond_wait
	* Eliminated redundant mutexes (file available/metadata available)
	* Restructured threads to be more efficient 
	* Added two phase program halt so that stuff ends gracefully and all threads are exited smoothly


2006-08-21 Laurent Aguerreche <laurent aguerreche at free fr>
		
	* Patch to fix signal handling amongst threads
	* Jamie McCracken heavily modified this patch to make sure it avoids deadlocks and race conditions


2006-08-19 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Patch to fix debain build 
	* split up tracker into several debs
	* Fixed make dist in autofoo


2006-08-19 Jamie McCracken <jamiemcc at gnome org>
	
	* Abstracted all mysql specific stuff into tracker-db-mysql
	* Paved the way to support alternative backends like sqlite/qdbm


2006-08-13 Jamie McCracken <jamiemcc at gnome org>
	
	* Added new tracker-file-convert to convert text file into list of unique words with associated counts
	* Added support for stemming
	* Added new parsing word breaker
	* Added experimental (but currently disabled) qdbm indexing (tracker-indexer c)


2006-08-13 Marcus Fritzsch <fritschy at googlemail com>
	
	* Patch to make sure a dbus reply is sent if the rdf query string is NULL or erroneous


2006-08-03 Marcus Fritzsch <fritschy at googlemail com>
	
	* Patch to make sure query is not null in tracker_exec_sql


2006-08-03 Jamie McCracken <jamiemcc at gnome org>
	
	* Added new Dbus methods for File Exists and File GetServiceType


2006-08-02 Jamie McCracken <jamiemcc at gnome org>
	
	* Added new command line tool tracker-files


2006-08-02 Edward Duffy <eduffy at gmail com>
	
	* Patch for small fix to XdgMime



2006-08-02 Jedy Wang <Jedy Wang at Sun COM>
	
	* Patch to add build instructions for Solaris to README file



2006-08-02 Laurent Aguerreche <laurent aguerreche at free fr>
	
	* Patch to fix sql


2006-08-01 Jamie McCracken <jamiemcc at gnome org>
	
	* Added offset parameter to search methods



2006-07-31 Jedy Wang <Jedy Wang at Sun COM>
	
	* Patch to improve compilation on Solaris



2006-07-31 Jamie McCracken <jamiemcc at gnome org>
	
	* Added realpath for file parameters in command line tools
	* Improved search terms to *and* them by default
	* added support for OR in search terms
	* added support for excluding a search term
	* added bugfixed XDGMIME from Beagle to prevent crashes


2006-07-30 Marcus Fritzsch <fritschy at googlemail com>
	
	* Patch to make build more debian friendly


2006-07-30 Jedy Wang <Jedy Wang at Sun COM>
	
	* Patch to fix crasher on solaris



2006-07-30 Christoph Laimburg <christoph laimburg at rolmail net>
	
	* Patch to replace deprecated dbus call (dbus_connection_disconnect)


2006-07-30 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Patch to add RegExp rdf query extension support


2006-07-30 Samuel Cormier-Iijima <sciyoshi at gmail com>
	
	* Modified patch to make no watch directories parameter functional
	


2006-07-30 Jamie McCracken <jamiemcc at gnome org>
	
	* Added new command line tools (tracker-tag)
	* Fixed bugs in tracker-search methods
	* Fixed bugs in tracker-query


2006-07-25 Jamie McCracken <jamiemcc at gnome org>
	
	* Sorted out libtracker
	* updated to reflect new dbus interfaces
	* Added new command line tools


2006-07-22  Jamie McCracken <jamiemcc at gnome org>
	
	* Created new dbus interface for Search and Files
	* Added new methods to create richer dbus functionality
	* Ported over existing metadata methods to new interface


2006-07-18  Jamie McCracken <jamiemcc at gnome org>
	
	* Created new dbus interface for Keywords
	* Added new methods for adding, removing and searching keywords


2006-07-11  Jamie McCracken <jamiemcc at gnome org>
	
	* Created new dbus interface for Metadata
	* Added new methods for registering and querying metadata types
	* Ported over existing metadata methods to new interface



2006-06-30  Jamie McCracken <jamiemcc at gnome org>
	
	* Added New Dbus Interface Methods
	* Added GetStats, GetServices and GetVersion



2006-06-12  Jamie McCracken <jamiemcc at gnome org>
	
	* Reworked rdf query functionality
	* Optimised it for performamce
	* Added new extensions for Contains and StartsWith



2006-05-17  Gergan Penkov <gpp666_999 at yahoo de>
	
	* Fix for conifgure in (added ssl linking due to bug in mysql)


2006-05-14  Jamie McCracken <jamiemcc at gnome org>

	* Improved metadata support for Exif fields
	* Created new stats for indexed files
	* Created new file orientated services

2006-05-07  Jamie McCracken <jamiemcc at gnome org>

	* Fixed crasher in date parser
	* Improved UTF-8 conversion of metadata
	* Improved Inotify header checks (now looks for sys/inotify h as well as linux/inotify h)
	* Fixed build issues on FC5


2006-05-05  Jamie McCracken <jamiemcc at gnome org>

	* Hugely optimised indexing when many files are waiting to be indexed
	* Mass queueing of files no longer blocks the main thread
	* Fixed minor memory leak in new date parser


2006-05-01  Jamie McCracken <jamiemcc at gnome org>

	* Migrated embedded database to mysql 5
	* Removed all parameterized queries and replaced with stored procedures
	* New stored procedures to encapsulate DB functionality and remove most DB logic from application
	* Simplified C code when interfacing with DB
	* Added support for parsing dates in various formats including conversion to/from ISO 8601 format
	* Fixed MsWord filter to prevent looping (WvText causes inotify to report file write change causing endless looping)
	* Redesigned DB structure to be more generic and service orientated
	* Added support for service types (first class objects) to DB
	* Renamed tables to be more service orientated
	* Added DB versioning data to DB so future DB changes can be implemented painlessly (and without requiring a rebuild of all indexed data)


2006-04-22  Dan Nicolaescu <dann at ics uci edu>

	* Patch to fix correct use of argv
	* Ensure correct message printed if wrong no of arguments supplied


2006-04-22  Dan Nicolaescu <dann at ics uci edu>

	* Patch to fix build for Fedora Core 5


2006-04-22  Nate Nielsen  <nielsen at memberwewbs com>

	* Fix compile warnings, crasher 


2006-03-28  Jamie McCracken <jamiemcc at gnome org>

	* Redesigned Dbus Interface to be more generic and cleaned up code
	* Corrected search results of hyphenated search terms
	* Added support for maximum hit count to search queries
	* Added optional support for sorting search results by relevance score

2006-03-12  Jamie McCracken <jamiemcc at gnome org>

	* Updated to latest XDGMime
	* Fixed bugs with filename metadata type not being updated in a file move operation
	* Improved speed of some intoify operations



2006-02-27  Jamie McCracken <jamiemcc at gnome org>

	* Added inotify support
	* Optimised inotify move support
	* Improved Build system
	* Can use an external libextractor if found during compilation
	* Fixed some leaks
	* Fixed threading issues with new inotify backend


2006-01-14  Jamie McCracken <jamiemcc at gnome org>

	* Updated libtracker to be more usable especially for Nautilus search


2006-01-11  Jamie McCracken <jamiemcc at gnome org>

	* Improved file change handling by creating a pending file
	  queue and a pending File Database table  This allows changes 
	  awaiting processing by the tracker daemon to be handled much
	  more efficiently with respect to memory usage 


2006-01-06  Jamie McCracken <jamiemcc at gnome org>

	* Added fallback polling mechanism to trackerd c  This kicks
	  in if iNotify/FAM is not available (IE if home directory
	  is on an NFS mount) or if iNotify/FAM watch limits have
	  been exceeded 


2005-12-13  Jamie McCracken <jamiemcc at gnome org>

	* Imported initial version of Tracker into CVS


2005-09-15 Jamie McCracken <jamiemcc at gnome org>

	* Tracker Project started