forked from FiloSottile/Griffith
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2381 lines (1801 loc) · 73.2 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
# $Id$ vim: ts=4
Griffith ChangeLog
------------------
(c) 2005-2012 Vasco Nunes, Piotr Ożarowski
2012-01-29 Michael Jahn
* [#923416] Connection failed. (Amazon plugin)
* [#913299] importing covers gives list index out of range
* [#913283] importer: 'poster' overwritten by 'image'
2012-01-10 Piotr Ożarowski
* Filmweb movie plugin updated (thanks to mariusz2806)
2012-01-08 Piotr Ożarowski
* Telico import plugin added (thanks to Elan Ruusamäe)
2012-01-07 Ivo Nunes
* Added a plugin for the portuguese website www.dvdpt.com
2012-01-02 Michael Jahn
* [#909513] code errors in import plugins
2011-12-27 Michael Jahn
* better error handling for PDF export plugin
2011-12-26 Piotr Ożarowski
* Restoring database from backup fixed
---- 0.13 ----
2011-12-18 Piotr Ożarowski
* Filmweb movie plugin updated (thanks to mariusz2806)
2011-12-02 Michael Jahn
* [#888347] FilmAffinity plugin doesn't work
* [#897774] removal of the first added subtitle format is not possible
2011-12-01 Michael Jahn
* [#885914] Amazon Plugin in Griffith doesn't work
2011-09-14 Michael Jahn
* [#815421] add ipython 0.11 compatibilty (thanks to Julian Taylor)
2011-09-12 Michael Jahn
* added limited urllib2 support
2011-09-04 Piotr Ożarowski
* AniDB movie plugin rewritten (uses HTTP XML API now) - needs lxml module
2011-09-01 Michael Jahn
* updated Allocine plugin, switch to JSON api
* added database maintenance extension
2011-08-30 Michael Jahn
* updated plugins: AllRovi, Cinemovies, Cineteka, CSFD, IMDb, Zelluloid
2011-08-23 Michael Jahn
* added buttons to remove and add a poster within the movie edit dialog
* fixed bug in extension "remover", it doesn't work if a criteria is required
(f.e. adv filter with "required tag" did only remove the tags not the movie entries)
* extension remover now respects the simple filter condition
2011-08-20 Michael Jahn
* updated KinoDe plugin
* new icons for loading and removing posters (toolbar and menu are now the same icons)
2011-08-10 Michael Jahn
* added new icons for the extensions (thanks to CinéphOli)
2011-07-18 Michael Jahn
* configurable default value for field "seen it"
* ability to switch the behaviour of the live search that it queries only after
enter is pressed (switchable via griffith.cfg only); good for bigger databases
* [#811685] IMDB movie ratings not updating when adding new movie
2011-06-22 Filippo Valsorda
* Fixed and completed PluginMovieMyMoviesIt (hidden bug)
* Added gutils.rtrim (think at string.rfind)
2011-06-20 Filippo Valsorda
* Refresh IMDB-it plugin
2011-06-20 Michael Jahn
* [#570053] Region selection shows DVD regions when media is not DVD.
(added Bluray regions)
2011-06-17 Michael Jahn
* [#725810] CSFD plugin is not working
2011-06-16 Michael Jahn
* [#721033] Wrong behaviour
2011-06-13 Michael Jahn
* [#789246] movies.studio field length too short in postgres
added a LengthValidator which truncates text fields
2011-06-01 Ivo Nunes
* fixed crash when you try fetching a movie's information without internet connection
2011-05-23 Michael Jahn
* updated MyMoviesIt plugin (full cast, screenplay, cameraman, director)
* [#721036] Problem to add a movie
2011-05-18 Michael Jahn
* updated CineMovies plugin (thanks to Olivier BOURSIN)
* small fixes for Allocine and AllRovi plugin
* added quick search for any field in the main window (thanks to Daniel Fetchinson)
2011-05-12 Michael Jahn
* added "virtual" resolutions (4:3 Fullscreen, Widescreen, Anamorphic Widescreen)
2011-05-05 Michael Jahn
* fixed movie plugin AllMovie, it is now AllRovi
* small fixes for CineMovies and HKMDB
2011-04-27 Filippo Valsorda
* New Interfilmes plugin by Elencarlos Soares
2011-04-22 Filippo Valsorda
* New CSFD plugin by Kamil Hanus
* Minor fixes in IMDB-it and MyMoviesIt plugins
* Fixed a typo in it.po
2011-03-20 Piotr Ożarowski
* "spellchekcer" typo fixed (thanks to Olivier BOURSIN)
2011-02-17 Vasco Nunes
* Added native Cocoa generic dialogs under macosx, using pyobjc.
2011-02-13 Piotr Ożarowski
* SQLAlchemy 0.7 compatibility changes
2011-02-12 Vasco Nunes
* Implemented MultiSelection support in MainTreeView
* Re-implemented macosx menubar integration
2011-02-10 Michael Jahn
* [#716176] 0.12.1 No postgres support on Windows
2011-02-07 Ivo Nunes
* Changed the way Mac OS X creates a new database so that it doesn't open external applications
* Fixed exporting under Mac OS X
2011-02-06 Ivo Nunes
* Fixed creating a new database and restoring backups under Mac OS X
2011-02-05 Vasco Nunes
* [#703576] no automatic refresh after get back a dvd
* Sync mac menubar when menu checkMenuItems are changed
* Fixed about dialog on macosx
2011-02-05 Ivo Nunes
* Fixed and re-enabled Mac OS X UI Cocoa menu integration
* Mac OS X UI Cocoa menu integration temporarily disabled due to being broken - using native GTK
* IMDB-pt plugin added
2011-02-03 Vasco Nunes
* MoviePTGate plugin updated
* Added MacOSX UI integration
* Some minor macosx specific changes
2011-02-02 Michael Jahn
* [#710860] cannot import imdb movie titles starting with a bracket
* [#708472] Upgrade 0.11-0.12 fails with PostgreSQL
* [#711015] [Enhancement][Plugin FilmAffinity] See the movie year in movie list
2011-02-01 Michael Jahn
* HTML export: sorting entries case-insensitive and respect current locale settings
2011-01-25 Michael Jahn
* [#300808] forgets some inputs in languages like codex&tracks
2011-01-21 Michael Jahn
* drop-down combobox for resolution field
2011-01-19 Michael Jahn
* [#700704] Incorrect dialog size for posters
* [#493148] The Save button in the preferences window does not work well
* open of the homepage from the about dialog fixed
* enabling persons without email address
2011-01-17 Michael Jahn
* [#703728] FilmAffinity: incomplete list of results
2011-01-16 Michael Jahn
* [#697018] CSV import not working when number field not checked
* [#702495] griffith start interrupts with "TypeError: value is of the wrong type for this column"
2011-01-14 Michael Jahn
* [#687621] Remains previous cover
* [#697029] Import dlg display error when previously x-ed out
2011-01-13 Michael Jahn
* KinoDe, IMDB-de, CineMovies and Zelluloid plugin updated
2011-01-10 Michael Jahn
* fixed iPod export plugin in case of missing values
* fixed deletion of the "created" value while updating a movie
2010-12-07 Piotr Ożarowski
* Fix few spelling mistakes (thanks to Olivier BOURSIN)
2010-12-03 Michael Jahn
* Zelluloid plugin updated
2010-11-23 Michael Jahn
* added screenplay, cameraman and barcode to the search criteria combobox
* sorted entries in the filter comboboxes of the main dialog
2010-11-16 Michael Jahn
* added fields screenplay, cameraman, width, height and barcode to the html export plugin
---- 0.12.1 ----
2010-10-18 Piotr Ożarowski
* Version changed to 0.12.1
2010-10-18 Michael Jahn
* stabilized upgrade procedure for databases which are corrupt after an interuption of a previous upgrade procedure
* enabled interactive search by number, title and original title in mainlist ("typeahead find")
2010-10-17 Michael Jahn
* Allocine plugin updated
* error fixed which prevents updates from pre-0.11 versions
2010-10-14 Michael Jahn
* E-Pipoca plugin updated
2010-10-09 Michael Jahn
* OFDb and IMDb plugin updated
2010-10-08 Piotr Ożarowski
* Filmweb movie plugin updated (thanks to Mariusz Szczepanek)
2010-10-08 Michael Jahn
* IMDb plugin updated
---- 0.12 ----
2010-10-03 Piotr Ożarowski
* Update translations
* Version changed to 0.12
2010-10-01 Michael Jahn
* [#640219] Original title is not well raised by Allocine plugin
2010-09-30 Michael Jahn
* saving the width of the columns of the mainlist
* default filter operator changed from equals to contains
2010-09-29 Michael Jahn
* added fields "created" and "updated" to movie entries
2010-09-25 Michael Jahn
* [#502990] Own settings will not be saved in HTML-Export
2010-09-15 Michael Jahn
* workaround for [#574370] freeze when i select existing mysql database
2010-08-29 Piotr Ożarowski
* Show deprecation warnings only in debug mode
2010-08-26 Michael Jahn
* small backup optimizations
2010-08-22 Michael Jahn
* reintroduce menu entry for loading and removing cover posters
2010-07-21 Michael Jahn
* compatibility fixes for sqlalchemy 0.6
* adjusting sqlite page size to the value of the filesystem page size
(performance optimization)
2010-07-15 Michael Jahn
* updated movie plugin FilmeVonA-Z
2010-07-14 Michael Jahn
* updated movie plugin AniDB
2010-06-25 Michael Jahn
* updated movie plugin KinoDe
* added HKMDB movie plugin
* [#596700] IMDB doesn't import original title correctly
2010-06-07 Michael Jahn
* added Clubedevideo movie plugin
2010-05-10 Michael Jahn
* updated movie plugin IMDB-de
* poster md5 wasn't saved if poster is already in database
2010-05-06 Michael Jahn
* [#324171] PDF Font Size
* support for covers, year, runtime, notes and plot for PDF export
elements for export can be deselected
2010-04-28 Piotr Ożarowski
* Use 255 as maximum string length for few fields (MySQL apparently
doesn't like >=256 on some configurations)
2010-04-21 Michael Jahn
* updated movie plugin AniDB
2010-03-28 Michael Jahn
* updated movie plugin WP
2010-03-27 Michael Jahn
* updated movie plugin IMDb-de, IMDb-es, Zelluloid
2010-03-12 Michael Jahn
* updated movie plugin DVDPalace
2010-03-04 Michael Jahn
* new import plugin: GriffithXML
2010-03-02 Michael Jahn
* [#525039] crashed while adding films wont reboot linux mint 8
* [#525869] Plugin FilmAffinity (ES) doesn't import genre
* IMDb movie plugin updated
2010-01-17 Michael Jahn
* Scope movie plugin added
2010-01-05 Michael Jahn
* delete button added to the advanced filter dialog
* updated movie plugin Cinematografo (year added to result list entries)
---- 0.11 ----
2010-01-09 Piotr Ożarowski
* Replace "Aspect ratio" field with "Resolution" (aspect ratio is hidden
for now)
* MyMoviesIt movie plugin updated (thanks to FiloSottile)
2010-01-06 Piotr Ożarowski
* Some cleanups
2010-01-05 Michael Jahn
* save and restore sorting column in main list
* updated movie plugin Stopklatka
2010-01-04 Piotr Ożarowski
* Add Croatian translation (thanks to Davor I and nafterburner)
2010-01-04 Michael Jahn
* add MoviePosterDB extension (supports fetching posters)
2010-01-03 Michael Jahn
* added column header row and some more columns to the basic CSV export
* added support of adding new collections, volumes, medium and vcodecs while importing data
(regards different import plugins)
* added support for fields screenplay, cameraman and barcode to the CSV import plugin
2010-01-01 Michael Jahn
* [#501526] Error in export GCStar/DVDProfilerXMLExportV2/3
* updated movie plugin Allocine
2009-12-28 Michael Jahn
* updated movie plugin Allocine, Amazon, FilmDb
* updated import plugin CSV
(optional auto-detect dialect settings, fixed pre-selection of encoding)
2009-12-23 Michael Jahn
* updated movie plugin Cinematografo
2009-12-22 Piotr Ożarowski
* Fix few spelling mistakes (thanks to Sean Cass)
* Version changed to 0.11
2009-12-21 Michael Jahn
* updated movie plugin Kino.de, Cinematografo
2009-12-20 Piotr Ożarowski
* Add "Extensions toolbar" menu item
2009-12-15 Michael Jahn
* new import plugin: MovieTrack
2009-12-12 Michael Jahn
* new import plugins: All My Movies, BES The Movie Library, Fox Movie Manager, MyDVDs, The Movie Library
(all MS Access / Jet DB based)
* cleanup import sections of other import plugins
2009-12-08 Michael Jahn
* [#486258] no refresh when a filter is active
* [#418911] It doesn't import cover art from FilmAffinity
* movie plugin test data updated
2009-12-01 Michael Jahn
* re-introducing a debug window on windows platforms (activated via --debug)
2009-11-22 Michael Jahn
* wintoolz Filmdatenbank import plugin added
* [#480380] Extensions: Amazon and Remover
2009-11-18 Michael Jahn
* fixed some issues with the functions "new db" and "restore db"
* [#480366] ImportError: No module named extensions
2009-11-17 Michael Jahn
* load and save of extensions preferences
* [#484385] Export to XML: no image filename exported to XML-File
2009-11-10 Michael Jahn
* updated movie plugins Allocine and FilmAffinity
2009-11-06 Michael Jahn
* Personal Video Database import plugin added
* fixed amazon binding (generation of signed urls added but
every user needs an amazon account for the access key and secret key)
2009-10-16 Michael Jahn
* eXtreme Movie Manager import plugin added
* import support for movie detail video codec
* "Remover" extensions removes associated tags and languages
before removing the movie entry
2009-10-13 Michael Jahn
* support for posters for import plugins GCstar and AMC
* [#410362] AMC importer doesn't import cover pictures
2009-10-07 Michael Jahn
* DVD Profiler import plugin added
* very small update for AMC import plugin (medium typ)
* import base class: support for looking up medium types and adding tags,
barcode, cameraman, screenplay
* import stabilized with try-except and error message box
2009-09-30 Piotr Ożarowski
* Change log format
2009-09-29 Michael Jahn
* GCstar import plugin added
2009-09-26 Piotr Ożarowski
* Display popup message during database upgrades
2009-09-25 Michael Jahn
* Amazon movie plugin updated
2009-09-14 Piotr Ożarowski
* Add "Remover" extension (removes selected movies)
2009-09-02 Michael Jahn
* [#336855] Error being reported saving posters
cleanup of generating thumbnail versions of the images
and filenames for default image/thumbnail
2009-08-28 Piotr Ożarowski
* [Bug 420462] --clean fixed
2009-08-26 Michael Jahn
* [#418911] It doesn't import cover art from FilmAffinity
2009-08-20 Piotr Ożarowski
* Add pool_recycle parameter in config file and set the default to 1 hour
(SQLAlchemy will recycle MySQL connections after given number of seconds
of inactivity - fixes "MySQL server has gone away" issue)
2009-08-18 Piotr Ożarowski
* Fix update_movie() to actually load the image
2009-08-13 Piotr Ożarowski
* Add 'Mark as seen' extension
* Allow PNG images to be used as toolbar icons by extensions
* gutils.question now returns True or False
2009-08-12 Piotr Ożarowski
* Remove Amazon stuff from preferences window
* Region 2 and 4 names shorten (to fit in preferences window)
* Show tabs on the left side of preferences window
* Show extension settings in preferences
2009-08-11 Piotr Ożarowski
* Add Player extension
2009-08-09 Piotr Ożarowski
* Version changed to 0.11~svn
* Initial structure for extensions created
+ ~/.griffith/lib/extensions can be used for user's extensions
* Amazon posters feature converted to Griffith extension
---- 0.10 ----
2009-08-03 Piotr Ożarowski
* Releasing 0.10
2009-07-13 Piotr Ożarowski
* Version changed to 0.10-rc1+svn
* Filtering Volumes/Collections by loaned flag fixed
---- 0.10-rc1 ----
2009-07-12 Piotr Ożarowski
* Loaning collections with lots of movies inside will work faster now
* AniDB movie plugin updated (thanks to nickpick)
* Translation files synchronized with Rosetta
2009-07-10 Michael Jahn
* new export plugins: Ant Movie Catalog, GCstar, DVD Profiler XML Export V2 and V3
2009-07-07 Michael Jahn
* updated Allocine, CineMovies, IMDb-de, MovieMeter, Zelluloid plugin
2009-07-06 Piotr Ożarowski
* Reorganize ORM stuff file structure (db module moved to db package)
2009-07-05 Piotr Ożarowski
* Use SQLAlchemy's PickleType to store search conditions
(old rules are removed without warning - beta version privilege ;)
* Remove ilike from search criteria
* Update current value of sequence after restoring data from backup in
PostgreSQL
* Loan details and history added to the movie db model
2009-07-04 Piotr Ożarowski
* Version changed to 0.10-beta3+svn
* [#305123] If Region 0 (no region data) is selected, save "0" in
database otherwise default region will be used
* Mail content can be translated again (gettext issue fixed)
* [#269865] Don't change movie plugin selection after adding a movie
* Rollback all pending operations before creating new database
* Poster window (if visible) is updated along with current movie change
2009-07-03 Michael Jahn
* updated IMDb plugin
* added Ant Movie Catalog import plugin
---- 0.10-beta3 ----
2009-06-11 Piotr Ożarowski
* Don't try to open advfilter window if it's already opened
* Add "Full screen" switch in View menu
* Add "Open search window" in Tools menu
* Add "Select database" in File menu (shortcut to preferences page)
* Close poster viewer window if poster button clicked again
* Add suggestions for database names (taken from .db file names)
* Translation files synchronized with Rosetta
* Releasing 0.10-beta3
2009-06-10 Piotr Ożarowski
* Restoring from backup finally works with external databases
* Don't save full paths in backups
* Backup from MySQL fixed
2009-06-08 Piotr Ożarowski
* Restoring from backup to PostgreSQL/MySQL partially works via merging
2009-06-07 Piotr Ożarowski
* Recognize more resolution aliases
2009-05-24 Michael Jahn
* updated CineMovies, FilmAffinity, FilmDb, OFDb plugin
* added proxy support for MovieMeter plugin
2009-05-18 Michael Jahn
* [#377417] URL contains non-ASCII characters
2009-05-05 Michael Jahn
* added MovieMeter plugin
2009-04-17 Michael Jahn
* updated FilmAffinity plugin
* updated Filmtipset plugin
2009-04-16 Michael Jahn
* updated Culturalia plugin
* updated E-Pipoca plugin
2009-04-15 Michael Jahn
* added data for automated tests of the IMDB plugin
* added data for automated tests of the CineMovies plugin
* updated CineMovies plugin
* updated Cineteka plugin
* updated FilmDb plugin
2009-04-08 Michael Jahn
* added AllMovie plugin
2009-04-06 Michael Jahn
* [#348226] DVD Empire lookup problem
2009-04-05 Michael Jahn
* [#269907] PluginMovieFilmDb.py: list index out of range
and complete update of the plugin with test data
2009-04-02 Michael Jahn
* IMDB-de plugin updated
2009-03-29 Michael Jahn
* [#224546] Plot isn't being pulled from IMDB for some movies
* [#341826] "Country" field from IMDB contains newlines
2009-03-10 Michael Jahn
* [#337758] 'Titel' and 'Original Titel' get the same content
(IMDb-de plugin updated)
* added HD DVD and Blu-ray to the medium table for new databases
2009-03-03 Michael Jahn
* Cinematografo movie plugin updated
2009-02-28 Michael Jahn
* screenplay, cameraman, resolution and barcode added to Search-For
section in preferences
2009-02-24 Michael Jahn
* Amazon posters: removing of temporary files fixed
2009-02-12 Piotr Ożarowski
* Add new default tag: "Buy me"
2009-02-11 Piotr Ożarowski
* Version changed to 0.10-beta3~svn
* Backup function fixed
* PostgreSQL/MySQL backup support added
---- 0.10-beta2 ----
2009-02-10 Piotr Ożarowski
* Fix upgrading from v2 to v4 (columns that are not available yet, are not
used)
* Releasing 0.10-beta2
2009-02-07 Michael Jahn
* CineMovies movie plugin updated
2009-02-05 Michael Jahn
* AniDB movie plugin updated
2009-02-01 Piotr Ożarowski
* Add interactive shell (--shell commandline option)
* Add barcode column to the movie table
* Add resolution (width and height columns) to the movie table
* Change default type of runtime and year to SmallInteger
2009-01-31 Michael Jahn
* Allocine movie plugin updated
* small unicode fixes for 7arte movie plugin
2009-01-28 Michael Jahn
* FilmAffinity movie plugin updated
2009-01-24 Michael Jahn
* DVD-Palace movie plugin updated
2009-01-22 Michael Jahn
* fixed Greek translation of the word "Danish" (thanks to Johnny)
2009-01-18 Piotr Ożarowski
* Upgrading from 0.6.2 partially fixed (posters are missing)
* Add loaned_movies_count and returned_movies_count properties to Person
2009-01-17 Piotr Ożarowski
* Use MediumBLOB on MySQL to store posters. Database has to be recreated
if 0.10-beta1 was used to create it.
* Few SQL optimizations
2009-01-16 Piotr Ożarowski
* Print move details during startup in debug mode
2009-01-16 Michael Jahn
* [#317837] 007 james bond (PDF export grouping error)
2009-01-15 Michael Jahn
* Amazon movie plugin updated
* better results for amazon poster search
* movie plugin base class prepared for fetching screenplay and cameraman,
added fetching of screenplay to IMDB plugin
2009-01-06 Michael Jahn
* MovieFone movie plugin updated
* windows installer: movie import plugins deselectable from installation
2009-01-04 Piotr Ożarowski
* MyMoviesIt movie plugin added (thanks to Giovanni Sposito)
2009-01-03 Michael Jahn
* [#313012] correctly round ratings
2009-01-02 Michael Jahn
* PTGate movie plugin updated
2008-12-25 Michael Jahn
* [#309373] export to pdf
* Cinematografo movie plugin updated
2008-12-19 Michael Jahn
* OFDb, IMDB-de movie plugin updated
2008-12-16 Michael Jahn
* IMDB movie plugin updated
2008-12-16 Piotr Ożarowski
* Reload movie plugin each time search is performed (in --debug mode only,
this should ease writing plugins)
* Canceling search doesn't throw exception anymore (closes: 100038)
2008-12-07 Piotr Ożarowski
* update_image(): update the md5 *after* all other queries (so that UPDATE
will not be invoked)
2008-12-07 Piotr Ożarowski
* CSFD movie plugin updated (thanks to Aleš Nejdr)
2008-12-03 Piotr Ożarowski
* Add few indexes to the model
2008-12-01 Piotr Ożarowski
* HTML export plugin exports posters again (closes: 304072)
2008-11-30 Piotr Ożarowski
* CSFD movie plugin updated (thanks to Otakar)
2008-11-25 Michael Jahn
* fixed some amazon and unicode errors
2008-11-22 Michael Jahn
* use unicode for fetched html pages in general
* fixed rating, runtime and year are not shown with MySQL backend
2008-11-10 Michael Jahn
* optimized windows setup related code, added links to documentation
files, forum and wiki to the installer
2008-11-18 Piotr Ożarowski
* Version changed to 0.10-beta2~svn
* command line's search fixed
---- 0.10-beta1 ----
2008-11-17 Piotr Ożarowski
* Add --version/-v command line options
* Add bash completion script
* Version changed to 0.10-beta1
* Update Polish translation
2008-11-16 Piotr Ożarowski
* fail if database requires newer Griffith version
* Rename backup/restore menu items
* Warn about developement version only once
+ home / config/ posters directory detected before initializing Griffith
2008-11-15 Piotr Ożarowski
* Export plugins are now exporting movies listed in main window
* Replace "by ..." quick filter combo boxes with saved search conditions
2008-11-13 Piotr Ożarowski
* update translations
* sync with 0.9.x branch
2008-11-10 Michael Jahn
* updated plugins IMDB-de, Amazon, Kino.de, FilmeVonAZ
2008-11-01 Michael Jahn
* updated IMDB plugin
2008-10-26 Michael Jahn
* [#179618] During "Get from Web ", griffith window keeps stealing focus
2008-10-23 Michael Jahn
* PDF export: disabled movie grouping if movie list is not sorted by title
or original title
* [#258817] The application doesn't save volume
2008-10-25 Piotr Ożarowski
* add load/save search conditions
2008-10-23 Michael Jahn
* updated IMDB-de, Kino.de, Zelluloid plugin
* added original url check within plugin test
2008-10-23 Piotr Ożarowski
* clean/restore search conditions in advfilter
2008-10-19 Piotr Ożarowski
* Add more filter movie rules to the search window
* Screenplay and cameraman added to main/add windows
2008-10-18 Piotr Ożarowski
* Speed up import movies function
2008-09-23 Michael Jahn
* [#273172] "Properties/Volume/show...in this volume" is broken
2008-09-14 Piotr Ożarowski
* Warn about backups when starting develpement version
* seen/loaned settings available in adv. filter window (much more to come
soon)
2008-09-13 Piotr Ożarowski
* Loaning movies is working again
2008-09-12 Piotr Ożarowski
* Validate loan contact's email address
* Python required version bumped to 2.4 (it was required for a while
aready)
* Use SQLAlchemy's validate decorator (minimum required SA version bumped
to 0.5rc1)
2008-09-09 Piotr Ożarowski
* Add aspect ratio, cameraman and screenplay to the database
2008-08-16 Michael Jahn
* fixed support for german umlauts in OFDb plugin
* added Amazon plugin (supports search by UPC/EAN)
* added Amazon language support for CA and FR
* Amazon support is now closer to the current specification
* encoding error in plugins Kino.de and Zelluloid
2008-08-14 Michael Jahn
* pdf export: group movies with numbers 0-9 (thanks to Luigi Pantano)
* pdf export: [#174463] Database Export as PDF doesn't work under Ubuntu
2008-08-12 Piotr Ożarowski
* Don't refresh movie list while updating quick filter combos
* FDb movie plugin updated (thanks to Bartosz Kurczewski)
2008-08-03 Piotr Ożarowski
* Initial advanced search/filter function implemented (alpha stage)
2008-08-02 Piotr Ożarowski
* Use unicode in gettext and SQLAlchemy
* Move all posters to database, create local cache
2008-07-31 Piotr Ożarowski
* Replace gdebug with Python's logging module
* Add posters table (to store posters in database)
2008-07-30 Michael Jahn
* [#253272] extra information columns not loaded on startup
* extended debug support on windows platforms
2008-07-28 Piotr Ożarowski
* Switch back to 4 spaces indentation
* Rewrite SQLAlchemy related data to use session (to ease accessing
simultaneously multiple databases)
---- 0.9.7.1 ----
2008-07-26 Piotr Ożarowski
* Links to Griffith's homepage and bug tracker updated
* Version changed to 0.9.7
2008-07-24 Michael Jahn
* main treeview doesn't accept DB-NULL or empty strings for the int-fields
rating, year and runtime
2008-07-24 Michael Jahn
* Windows only: set_wrap_width doesn't work in filter toolbar without side
effects if GTK 2.12.9 is used
* updated INSTALL file to new versions (GTK, Glade, PyGTK, py2exe,
pywin32, Inno Setup)
* fixed URL creation in setup script; added removing of .pyo files if
deinstalled
---- 0.9.7 ----
2008-07-21 Piotr Ożarowski
* Fixed HTML export plugin (sorting issue)
* Amazon posters - don't fail if LargeImage attribute is not set
* Filmweb movie plugin updated (thanks to mariusz2806)
* Added Latvian translation (thanks to Aleksandrs Zdancuks)
* Added Ukrainian translation (thanks to vazaz)
* Updated translations: bg, ca, da, de, el, es, fr, it, nb, pt, pt_BR, ru,
sv, tr
* Version changed to 0.9.7
2008-07-18 Michael Jahn
* added User-Agent support, because some web sites doesn't like the Python
urllib default
* updated Zelluloid plugin
* support for accents in titles for searching if plugin needs it
(Zelluloid needs german umlauts)
2008-07-17 Michael Jahn
* updated OFDb plugin
* added column rating to the mainlist
* [#226269] default folders hardcoded (not fully fixed)
2008-07-13 Michael Jahn
* updated DVDEmpire plugin
* [#236598] scroll bar in filter "by volume" appears
* fixed loan label in main view if html entities are used in the name of a
person
2008-07-11 Michael Jahn
* added quick filter for tags
* [#244676] Griffith loses focus
2008-07-10 Michael Jahn
* updated Filmtipset plugin
2008-05-09 Michael Jahn
* added cast, genre and grouping by first letter to pdf export (thanks to
Luigi Pantano)
2008-05-08 Michael Jahn
* updated DVD Empire plugin
2008-04-25 Michael Jahn
* fixed fetching posters from Amazon
2008-04-13 Michael Jahn
* updated OFDb plugin
2008-04-01 Michael Jahn
* fixed html export if sorted by collection, media, video codec or volume
2008-03-22 Piotr Ożarowski
* Python>=2.4's xml module compatibility added
2008-03-15 Michael Jahn
* quick filter for loaned-to
2008-03-04 Vasco Nunes
* Serbian language file updated (thanks to Sasa Petrovic)
* Portuguese language file updated
2008-02-18 Piotr Ożarowski
* Filmweb movie plugin updated (thanks to Mariusz)
* Windows 64 bit is not detected correctly
2008-02-12 Michael Jahn
* fixed selecting of quick filter volume and collection in main view
2008-02-11 Vasco Nunes
* Added serbian language file (thanks to Sasa Petrovic)
2008-02-09 Michael Jahn
* sort collection list and volume list by name
2008-02-03 Michael Jahn
* hit enter key in title/original title box starts retrieving data from
web for a new entry
* HTML export: replace linebreaks with <br /> in the data if "XHTML 1.0"
is found in the template header
---- 0.9.6 ----
2008-01-27 Michael Jahn
* Zelluloid plugin updated
2008-01-27 Piotr Ożarowski
* AniDB and Stopklatka movie plugins updated
2008-01-26 Piotr Ożarowski
* Translators tab (about dialog) filled in automatically
2008-01-13 Piotr Ożarowski
* Distribute local copy of SQLAlchemy 0.3.11 (Griffith 0.10 which will
work with SQLAlchemy 0.4.x is not ready yet)
* Version changed to 0.9.6
* Update .desktop file to Desktop Entry Specification's version 1.0
2008-01-10 Michael Jahn
* OFDb plugin updated
2008-01-06 Michael Jahn
* fixed pdf export with non-ascii characters [#174463]
2007-12-16 Piotr Ożarowski
* Version changed to 0.10~svn
* Started working on SQLAlchemy 0.4.x compatibility (NOT YET READY)
2007-12-08 Vasco Nunes
* Danish language file updated
2007-12-07 Vasco Nunes
* Spanish language file updated
2007-11-30 Michael Jahn
* HTML export supports video codec name
* quick filter for volumes
* export plugins remember the last directory which was used
2007-11-29 Vasco Nunes
* Russian language file updated
2007-11-28 Michael Jahn
* [#164966] deactivating spellchecker option in preferences dialog
disables the depending elements
2007-11-22 Michael Jahn
* added columns genre, seen, runtime and year to the mainlist
* enabled reorderable columns
* column order is saved
2007-11-12 Michael Jahn
* Kino.de plugin updated
* fixed pdf export with non-ascii characters in filenames and data
* pdf export supports sort column from configuration
2007-11-08 Michael Jahn
* status bar shows count of movies after applying a filter
* changed HTML export:
+ exported poster file names contain the movie number instead of the
random name
+ movies without a poster get the griffith picture