forked from gramps-project/gramps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
984 lines (606 loc) · 30.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
2017-02-20 prculley <paulr2787@gmail.com>
* gramps/gui/undohistory.py: fix Undo; crashes due to race in Gtk Some Redraws occur during a model clear when the row changed signal
is emmitted. Model is only partially cleared at that point. Under
some conditions, some more of the model gets cleared before the
redraw completes, and redraw fails. fixes #9932
2017-08-26 prculley <paulr2787@gmail.com>
* gramps/gen/simple/_simpleaccess.py: Fix for deleted objects
referenced in Note StyledText Links Fixes #10178
2017-08-22 prculley <paulr2787@gmail.com>
* gramps/plugins/export/exportgedcom.py,
gramps/plugins/lib/libgedcom.py: pylint on Gedcom importer and
exporter
2017-09-01 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-09-01 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/dbman.py: show correct list of buttons when FTM started
2017-08-31 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/dbman.py: don't show 'Archive' button on Windows, it
doesn't exist there
2017-08-29 Bernard Banko <beernarrd@gmail.com>
* po/sl.po: update sl.po to latest .pot
2017-08-29 Bernard Banko <beernarrd@gmail.com>
* po/sl.po: updated slovenian translation
2017-08-28 Zdeněk Hataš <zdenek.hatas@gmail.com>
* po/cs.po: Update Czech translation
2017-08-28 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-08-26 niememat <niememat@gmail.com>
* po/fi.po: Update fix finnish translation
2017-08-26 niememat <niememat@gmail.com>
* po/fi.po: Update finnish translation
2017-08-25 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: Update German translation
2017-08-25 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/basepage.py: Apply changes from 9881 not
in refactoring Bug #009881, #010172
2017-08-23 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/common.py: Strange index and surnames
count in narrative web Fixes #010172
2017-08-23 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/narrativeweb.py: After the patch for
loop, some missing references Fixes #010168
2017-08-21 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/dbman.py, po/gramps.pot: new gramps.pot translation
template
2017-08-21 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/basepage.py: 10169: timestamp set to zero
makes gramps crash on windows.
2017-08-21 Paul Franklin <pf.98052@gmail.com>
* gramps/cli/plug/__init__.py,
gramps/gen/datehandler/_datedisplay.py,
gramps/gen/display/place.py,
gramps/gen/filters/rules/repository/_hasrepo.py,
gramps/gui/merge/mergeperson.py, gramps/gui/plug/_dialogs.py,
gramps/gui/plug/_windows.py,
gramps/gui/views/treemodels/citationbasemodel.py,
gramps/gui/views/treemodels/eventmodel.py,
gramps/gui/views/treemodels/familymodel.py,
gramps/gui/views/treemodels/mediamodel.py,
gramps/gui/views/treemodels/notemodel.py,
gramps/gui/views/treemodels/peoplemodel.py,
gramps/gui/views/treemodels/placemodel.py,
gramps/gui/views/treemodels/repomodel.py,
gramps/gui/views/treemodels/sourcemodel.py,
gramps/plugins/db/bsddb/upgrade.py,
gramps/plugins/docgen/cairodoc.py,
gramps/plugins/drawreport/fanchart.py,
gramps/plugins/gramplet/persondetails.py,
gramps/plugins/gramplet/whatsnext.py,
gramps/plugins/graph/gvrelgraph.py,
gramps/plugins/importer/importgeneweb.py,
gramps/plugins/importer/importprogen.py,
gramps/plugins/lib/libgedcom.py,
gramps/plugins/lib/libplaceimport.py,
gramps/plugins/lib/maps/geography.py,
gramps/plugins/mapservices/eniroswedenmap.py,
gramps/plugins/quickview/all_relations.py,
gramps/plugins/quickview/lineage.py,
gramps/plugins/textreport/descendreport.py,
gramps/plugins/tool/notrelated.py, gramps/plugins/tool/relcalc.py,
gramps/plugins/webreport/common.py,
gramps/plugins/webreport/narrativeweb.py,
gramps/plugins/webreport/person.py,
gramps/plugins/webreport/webcal.py: 7276: translate some
currently-untranslated punctuation marks
2017-08-21 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/webreport/citation.py, po/POTFILES.in,
po/POTFILES.skip: proofread and tidy up both POTFILES.in and
POTFILES.skip
2017-08-21 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-08-21 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/narrativeweb.py: Better solution for
avoiding loop in narrativeweb.
2017-08-20 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/narrativeweb.py: Avoid loop in
narrativeweb with citation, source, and media.
2017-08-20 Nick Hall <nick-h@gramps-project.org>
* gramps/gui/dbman.py: Use the default database backend for database
conversion
2017-08-20 Nick Hall <nick-h@gramps-project.org>
* gramps/cli/clidbman.py, gramps/gui/dbman.py: Remove version from
the database type column The version is still available in the information dialog and from
the command line.
2017-08-19 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/webreport/person.py: cope with pathlogical "person"
2017-08-11 prculley <paulr2787@gmail.com>
* gramps/gen/plug/_gramplet.py, gramps/gen/utils/callback.py:
Correct issue with exception on database change in Gramplets Fixes #10147
2017-08-19 Serge Noiraud <Serge.Noiraud@laposte.net>
* gramps/plugins/webreport/addressbook.py,
gramps/plugins/webreport/addressbooklist.py,
gramps/plugins/webreport/basepage.py,
gramps/plugins/webreport/citation.py,
gramps/plugins/webreport/common.py,
gramps/plugins/webreport/contact.py,
gramps/plugins/webreport/download.py,
gramps/plugins/webreport/event.py,
gramps/plugins/webreport/family.py,
gramps/plugins/webreport/home.py,
gramps/plugins/webreport/introduction.py,
gramps/plugins/webreport/media.py,
gramps/plugins/webreport/narrativeweb.py,
gramps/plugins/webreport/person.py,
gramps/plugins/webreport/place.py,
gramps/plugins/webreport/repository.py,
gramps/plugins/webreport/source.py,
gramps/plugins/webreport/statistics.py,
gramps/plugins/webreport/surname.py,
gramps/plugins/webreport/surnamelist.py,
gramps/plugins/webreport/thumbnail.py,
gramps/plugins/webreport/webplugins.gpr.py: Reorganization of the
narrative web report. (#445) * Reorganization of the narrative web report. Resolves #010151, #07740 * Add empty role to person and family backref lists
2017-08-11 prculley <paulr2787@gmail.com>
* gramps/gen/db/generic.py: Fix for InMemory db close error
2017-08-14 niememat <niememat@gmail.com>
* po/fi.po: Update fix finnish translation
2017-08-14 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-08-12 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/datehandler/_date_sv.py: Cannot edit dates in Swedish
locale and "day month year" format Fixes #10149
2017-08-10 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/db/dbapi/postgresql.gpr.py: Gramps does not check
[for] installed DB backend on DB selector Fixes #10148
2017-08-10 Paul Culley <paulr2787@gmail.com>
* gramps/gen/lib/note.py: Typo in note get_schema (#444)
2017-08-10 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/importer/importxml.py: Crash when import complex
.gramps 5.0 current branch backup file Fixes #10152
2017-08-10 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/datehandler/_dateparser.py: add a few comments to the
date parser (since I keep forgetting)
2017-08-07 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/datehandler/_datedisplay.py: fix no-day numeric date
display in y-m-d locales
2017-08-06 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/dialog.py: translate three small-dialog "close" buttons
2017-08-05 Kaj Mikkelsen <kmi@vgdata.dk>
* po/da.po: New danish translation after review
2017-08-03 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update Germantranslation
2017-08-01 romjerome <romjerome@users.noreply.github.com>
* po/fr.po: update french translation
2017-08-01 romjerome <romjerome@users.noreply.github.com>
* MANIFEST.in, NEWS: merge forward (working release steps on
gramps42)
2017-07-31 Paulo Henrique Paiva de Moraes <paulohpmoraes@gmail.com>
* po/pt_BR.po: update Brazilian Portuguese translation
2017-07-31 Paulo Henrique Paiva de Moraes <paulohpmoraes@gmail.com>
* po/pt_BR.po: update Brazilian Portuguese translation
2017-07-31 Bernard Banko <beernarrd@gmail.com>
* po/sl.po: Slovenian translation update
2017-07-31 Zdeněk Hataš <zdenek.hatas@gmail.com>
* po/cs.po: czech translation update
2017-07-30 Kaj Mikkelsen <kmi@vgdata.dk>
* po/da.po: update Danish translation
2017-07-30 Paul Franklin <pf.98052@gmail.com>
* po/it.po, po/mk.po, po/pl.po, po/sq.po: remove obsolete
translations (with doubled-percent-signs)
2017-07-30 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-07-30 niememat <niememat@gmail.com>
* po/fi.po: Update finnish translation
2017-07-29 Paul Franklin <pf.98052@gmail.com>
* po/gramps.pot: new gramps.pot translation template
2017-07-29 Paul Franklin <pf.98052@gmail.com>
* po/POTFILES.in, po/POTFILES.skip: tidy up POTFILES.* (add recently
translatable modules, etc.)
2017-07-29 prculley <paulr2787@gmail.com>
* gramps/plugins/db/dbapi/dbapi.py: Prevent dbapi from nesting
transactions for metadata Fixes #10038.
2017-07-29 Nick Hall <nick-h@gramps-project.org>
* gramps/cli/clidbman.py, gramps/gen/db/generic.py,
gramps/gui/dbman.py, gramps/plugins/db/bsddb/write.py,
gramps/plugins/db/dbapi/dbapi.py,
gramps/plugins/db/dbapi/postgresql.py,
gramps/plugins/db/dbapi/sqlite.py: Tidy up database summary
information
2017-07-29 romjerome <romjerome@users.noreply.github.com>
* po/lt.po: typo
2017-07-28 Nick Hall <nick-h@gramps-project.org>
* gramps/gen/db/generic.py, gramps/gen/db/utils.py,
gramps/gui/dbman.py, gramps/plugins/db/dbapi/dbapi.gpr.py,
gramps/plugins/db/dbapi/dbapi.py,
gramps/plugins/db/dbapi/inmemorydb.gpr.py,
gramps/plugins/db/dbapi/inmemorydb.py,
gramps/plugins/db/dbapi/postgresql.gpr.py,
gramps/plugins/db/dbapi/postgresql.py,
gramps/plugins/db/dbapi/sqlite.gpr.py,
gramps/plugins/db/dbapi/sqlite.py,
gramps/plugins/db/dbapi/test/db_test.py,
gramps/plugins/test/db_undo_and_signals_test.py, po/POTFILES.in,
po/POTFILES.skip: Reorganise DBAPI plugins Add SQLite and PostgreSQL plugins. Remove DBAPI and InMemoryDb
plugins.
2017-07-28 Nick Hall <nick-h@gramps-project.org>
* gramps/plugins/db/dbapi/dbapi.py: Remove unused imports
2017-07-28 Nick Hall <nick-h@gramps-project.org>
* gramps/plugins/db/dbapi/dbapi.py,
gramps/plugins/db/dbapi/settings.ini,
gramps/plugins/db/dbapi/settings.py: Remove settings.py file
2017-07-27 Paul Franklin <pf.98052@gmail.com>
* po/lt.po: fix another typo in the new lt.po
2017-07-28 Bernard Banko <beernarrd@gmail.com>
* po/lt.po: lt.po: Added quotes add the end of the last string
2017-07-27 Tadas Masiulionis <tadzikaz@gmail.com>
* po/lt.po: update Lithuanian translation
2017-07-26 niememat <niememat@gmail.com>
* po/fi.po: Finnish translation update
2017-07-25 Matti Niemelä <niememat@gmail.com>
* po/fi.po: update Finnish translation
2017-07-24 Frederik De Richter <frederik.de.richter@gmail.com>
* po/nl.po: update Netherlands translation
2017-07-24 Zdeněk Hataš <zdenek.hatas@gmail.com>
* po/cs.po: czech translation update
2017-07-24 vantu5z <vantu5z@mail.ru>
* po/ru.po: [Russian translation] fix typo PR #439 Thanks to schoonc
2017-07-23 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/glade/editdate.glade: Date Editor has 'Type' and
'Quality' labels swapped Fixes #10135
2017-07-22 Paul Franklin <pf.98052@gmail.com>
* po/gramps.pot: new gramps.pot translation template
2017-07-14 Nick Hall <nick-h@gramps-project.org>
* gramps/gen/db/base.py, gramps/gen/db/dummydb.py,
gramps/gen/proxy/filter.py, gramps/gen/proxy/proxybase.py,
gramps/gen/utils/grampslocale.py, gramps/plugins/db/bsddb/read.py,
gramps/plugins/db/dbapi/dbapi.py,
gramps/plugins/db/dbapi/postgresql.py,
gramps/plugins/db/dbapi/sqlite.py,
gramps/plugins/textreport/familygroup.py,
gramps/plugins/textreport/indivcomplete.py,
gramps/plugins/textreport/tagreport.py: Allow multiple collations
per connection This fixes collation for translated reports and multi-user access
for PostgreSQL.
2017-07-21 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-07-17 Paul Culley <paulr2787@gmail.com>
* gramps/gen/plug/_gramplet.py,
gramps/plugins/gramplet/ageondategramplet.py,
gramps/plugins/gramplet/agestats.py,
gramps/plugins/gramplet/attributes.py,
gramps/plugins/gramplet/backlinks.py,
gramps/plugins/gramplet/calendargramplet.py,
gramps/plugins/gramplet/children.py,
gramps/plugins/gramplet/coordinates.py,
gramps/plugins/gramplet/events.py,
gramps/plugins/gramplet/faqgramplet.py,
gramps/plugins/gramplet/gallery.py,
gramps/plugins/gramplet/givennamegramplet.py,
gramps/plugins/gramplet/mediapreview.py,
gramps/plugins/gramplet/notes.py,
gramps/plugins/gramplet/pedigreegramplet.py,
gramps/plugins/gramplet/persondetails.py,
gramps/plugins/gramplet/personresidence.py,
gramps/plugins/gramplet/placedetails.py,
gramps/plugins/gramplet/recordsgramplet.py,
gramps/plugins/gramplet/relativegramplet.py,
gramps/plugins/gramplet/repositorydetails.py,
gramps/plugins/gramplet/sessionloggramplet.py,
gramps/plugins/gramplet/statsgramplet.py,
gramps/plugins/gramplet/surnamecloudgramplet.py,
gramps/plugins/gramplet/todo.py,
gramps/plugins/gramplet/todogramplet.py,
gramps/plugins/gramplet/topsurnamesgramplet.py,
gramps/plugins/gramplet/whatsnext.py: Gramplets HandleErrors with
Family Merge and issues on close/open (#424) Unless a Gramplet has navtype=['Person'] in .gpr it will not get an
automatic connection to Person active-changed. To prevent multiple
connections after db close/open, all connections are made through
Gramplet class 'connect', rather than directly to db fixes #10082, #10081, #10090, #10089
2017-07-17 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: Update German translation
2017-07-17 prculley <paulr2787@gmail.com>
* gramps/gen/lib/address.py, gramps/gen/lib/attribute.py,
gramps/gen/lib/childref.py, gramps/gen/lib/date.py,
gramps/gen/lib/ldsord.py, gramps/gen/lib/location.py,
gramps/gen/lib/mediaref.py, gramps/gen/lib/personref.py,
gramps/gen/lib/placename.py, gramps/gen/lib/placeref.py,
gramps/gen/lib/reporef.py, gramps/gen/lib/srcattribute.py,
gramps/gen/lib/styledtexttag.py, gramps/gen/lib/url.py: Add title
properties to more of schema
2017-07-17 prculley <paulr2787@gmail.com>
* gramps/gen/lib/citation.py, gramps/gen/lib/src.py: Fix source
attribute lists in schema
2017-06-19 prculley <paulr2787@gmail.com>
* gramps/plugins/test/db_undo_and_signals_test.py: Add db undo/redo,
callback, and callback manager tests for both dbs
2017-06-15 prculley <paulr2787@gmail.com>
* gramps/gen/db/generic.py, gramps/plugins/db/bsddb/undoredo.py,
gramps/plugins/db/bsddb/write.py, gramps/plugins/db/dbapi/dbapi.py:
Guarantee order on db emits Partial fix #10068
2017-06-04 prculley <paulr2787@gmail.com>
* gramps/plugins/db/dbapi/dbapi.py: Undo of delete person on dbapi
fails; fixes #10070
2017-07-15 Nick Hall <nick-h@gramps-project.org>
* gramps/plugins/db/dbapi/dbapi.py: Fix creating new PostgreSQL
database PostgreSQL will rollback the entire transaction on errors. Change
the code so that we know that columns created dynamically do not
already exist.
2017-07-15 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update German translation Fix #0010131
2017-07-13 Thomas Guyot-Sionnest <dermoth@aei.ca>
* gramps/plugins/db/dbapi/settings.py: Use all parameters in
settings.ini for postgresql Read all parameters defined in settings.ini as keyword arguments for
postgresql. This also fixes port being ignored.
2017-07-10 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/aboutdialog.py,
gramps/gui/logger/_errorreportassistant.py: ignore whether 32-bit or
64-bit when reporting Windows o.s. Fixes #8832
2017-07-10 Zdeněk Hataš <zdenek.hatas@gmail.com>
* po/cs.po: czech translation update
2017-07-08 Lajos Nemeséri <nemeseril@gmail.com>
* po/hu.po: Update Hungarian translation
2017-07-06 prculley <paulr2787@gmail.com>
* gramps/plugins/tool/verify.glade, gramps/plugins/tool/verify.py:
Fix verify tool to close and save configs properly Fixes #10121 Signed-off-by: Paul Franklin <pf.98052@gmail.com>
2017-07-06 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-07-05 Frederik De Richter <frederik.de.richter@gmail.com>
* po/nl.po: update Netherlands translation
2017-07-03 Paul Franklin <pf.98052@gmail.com>
* po/eo.po: fix (more fatal) errors in Esperanto translation Travis doesn't check for string-parameter mismatches, but it would
have been fatal if anybody had tried to actually run gramps in
Esperanto.
2017-07-03 Paul Franklin <pf.98052@gmail.com>
* po/eo.po: add three (fatal) missing linefeeds to Esperanto
translation
2017-07-03 Pier Luigi Cinquantini <plcinquantini@gmail.com>
* po/eo.po: update Esperanto translation
2017-07-03 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update German translation
2017-06-30 John Ralls <jralls@ceridwen.us>
* gramps/gui/display.py: Open web links with /usr/bin/open on Mac
and Python older than 3.5 Works around https://bugs.python.org/issue24452 Fixes #10105
2017-07-02 Paul Franklin <pf.98052@gmail.com>
* po/fr.po: "translate" some more strings, make real omissions more
obvious
2017-07-02 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/aboutdialog.py: translate some punctuation marks more colons for French Issue #7276
2017-07-02 niememat <niememat@gmail.com>
* po/fi.po: Update finnish translation
2017-07-02 Fedik <getthesite@gmail.com>
* po/uk.po: Update Ukrainian translation
2017-07-01 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/aboutdialog.py, po/gramps.pot: revert half of
0fa5454831 (LANG), make new gramps.pot template
2017-07-01 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/selectors/selectsource.py, gramps/gui/undohistory.py:
slight tweaks to two wiki pointers
2017-06-30 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/narrativeweb.py: Narrated Web: path to
alternate image is wrong Fixes #9881
2017-06-30 romjerome <romjerome@users.noreply.github.com>
* po/fr.po: merge and update french translation
2017-06-30 romjerome <romjerome@users.noreply.github.com>
* po/fr.po: update french translation
2017-06-30 vantu5z <vantu5z@mail.ru>
* gramps/gui/aboutdialog.py, po/gramps.pot, po/ru.po: [about dialog]
- some strings to translate
2017-06-29 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/logger/_errorreportassistant.py: don't print a
'Distribution' line in Windows error reports
2017-06-29 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation - merge with template (translate new strings) - add latest translators to translator-credits
2017-06-26 arnaullv <arnaullv@gmail.com>
* po/ca.po: Updated catalan translation to latest template
2017-06-28 Paul Franklin <pf.98052@gmail.com>
* po/is.po: fix fatal error in Finnish translation
2017-06-28 Frederik De Richter <frederik.de.richter@gmail.com>
* po/nl.po: update Netherlands translation
2017-06-28 Matti Niemelä <niememat@gmail.com>
* po/fi.po: update Finnish translation
2017-06-28 Sveinn í Felli <sv1@fellsnet.is>
* po/is.po: update Icelandic translation
2017-06-28 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/webreport/narrativeweb.py: Narrative web : crash
using OSM when bad lat/lon Fixes : 10111
2017-06-28 Zdeněk Hataš <zdenek.hatas@gmail.com>
* po/cs.po: czech translation update
2017-06-27 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update German translation
2017-06-27 John Ralls <jralls@ceridwen.us>
* gramps/gen/utils/grampslocale.py: FamilyGroup Report crash Python's sort routine gratuitously converts the bytearrays returned
by ICU::Collator::getByteArray to a string when storing it. This
resulted in a TypeError when attempting to compare a just-returned
bytearray with a stored string. We work around this by converting the bytearray into its hexadecimal
representation and then decoding that into a string. Fixes #10077.
2017-06-27 Paul Franklin <pf.98052@gmail.com>
* po/gramps.pot: new gramps.pot translation template
2017-06-27 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/editors/filtereditor.py: typo (thanks, Sveinn Felli)
2017-06-27 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/aboutdialog.py: don't print a 'Distribution' line in
Windows' Help=>About
2017-06-26 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/tool/reorderids.py: ReorderIds tool crashes with
'bytes' error on bsddb (#428) fixes #10098
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/zh_TW.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/zh_HK.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/zh_CN.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/vi.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/uk.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/tr.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/ta.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/sv.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/sr_Latn.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/sr.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/sq.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/sl.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/sk.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/ro.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/pt_PT.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/pt_BR.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/pl.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/nn.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/nl.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/nb.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/mk.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/lt.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/ja.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/it.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/is.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/hu.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/hr.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/he.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/ga.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/fr.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/es.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/eo.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/en_GB.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/da.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/br.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/bg.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* po/ar.po: merge translation with current template
2017-06-26 Paul Franklin <pf.98052@gmail.com>
* .mailmap: add another address to the mailmap
2017-06-26 Matti Niemelä <niememat@gmail.com>
* po/fi.po: update Finnish translation
2017-06-26 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2017-06-24 John Ralls <jralls@ceridwen.us>
* : Add 24x24 gramps-fanchart2way.png. Missed when the plugin was added. Not having it makes for an ugly
charts toolbar in HiDPI.
2017-06-23 Nick Hall <nick-h@gramps-project.org>
* gramps/gui/configure.py: typo Traceback (most recent call last): File "C:\Program
Files\GrampsAIO64-5.0.0-alpha2\gramps\gui\configure.py", line
1248, in autobackup_changed self.uistate.set_autobackup_timer()
AttributeError: 'DisplayState' object has no attribute
'set_autobackup_timer' https://gramps-project.org/bugs/view.php?id=10098#c52129 Issue #10098
2017-06-18 prculley <paulr2787@gmail.com>
* gramps/gen/utils/file.py: Unnecessarily long relative paths
generated on Windows The relative_path file utility function returns paths with '..\..'
on Windows unnecessarily. fixes #10087
2017-06-23 Nick Hall <nick-h@gramps-project.org>
* gramps/plugins/db/bsddb/read.py, gramps/plugins/db/bsddb/write.py:
The get_name_group_mapping method should return a str Fixes #10084, #10085, #10086.
2017-06-22 Paul Franklin <pf.98052@gmail.com>
* po/el.po: merge translation with current template
2017-06-22 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/plug/docgen/graphdoc.py: names not displayed in
relationship graph Issue #10093
2017-06-22 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update German translation
2017-06-22 Zdeněk Hataš <zdenek.hatas@gmail.com>
* po/cs.po: czech translation - small fixes
2017-06-07 prculley <paulr2787@gmail.com>
* gramps/plugins/gramplet/citations.py: Citations Gramplet doesn't
update in many cases Fixes #10069.
2017-06-21 Nick Hall <nick-h@gramps-project.org>
* gramps/gui/filters/sidebar/_citationsidebarfilter.py: Fix
HasCitation rule in citation filter sidebar Filter parameters should be of type str. Fixes #10076.
2017-06-21 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/const.py: typo
2017-06-21 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/const.py: Outdated Bugtracker link in Unexpected Error
reporting wizard Fixes #10100
2017-06-21 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/graph/gvfamilylines.py: Family Lines Report
generates empty PDFs when name [has double-quotes] Fixes #10096
2017-06-19 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/dbman.py: non-local character in DB name causes crash
on Windows Fixes #10095
2017-06-17 Paul Franklin <pf.98052@gmail.com>
* gramps/gui/logger/_errorreportassistant.py: make error report
versions closer to Help=>About ones
2017-06-17 John Ralls <jralls@ceridwen.us>
* mac/gramps.bundle: Add a gir element, needed for scriptless
bundles.
2017-06-02 SNoiraud <serge.noiraud@laposte.net>
* gramps/gen/utils/alive.py: Dead people are shown as alive Fixes #6364.
2017-05-29 prculley <paulr2787@gmail.com>
* data/tests/imp_MediaTest.ged, data/tests/imp_MediaTest.gramps,
gramps/plugins/lib/libgedcom.py: Gedcom import with OBJE/FORM URL on
event Fixes #7593.
2017-05-22 prculley <paulr2787@gmail.com>
* gramps/gui/widgets/selectionwidget.py: Fix click/drag in media
reference editor Fix so click/drag creates/updates selection using left mouse button. Fixes #8429.
2017-05-22 prculley <paulr2787@gmail.com>
* gramps/gui/editors/editmediaref.py: Fix spin button updates in
media reference editor Fix so spin button updates visible selection when it has already
been clicked. Bug #8429.
2017-05-20 prculley <paulr2787@gmail.com>
* gramps/gui/editors/editmediaref.py,
gramps/gui/widgets/selectionwidget.py: Fix media preview for preview
size changes Bug #8429.
2017-06-12 prculley <paulr2787@gmail.com>
* gramps/gui/logger/_errorreportassistant.py,
gramps/gui/logger/_errorview.py: _errorview dialog mapped without
transient parent Fixes #8128.
2017-05-28 prculley <paulr2787@gmail.com>
* gramps/gen/db/generic.py, gramps/plugins/db/bsddb/undoredo.py:
Undo of delete doesn't update views Fixes #10056.
2017-06-11 prculley <paulr2787@gmail.com>
* gramps/gui/viewmanager.py: Error on 'cancel' for db upgrade Fixes #10065.
2017-06-07 prculley <paulr2787@gmail.com>
* gramps/plugins/gramplet/topsurnamesgramplet.py: Top surnames
Gramplet doesn't update when db is closed Fixes #10073.
2017-06-16 Josip <bpisoj@gmail.com>
* gramps/plugins/db/dbapi/postgresql.py: DBAPI: PostgreSQL crash
(#421) Fixes #0010071.
2017-06-16 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/view/geoperson.py: 10088: Geography: try to link a
map position if we have an active place.
2017-06-15 Doug Blank <doug.blank@gmail.com>
*
gramps/gen/filters/rules/person/_islessthannthgenerationancestorof.
py,
gramps/gen/filters/rules/person/_ismorethannthgenerationancestorof.
py: Removes try/except and recursion in ancestor filters +/- N gens This fix rewrites the Ancestor-of +/- N filters to remove the
try/except and removes the recursion. The recursion would only be a
problem on very deep trees, but the try/except was hiding a variety
of problems. Most directly, if a person did not have a main family
then it would exit out of the loop. (I don't have a test database to break the code other than my real
data, so you'll have to do that part.) I also made sure that the meaning of N is consistent in both
filters: 1 - root person 2 - root person's parents 3 - root person's
grandparents
2017-05-27 prculley <paulr2787@gmail.com>
* gramps/plugins/view/relview.py: HandleError on Relationship view
for add child with no father Fixes #10059.
2017-05-25 prculley <paulr2787@gmail.com>
* gramps/plugins/gramplet/citations.py: Fix HandleError in Citation
gramplet Fixes #10054.
2017-06-15 Zdeněk Hataš <zdenek.hatas@gmail.com>
* gramps/gen/datehandler/_date_cs.py, po/cs.po: removed legacy code
from _date_cs.py fixed inflections in cs.po
2017-05-23 prculley <paulr2787@gmail.com>
* gramps/plugins/tool/relcalc.py: relationship calculator fails
(missing uistate param) Fixes 10052
2017-06-10 bpisoj <bpisoj@gmail.com>
* add build version to const.py