-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathChangeLog
2197 lines (1279 loc) · 69.7 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2007-09-22 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.14.
2007-09-10 Robby Stephenson <robby@periapsis.org>
* Updated Spanish Ministry of Culture script to search out of prints book and add notes field.
* Updated tellico2html.js file for searching in HTML export.
* Updated GCstar import to parse new XML format in GCstar version 1.2.
2007-08-27 Robby Stephenson <robby@periapsis.org>
* Updated allocine.fr source script to version 0.4, thanks to Mathias Monnerville.
* Updated the Amazon.com search to allow searching for comic books.
* Updated the isbndb.com search to allow searching for comic books.
* Fixed ISBNdb search.
2007-08-25 Robby Stephenson <robby@periapsis.org>
* Changed default SRU port from 7090 to 80.
2007-08-23 Robby Stephenson <robby@periapsis.org>
* Update CSS in HTML export.
2007-08-10 Robby Stephenson <robby@periapsis.org>
* Fixed bug with yaz_iconv not flushing complete string for z39.50 search.
2007-08-09 Robby Stephenson <robby@periapsis.org>
* Added MARCXML to possible SRU format.
* Fixed bug with MARC stylesheets to work with better with embedded records.
2007-08-03 Robby Stephenson <robby@periapsis.org>
* Updated entry updating to work with all collection types.
2007-07-28 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.13.
2007-07-24 Robby Stephenson <robby@periapsis.org>
* Added spell-check for text and paragraph fields.
2007-07-22 Robby Stephenson <robby@periapsis.org>
* Added compatibility with yaz3.
2007-07-19 Robby Stephenson <robby@periapsis.org>
* Added importer for GCstar files.
* Fixed bug with namespace handling in Tellico XML loading.
2007-07-14 Robby Stephenson <robby@periapsis.org>
* Added Copac and National Library of Lithuania to z39.50 list.
2007-07-08 Robby Stephenson <robby@periapsis.org>
* Fixed crashing bug when adding items to a collection with loans.
2007-07-04 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.12.
* Changed z39.60 search event loop in an attemp to fix some intermittent freezes.
2007-06-26 Robby Stephenson <robby@periapsis.org>
* Changed Quick Filter to split text on white space and do an AND search.
* Bumped automake requirement to version 1.8 or later for macro to work.
* Fixed HTML export to not rewrite file location for files referenced in the XSL file which don't exist.
* Fixed Column View report to sort numerically when needed.
* Fixed Date fields to suppress empty date values.
* Fixed Date comparisons to work for single digits, patch from
Jake Maciejewski.
* Fixed Fields Dialog to show warnings when clicking Ok.
2007-06-22 Robby Stephenson <robby@periapsis.org>
* Added '\%' to bibtex translation table for comment escaping.
2007-05-30 Robby Stephenson <robby@periapsis.org>
* Fixed potential recursion bug for dependent fields.
2007-05-26 Robby Stephenson <robby@periapsis.org>
* Fixed bug that didn't write image size options when printing.
2007-05-09 Robby Stephenson <robby@periapsis.org>
* Added Turkish translation, thanks to Ali Isingor.
2007-05-08 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.11.
2007-05-06 Robby Stephenson <robby@periapsis.org>
* Improved file saving performance by caching image info on load.
2007-05-04 Robby Stephenson <robby@periapsis.org>
* Fixed a potential crashing bug for OpenOffice.org connection.
* Fixed bug that lost some images when loading directly from XML.
2007-04-13 Robby Stephenson <robby@periapsis.org>
* Fixed sorting for Dependent fields to match on subfields.
2007-04-12 Robby Stephenson <robby@periapsis.org>
* Fixed BibteXML export to include author.
* Fixed book collection conversion to bibliography to set entry type.
2007-04-10 Robby Stephenson <robby@periapsis.org>
* Updated IMDb search for director and writer.
* Fixed CDDB lookup on OpenBSD, patch from Marc Espie.
2007-04-07 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.10.
2007-04-03 Robby Stephenson <robby@periapsis.org>
* Improved accuracy and comprehensiveness of merging collections.
* Changed collection merge to concatenate paragraph fields.
* Fixed bug that hid some field groups after undoing append collection.
2007-04-01 Robby Stephenson <robby@periapsis.org>
* Added Blu-ray and HD DVD to video formats.
2007-03-31 Robby Stephenson <robby@periapsis.org>
* Updated ibs.it searching.
* Fixed searching to replace all HTML entities.
* Fixed character encoding for Alexandria import.
2007-03-29 Robby Stephenson <robby@periapsis.org>
* Updated Amazon API to 2007-02-22.
* Fixed error handling for ISBN-13 searches.
* Fixed bug that showed "ISBN Not Found" dialog in error.
2007-03-27 Robby Stephenson <robby@periapsis.org>
* Cleaned-up up ONIX export a bit.
* Fixed Alexandria export.
* Fixed importing covers from Alexandria.
2007-03-24 Robby Stephenson <robby@periapsis.org>
* Fixed bug that caused some amazon results to be hidden when repeating a search.
2007-03-20 Robby Stephenson <robby@periapsis.org>
* Fixed hanging bug when stopping a z39.50 search.
2007-03-14 Robby Stephenson <robby@periapsis.org>
* Fixed crashing bug when undoing a collection import or replacement.
2007-03-01 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.9.
2007-02-25 Robby Stephenson <robby@periapsis.org>
* Relaxed MODS processing to allow any result with typeOfResource="text"
* Fixed bug with adding space after commas in edit widget.
* Fixed bug with formatting of dependent fields always being capitalized.
2007-02-20 Robby Stephenson <robby@periapsis.org>
* Updated IMDb parsing for alternative titles and certifications.
2007-02-06 Robby Stephenson <robby@periapsis.org>
* Fixed sorting for rating groups with rating = 10.
2007-02-03 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.8.
2007-01-22 Robby Stephenson <robby@periapsis.org>
* Updated CDDB import to grab extd data as comments, and category as keyword.
2007-01-21 Robby Stephenson <robby@periapsis.org>
* Updated audio file importer to take disc number into account for mp3, ogg, and flac files.
2007-01-13 Robby Stephenson <robby@periapsis.org>
* Changed IMDB rating to allow float values.
* Fixed compile error for z3950 connection, patch from Markus Brueffer.
2007-01-04 Robby Stephenson <robby@periapsis.org>
* Fixed cleanup for deleting scripts installed from newstuff.
2007-01-03 Robby Stephenson <robby@periapsis.org>
* Fixed busy cursor hanging in newstuff download dialog.
2006-12-21 Robby Stephenson <robby@periapsis.org>
* Fixed "ISBN Not Found" dialog to have selectable text.
2006-12-19 Robby Stephenson <robby@periapsis.org>
* Fixed bug with comparing relative URLs for merging file catalogs.
2006-12-17 Robby Stephenson <robby@periapsis.org>
* Fixed bug with some results in z39.50 search not showing up,
due to search events getting processed out of order.
2006-12-07 Robby Stephenson <robby@periapsis.org>
* Fixed bug with secondary and tertiary sorting.
2006-12-06 Robby Stephenson <robby@periapsis.org>
* Bumped the Amazon ECS version to 2006-11-30.
* Updated Amazon search to allow ISBN-13 values.
* Updated de.po, thanks to Tobias Gruetzmacher.
* Fixed bug with saving URLs without the protocol.
* Changed entry comparison for files to match only on URL value.
* Released Tellico 1.2.7.
2006-12-04 Robby Stephenson <robby@periapsis.org>
* Improved performance for copying and deleting multiple entries.
2006-11-30 Robby Stephenson <robby@periapsis.org>
* Updated sorting to take title articles into account.
2006-11-29 Robby Stephenson <robby@periapsis.org>
* Fixed bug that caused image loss when loading from data file.
2006-11-10 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.6.
2006-11-09 Robby Stephenson <robby@periapsis.org>
* Improved TV show matching for IMDB.
2006-11-05 Robby Stephenson <robby@periapsis.org>
* Fixed crashing bug in ProgressItem, reported by Izaak Branderhorst.
2006-11-03 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.5.
2006-11-01 Robby Stephenson <robby@periapsis.org>
* Fixed another bug with over-writing images on entry update.
2006-10-24 Robby Stephenson <robby@periapsis.org>
* Updated yahoo audio search webservice url.
2006-10-18 Robby Stephenson <robby@periapsis.org>
* Updated allocine script (v 0.3), from Mathias Monnerville.
2006-10-15 Robby Stephenson <robby@periapsis.org>
* Fixed encoding bug with allocine.fr script.
2006-10-14 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.4.
2006-10-12 Robby Stephenson <robby@periapsis.org>
* Fixed bug with overwriting images when updating entries.
2006-10-11 Robby Stephenson <robby@periapsis.org>
* Improved performance on loading and unloading.
* Changed Nintendo 'Revolution' to 'Wii'.
2006-10-05 Robby Stephenson <robby@periapsis.org>
* Fixed off-by-one error in file listing volume name reader.
* Update allocine fetcher.
2006-09-25 Robby Stephenson <robby@periapsis.org>
* Fixed bug with fetch dialog showing all sources, instead of just relevant ones.
2006-09-24 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.3.
2006-09-20 Robby Stephenson <robby@periapsis.org>
* Added button to search dialog to get additional results.
2006-09-14 Robby Stephenson <robby@periapsis.org>
* Updated to work with KDE 3.3.1 or later.
2006-09-09 Robby Stephenson <robby@periapsis.org>
* Fixed bug with HTML export not including tellico2html.js.
2006-09-07 Robby Stephenson <robby@periapsis.org>
* Fixed bug that could cause loss of images.
* Fixed URL output in Image List report.
* Released Tellico 1.2.2.
2006-09-06 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.1.
2006-09-05 Robby Stephenson <robby@periapsis.org>
* Fixed CDDB cache importer to always assume utf-8, as in libkcddb.
* Changed bibtex exporter to add braces or quotes around url fields.
2006-09-04 Robby Stephenson <robby@periapsis.org>
* Fixed infinite loop in file listing importer.
* Increased default image cache size to 10 meg.
* Reworked image loading to avoid reloading large images as much as possible.
2006-09-02 Robby Stephenson <robby@periapsis.org>
* Fixed bug with CDDB not working (always using debug for Pink Floyd!)
2006-09-01 Robby Stephenson <robby@periapsis.org>
* Fixed bug with completion not working in filter dialog.
* Fixed bug with template image gradients not getting updated properly.
2006-08-31 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2.
2006-08-30 Robby Stephenson <robby@periapsis.org>
* Fixed crashing bug when using right-click in list view.
2006-08-16 Robby Stephenson <robby@periapsis.org>
* Added Abstract and Keywords to default fields for bibliographies.
2006-08-15 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2-pre3.
2006-08-09 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2-pre2.
2006-08-07 Robby Stephenson <robby@periapsis.org>
* Fixed bug with merging fields in CSV importer.
2006-08-06 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.2-pre1.
2006-08-06 Robby Stephenson <robby@periapsis.org>
* Added "next" and "prev" buttons to entry editor.
2006-08-04 Robby Stephenson <robby@periapsis.org>
* Changed HTML export to use libxml2 instead of KHTML for parsing. That should fix the "all text on one line" problem.
* Bumped minimum libxml2 verstion to 2.6.0 or greater.
2006-07-30 Robby Stephenson <robby@periapsis.org>
* Added bundled scripts for allocine.fr, Spanish Minstry of Culture, and Dark Horse Comics, all from Mathias Monnerville.
2005-11-13 Robby Stephenson <robby@periapsis.org>
* Bumped minimum KDE version to 3.3.
2006-07-18 Robby Stephenson <robby@periapsis.org>
* Added illustrator field to MODS translator.
2006-07-13 Robby Stephenson <robby@periapsis.org>
* Changed document saving to remember what format (Zip or XML) was opened, and save the file in the same format.
2006-07-04 Robby Stephenson <robby@periapsis.org>
* Updated sorting in HTML export to be locale-aware.
* Added auto-completion to filter dialog.
2006-06-30 Robby Stephenson <robby@periapsis.org>
* Improved ISBN-13 compliance.
2006-06-24 Robby Stephenson <robby@periapsis.org>
* Fixed bug with relative url links in template.
2006-06-22 Robby Stephenson <robby@periapsis.org>
* Fixed memory leak in image handling.
2006-06-16 Robby Stephenson <robby@periapsis.org>
* Changed IMDb and Amazon to always use iso-8859-1 encoding for URL.
2006-06-12 Robby Stephenson <robby@periapsis.org>
* Fixed bug with HTML export and MSIE.
2006-06-11 Robby Stephenson <robby@periapsis.org>
* Added date stamp to all report templates.
2006-06-07 Robby Stephenson <robby@periapsis.org>
* Fixed IMDb bug that hid partial name matches for duplicate names.
* Implemented workaround for NetAccess::download() that doesn't show download progress info.
2006-06-03 Robby Stephenson <robby@periapsis.org>
* Added validator for unmodified CueCat bar code reader.
2006-05-07 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.1.6.
2006-05-04 Regis Boudin
* Added French documentation.
2006-05-04 Robby Stephenson <robby@periapsis.org>
* Fixed bug that prevented some images from being written to data directory.
2006-04-22 Robby Stephenson <robby@periapsis.org>
* Add font and color config to templates.
2006-04-19 Robby Stephenson <robby@periapsis.org>
* Fixed bug with multiple ISBN search for z29.50.
* Fixed "disappearing paragraph" bug in Fancy template.
* Fixed name order for IBS searches.
* Released Tellico 1.1.5.
2006-04-12 Robby Stephenson <robby@periapsis.org>
* Added Xbox 360, Revolution and Playstation3 to game collection.
2006-04-11 Robby Stephenson <robby@periapsis.org>
* Added view config saving for custom collections based on URL.
* Fixed crashing bug when deleting and re-adding fields by same name.
* Fixed bug with HTML decoding in IMDb plot summary.
2006-04-10 Robby Stephenson <robby@periapsis.org>
* Fixed bug that re-added default fields when adding search results.
2006-04-07 Robby Stephenson <robby@periapsis.org>
* Added OS check (linux only) for enabling cd-text support.
2006-04-06 Robby Stephenson <robby@periapsis.org>
* Updated Spanish, thanks to Alejandro Hamann and Quique.
* Fixed bug with writing temporary files, even when using app data dir.
2006-04-03 Robby Stephenson <robby@periapsis.org>
* Improved PubMed fetcher to grab URL links.
2006-04-02 Robby Stephenson <robby@periapsis.org>
* Changed grouping list to be sorted alphabetically.
* Fixed OpenOffice.org plugin build for OOo SDK 2.0.2.
* Released Tellico 1.1.4.
2006-03-29 Robby Stephenson <robby@periapsis.org>
* Added referrer to IBS fetcher so images get downloaded.
2006-03-27 Robby Stephenson <robby@periapsis.org>
* Changed XSL templates to output valid HTML 4.01 Strict, patch from Karl Ove Hufthammer.
2006-03-25 Robby Stephenson <robby@periapsis.org>
* Added button for installing new templates.
2006-03-24 Robby Stephenson <robby@periapsis.org>
* Added context menu item in table widget for clearing table.
2006-03-23 Robby Stephenson <robby@periapsis.org>
* Added template preview button in configuration dialog.
* Added field for relative folder path to file catalog listing.
* Fixed bug with incorrectly setting document modified when loading images.
* Fixed bug with loading loans for entries with non-consecutive ids.
* Fixed bug that prevented XSLT files with spaces or other non-encoded characters from being opened.
* Fixed bug that caused crashes when changing grouping options
for some fields.
2006-03-15 Robby Stephenson <robby@periapsis.org>
* Fixed bug that prevented files saved with versions < 0.8 from
being opened.
2006-03-12 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.1.3.
2006-03-10 Robby Stephenson <robby@periapsis.org>
* Fixed bug with comic book template not showing up in a couple of
places in the GUI.
* Updated MARC2MODS3 stylesheet to MODS 3.1 from LoC.
* Added preset z39.50 server list.
2006-03-09 Robby Stephenson <robby@periapsis.org>
* Added isbndb.com fetcher.
* Fixed z39.50 search to use proper encoding for search terms.
2006-03-07 Robby Stephenson <robby@periapsis.org>
* Changed ISO 5426 converter to grab diaeresis instead of umlaut.
2006-03-05 Robby Stephenson <robby@periapsis.org>
* Added patch from Karl Ove Hufthammer, for lang-specific sorting.
* Released Tellico 1.1.2.
2006-03-04 Robby Stephenson <robby@periapsis.org>
* Fixed file save permissions to remember group.
* Fixed backup file permissions.
2006-03-02 Robby Stephenson <robby@periapsis.org>
* Fixed mess with shared pointers holding shared pointers holding
shared pointers...
* Fixed button size in HTML export.
2006-02-28 Robby Stephenson <robby@periapsis.org>
* Updated fr.po, thanks to Mathias Monnerville.
* Fixed GCfilms importer to read running time correctly.
* Use IMDb url for updating if available.
2006-02-27 Robby Stephenson <robby@periapsis.org>
* Added pt_BR, thanks to Claudio Felix.
2006-02-23 Robby Stephenson <robby@periapsis.org>
* Added dialog for importing new data sources.
2006-02-22 Robby Stephenson <robby@periapsis.org>
* Fixed HTML export to always use relative links.
* Fixed Fancy template column widths, patch from Karl Ove Hufthammer.
2006-02-20 Robby Stephenson <robby@periapsis.org>
* Add Ant Movie Catalog file importer.
2006-02-19 Robby Stephenson <robby@periapsis.org>
* Allow data sources to overwrite current data when updating.
2006-02-18 Robby Stephenson <robby@periapsis.org>
* Added dialog to choose from multiple CDDB lookup responses.
* Fields can have default values.
* Changed default IMDB server to akas.imdb.com.
2006-02-18 Robby Stephenson <robby@periapsis.org>
* Fixed cleanup when oowriter is closed.
* Fixed character encoding for IMDB searches.
* Released Tellico 1.1.1.
* Branched Tellico 1.1.x.
2006-02-17 Robby Stephenson <robby@periapsis.org>
* Fixed image linking in HTML export.
* Updated admin/ and Makefile.am for recent KDE updates.
* Changed installation directory of .desktop file to use xdg_appsdir.
2006-02-14 Robby Stephenson <robby@periapsis.org>
* Fixed templates to scale images down to max of 150x200.
2006-02-08 Robby Stephenson <robby@periapsis.org>
* Fixed bug with Video template not showing nationality.
* Added ISO 5426 and ISO 6937 character set converters, adapted from MARC4J;
2006-02-07 Robby Stephenson <robby@periapsis.org>
* Dual-licensed the documentation under the GFDL and the FreeBSD
Documentation License.
* Released Tellico 1.1.
2006-02-04 Robby Stephenson <robby@periapsis.org>
* Added track length to CDDB lookup result.
2006-02-01 Robby Stephenson <robby@periapsis.org>
* Fixed bug with not deleting some temporary files.
2006-01-29 Robby Stephenson <robby@periapsis.org>
* Updated bibtex-translation.xml, thanks to Norbert Nemec.
* Updated es.po, thanks to Alejandro Hamann.
2006-01-25 Robby Stephenson <robby@periapsis.org>
* Relaxed MODS importer to look for publisher, isbn, or lccn to
determine the entry is a book. Previously, a typeOfResource="text"
was required.
* Allowed z39.50 source to ask for MODS directly.
* Added message box for stderr output from scripts.
* Added simple GRS-1 importer for z39.50 fetcher.
2006-01-24 Robby Stephenson <robby@periapsis.org>
* Fixed bug with potential data los for saving image files after
changing config option.
* Released Tellico 1.1pre3.
2006-01-22 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.1pre2.
* Improved entry views with some graphics, a la amaroK.
2006-01-21 Robby Stephenson <robby@periapsis.org>
* Added drag-n-drop from Mozilla Firefox to image widget.
* Changed default behavior to include images in data file, and
added a config option.
* Added a message box warning about performance when the user
first opens a file with more than 100 images.
2006-01-20 Robby Stephenson <robby@periapsis.org>
* Fixed bug with parsing arguments to external data source scripts.
2006-01-19 Robby Stephenson <robby@periapsis.org>
* AnimneNfo.com source added by default, and IBS.it added if
Italian is in the user's language list.
* Alexandria exporter includes publishing year now.
2006-01-17 Robby Stephenson <robby@periapsis.org>
* Alexandria importer includes publishing year now.
2006-01-15 Robby Stephenson <robby@periapsis.org>
* Changed file saving to be smart about which images need written
to cache. Should improve save-time.
* Fixed bug with undo/redo not correctly reverting to old values.
2006-01-14 Robby Stephenson <robby@periapsis.org>
* Added Russian translation, from Artur Kalimullin.
2006-01-12 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.1pre1.
* Added/updated SRU fetcher.
2006-01-11 Robby Stephenson <robby@periapsis.org>
* Added Internet Bookshop (ibs.it) book source.
2006-01-10 Robby Stephenson <robby@periapsis.org>
* Added AnimeNfo.com search source.
2006-01-09 Robby Stephenson <robby@periapsis.org>
* Fixed Debian bug #346414 in hu.po.
2006-01-08 Robby Stephenson <robby@periapsis.org>
* Changed image loader to read and write images inside the Tellico
shared directory to speed up loading, etc.
2005-12-06 Robby Stephenson <robby@periapsis.org>
* Merged OpenOffice.org interop. Requires SDK for compilation.
2006-01-05 Robby Stephenson <robby@periapsis.org>
* Added Yahoo! Album Search source.
* Added Tri-Column video report template.
2005-12-15 Robby Stephenson <robby@periapsis.org>
* Expand external app fetcher to include any of the fetch keys.
2005-12-08 Robby Stephenson <robby@periapsis.org>
* Increased max table columns to 10.
2005-12-07 Robby Stephenson <robby@periapsis.org>
* Updated Amazon fetcher to allow selecting keywords or not.
2005-12-05 Robby Stephenson <robby@periapsis.org>
* Changed bibtex behavior to not add braces around capital letters.
2005-11-29 Robby Stephenson <robby@periapsis.org>
* Moved no-capitalization list to config dialog.
2005-11-28 Robby Stephenson <robby@periapsis.org>
* Updated Hungarian, from Csaba Zakarias.
2005-11-17 Robby Stephenson <robby@periapsis.org>
* Added separate UPC searching for Amazon.
2005-11-16 Robby Stephenson <robby@periapsis.org>
* Added CD-Text reading to FreeDBImporter, plus option to disable
compilation in case of platform issues.
* Move to Amazon ECS version 4.
2005-11-15 Robby Stephenson <robby@periapsis.org>
* Added IMDB rating field to fetcher.
2005-11-13 Robby Stephenson <robby@periapsis.org>
* Bumped minimum KDE version to 3.2 and minimum QT version to 3.2.
2005-11-10 Robby Stephenson <robby@periapsis.org>
* Custom data source fields are now configurable.
2005-11-07 Robby Stephenson <robby@periapsis.org>
* Made size of IMDb cast list configurable.
* Broke out cite actions into submenu, and added copying bibtex to clipboard.
2005-11-03 Robby Stephenson <robby@periapsis.org>
* Bumped XML syntax version to 9 to include file catalog and
changing default music collection track field to 3 columns.
2005-11-01 Robby Stephenson <robby@periapsis.org>
* Fixed compilation on GNU/kFreeBSD, Debian bug #336949, patch
from Aurelien Jarno.
2005-10-29 Robby Stephenson <robby@periapsis.org>
* Improved table fields to show column titles.
* Changed buttons to a right-click popup.
2005-10-27 Robby Stephenson <robby@periapsis.org>
* Improved audio file metadata importer to include track length as
an additional column in the track field.
2005-10-26 Robby Stephenson <robby@periapsis.org>
* The audio file importer now checks for track numbers in the file
name, patch from Andras Mantia.
2005-10-19 Robby Stephenson <robby@periapsis.org>
* Added a string store to reduce memory consumption.
2005-10-17 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.0.3.
2005-10-15 Robby Stephenson <robby@periapsis.org>
* Added buttons for inserting and removing rows from a table.
2005-10-13 Robby Stephenson <robby@periapsis.org>
* Enabled auto-updating for certain entries and data sources.
2005-10-12 Robby Stephenson <robby@periapsis.org>
* Updated it.po, from Lorenzo Novaro.
2005-10-11 Robby Stephenson <robby@periapsis.org>
* New and modified entries now show labels indicating so.
2005-10-08 Robby Stephenson <robby@periapsis.org>
* Improved status bar.
2005-10-07 Robby Stephenson <robby@periapsis.org>
* Updated CalendarHandler to compile with KDEPIM 3.5.
2005-10-06 Robby Stephenson <robby@periapsis.org>
* Fixed bug with bibtex macro names always being imported in lowercase.
2005-10-03 Robby Stephenson <robby@periapsis.org>
* Fixed bug with initialization, patch from Marco Clemencic.
2005-10-02 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.0.2.
* Updated IMDB fetcher.
2005-09-25 Robby Stephenson <robby@periapsis.org>
* Fixed bug with auto-detecting MARC encoding for z39.50 import.
2005-09-22 Robby Stephenson <robby@periapsis.org>
* Fixed bug with CSV importer not properly parsing some non-CSV files.
* Fixed bug with entry selection in icon view.
* Added GCfilms exporter;
2005-09-21 Robby Stephenson <robby@periapsis.org>
* Fixed bug with showing invalid loan due date.
* Added GCfilms importer.
* Added IMDB link when fetching info from IMDB.
* limited number of cast results form IMDB to 20;
2005-09-20 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.0.1.
2005-09-19 Robby Stephenson <robby@periapsis.org>
* Fixed bug with loading utf-8 encoded bibtex files.
2005-09-18 Robby Stephenson <robby@periapsis.org>
* Fixed bug with variable icon sizes in config dialog.
2005-09-16 Robby Stephenson <robby@periapsis.org>
* Fixed bug for merging field properties, which mostly showed up
as double-colons in music collection tracks.
* Fixed crashing bug with modifying filters and cancelling.
2005-09-11 Robby Stephenson <robby@periapsis.org>
* Added Norwegian Nynorsk translation from Karl Ove Hufthammer.
2005-09-10 Robby Stephenson <robby@periapsis.org>
* Fixed bug in audio file metadata import that was overwriting
track listings incorrectly.
* Fixed crashing bug for selecting groups and entries in group view.
2005-09-09 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.0.
2005-09-05 Robby Stephenson <robby@periapsis.org>
* Added Polish translaion from Marek Janukowicz.
2005-08-22 Robby Stephenson <robby@periapsis.org>
* Fixed bug with external application fetcher not reading path
entries correctly.
* Updated Spanish translation, thanks to Brian Hughes.
2005-08-21 Robby Stephenson <robby@periapsis.org>
* Updated Swedish, thanks to Peter Landgren.
* Added patch from Nix to dynamically resize table columns.
2005-08-20 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.0pre2.
2005-08-14 Robby Stephenson <robby@periapsis.org>
* Changed audio file metadata to ignore case when doing album
comparisons.
* Changed collection loader to better compensate for old rating
fields.
* Changed AddEntry command to act on multiple entries.
2005-08-11 Robby Stephenson <robby@periapsis.org>
* Updated Dutch translation, thanks to Fred Marchee.
* Updated Fininsh translation, thanks to Teuvo Eloranta.
2005-08-06 Robby Stephenson <robby@periapsis.org>
* Released Tellico 1.0pre1.
2005-08-04 Robby Stephenson <robby@periapsis.org>
* When exporting HTML, copy any relative images, etc.
2005-08-01 Robby Stephenson <robby@periapsis.org>
* Strip HTML tags from paragraph export to PilotDB.
2005-07-30 Robby Stephenson <robby@periapsis.org>
* Make the amazon importer default to medium images instead of none.
2005-07-28 Robby Stephenson <robby@periapsis.org>
* Make the 'Fancy' template default.
2005-07-01 Robby Stephenson <robby@periapsis.org>
* Released Tellico 0.13.8.
2005-06-30 Robby Stephenson <robby@periapsis.org>
* Fixed bug with CSV import parsing.
2005-06-28 Robby Stephenson <robby@periapsis.org>
* Added license exception for linking to OpenSSL.
2005-06-25 Robby Stephenson <robby@periapsis.org>
* Added a status message timeout for main window and fetch dialog.
2005-06-23 Robby Stephenson <robby@periapsis.org>
* Fixed crashing bug for fields with empty categories.
2005-06-22 Robby Stephenson <robby@periapsis.org>
* Added initial Catalan translation from David Majà Martínez.
2005-06-20 Robby Stephenson <robby@periapsis.org>
* Added fetcher for reading output from an external application.
* Fixed bug with wrong icon size for entry action.
2005-06-17 Robby Stephenson <robby@periapsis.org>
* Added video game collection type.
2005-06-12 Robby Stephenson <robby@periapsis.org>
* Added capability for recursively reading all CDDB cache files,
based on patch from Marco Hofmann.
2005-06-08 Robby Stephenson <robby@periapsis.org>
* Fixed bug with file extension defaulting to .bc.
2005-06-02 Robby Stephenson <robby@periapsis.org>
* Changed Table field to allow up to 5 columns. Deprecated Table2 type.
2005-06-01 Robby Stephenson <robby@periapsis.org>
* Added Rating field type.
2005-05-31 Robby Stephenson <robby@periapsis.org>
* Fixed bug with grouping by checkbox fields.
2005-05-30 Robby Stephenson <robby@periapsis.org>
* Updated Norwegian translation.
* Added Unimarc support to z39.50 importer.
2005-05-25 Robby Stephenson <robby@periapsis.org>