-
Notifications
You must be signed in to change notification settings - Fork 433
/
Copy pathNEWS
3034 lines (2953 loc) · 153 KB
/
NEWS
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
2025-03-02
Version 6.0.0-rc1
* Update translations: ca, cs, da, de, de_AT, en_GB, eo, fi, fr, he, hr, hu, id,
ko, mk, nb, nl, pt_PT, ru, sk, sv, ta, tr, uk.
* Add selenium to Windows AIO build.
* Simplify RelationshipPathBetween prepare method.
* Simplify HaseSourceOfBase prepare method.
* Fix upgrades from bsddb. Fixes #13633, #13652.
* Always return str from to_string methods.
* Fix bug with surname rules in Quick Views. Fixes #13657.
* Reformat code using the latest stable version of black.
* Strip whitespace from media path in media editor.
* Strip whitespace from name and URL in Addon Manager project editor.
* Provide new editor fallback icons for superscript and subscript. Fixes #13548.
* Change default preferences to be more appropriate for new users.
* Add extra checks when changing a parent in the family editor. Fixes #13642.
* Hide navigation bar selector when only one sidebar plugin is loaded.
Fixes #13640.
* Fix media manager bug with relative to absolute path conversion. Fixes #13644.
* Fix bug removing citation references after deleting a source. Fixes #13639.
* Update the web search URL so that it works.
* Remove the default toolbar style option and replace it with "Both".
* Fix citation filter rules that search the source. Fixes #13635.
* Fix crash in source/citation selector with an empty filter. Fixes #13634.
* Convert deprecated filter operator "xor" to its synonym "one".
* Mac:
* Package release 6.0.0-beta2 on macOS.
* Update dependency versions, bundle contents.
* Remove python-fontconfig from the build, no longer used.
2025-02-12
Version 6.0.0-beta2
* Update translations: cs, de, de_AT, fi, he, hr, hu, is, it, nl, pl, pt_PT, sk,
sv.
* Narrative web:
* Add remote media to thumbnail index.
* Remote media cannot be opened. Fixes #13628.
* Fix crash with empty an database. Fixes #13619.
* Fix to show tree on print page. Fixes #13614.
* Correctly handle Event == None.
* Windows AIO:
* Set appbuild correctly.
* Add a build-number input to the workflow.
* Remove the "-- a new maintenance release" branding from the installer.
* Mac:
* Remove obsolete gtkspell3 from bundlefile. We're using gspell now.
* Package Gramps 6.0.0-beta1 for macOS.
* Center the progress bar in the main window status bar. Fixes #13630.
* Fix bug in generic filter (swapped lines).
* Fix the program name in the About dialog.
* Remove BSDDB version and duplicate Gramps version from About dialog.
Fixes #13624.
* Rename "Help" button to "Wiki" in plugins dialog. Fixes #13625.
* Change the progress bar vertical alignment and padding. Fixes #13623.
* Import annotations in files using type hints.
* Specify the `obj_class` when calling `data_to_object.`
* Fix crash during bsddb upgrade. Fixes #13627.
* Fix error when upgrading a database from 5.1 to 6.0. Fixes #13622.
* Ignore missing remote media in check and repair tool. Fixes #13618.
* Don't try to run `get_git_version` in release versions.
* Correct the parameter type hints to accept <object> | None.
* Private proxy fixes.
* Fixed an iter that bypasses proxy.
* Fix modifiers in Hungarian date handler.
* Added orjson, and 'all' to the setup script.
* Updated the README (bsddb3 made optional, removed sqlite3).
* Fix the match method in the GenericFilter class. Fixes #13606.
* Replace unittest `assertEquals` by `assertEqual`.
* Fix type annotation syntax for Python 3.9.
* Fix error when searching by name in the place selector. Fixes #13605.
* Enable <Enter> key press on date fields in sidebar filters. Fixes #13607.
* Fix all_people() simple access method to use new data format Fixes #13603.
* Translation fixes in probably alive code. Fixes #13604.
* Update CI workflow to run on the gramps60 branch.
2025-02-04
Version 6.0.0-beta1
* Update translations: ar, bg, br, ca, cs, da.po, de, de_AT, el, en_GB, eo, es,
fa, fi, fr, ga, gl, he, hr, hu, id, is, it, ja, ko, lt, mk, nb, nl, nn, pl,
pt_BR, pt_PT, ro, ru, sk, sl, sq, sr, sv, ta, tr, uk, vi, zh_CN, zh_HK, zh_TW.
* Update development status classifier.
* Update translation template for new release.
* Fix xgettext format string.
* Add missing files to `POTFILES.in`.
* Fix accessing an attribute in a DataDict.
* Add missing future import for annotations.
* Add type hints to modified functions.
* Optimise get_object_from_gramps_id methods in filter proxy.
* Refactor, fix, and optimize filters/rules.
* Add GrampsID type hints to DbGeneric.
* Define types for Gramps IDs.
* Add licence and copyright.
* Make the orjson package mandatory.
* Use orjson with a hand-coded encoder/decoder. Assumes orjson is installed.
* Disable pylintrc no-else-return check.
* Allow web-accessible file references in media objects.
* Add type hints to the generic database handler.
* Update Info.plist for Gramps 6.0. The important change is that macOS 11.0 is
now the minimum required for both Intel and Apple Silicon Macs.
* Add heatmap to the narrative web report.
* Memorise report options for each database. Fixes #2455
* Add help_url to built-in tools.
* Add help button to plugin selection dialogs. Issue #13467.
* Enhance display_help utility function:
* Allow the webpage to include a section separated by a hash (#) character.
* Allow a webpage starting with http:// or https:// to specify a full url.
* Add unit tests. Fixes #13562.
* Update minimum python version.
* Add type hints to latitude and logitude related methods and functions.
* Use attributes rather than dictionary lookup in the model classes.
* Crash with empty ADDR in narrative web. Fixes #13479
* New indexes for big databases in the narrative web report.
* Correct the tab name for setting the date format in a Tip of the Day.
* Remove unnecessary translations.
* Fixes to probably alive code following reviewer comments.
* Fix safe mode on Windows Safe mode.
* Make cleanup optional after an AIO build.
* Add type information to base selector.
* Use search bar filters instead of fast filter classes.
* Search bar filter has precedence.
* Add the standard search bar to the SelectPerson dialog.
* Add a preference option for the selection of the toolbar style.
* Use ngettext when displaying the max probably alive age in years.
* Rephrase the citation references option in the narrative web report.
* The example filename in the welcome gramplet should not be translated.
* The space used as an empty column heading does not need translation.
* Add a translation context to a couple of name origin types.
* Use ngettext in probably alive function.
* Remove unreachable else statement in probably alive code.
* Fix "alt_names" typo in the place model.
* Add new place to example database.
* Fix date modifiers for is.
* Fix de_AT translation.
* Change http:// to https:// in Tip of the Day file.
* Strongly recommend orjson in the README.
* Add orjson version strings.
* Add orjson dependency to Windows AIO.
* Add orjson dependency to Mac bundle.
* Use orjson, if available.
* Fix exact search filters in selector dialogs.
* Allow importing and exporting nicknames to CSV.
* Replace assert statements with TestCase methods in unit tests.
* Fix python format string related xgettext warnings.
* Fix narrative web when a person excluded by a proxy is referenced.
* Recognize event reference citations in editor event tabs.
* Display the source icon in the event tab of an editor if the event has either
an event citation or event reference citation. Fixes #13401.
* Fix AttributeError in editor surname tab. Fixes #13322
* Allow multiple selection in the gallery tab in editors.
* Allow multiple selection in the media selector dialog.
* Add optional support for multiple selction in selector dialogs.
* Merge the two different MultiTreeView classes.
* dd path column to the media selector dialog.
* Remove serialize from changenames.
* Create DataDict from object; Get object with from_dict():
* Allow construction of a DataDict from an instance.
* Clean up DataDict a bit * Return object instance from_dict() if it exists.
* Improve language and hamburger menus in narrative web report:
* Improve the backlinks (References) gramplets
* Enhance ListModel to handle middle mouse clicks.
* Allow an object to be made active from within the backlinks gramplet.
* Add a context menu to make "Edit" and "Make Active" more discoverable.
* Allow objects in the backlinks gramplets to be dragged to the clipboard.
* Display the Date column for all objects which are an instance of DateBase.
* Fix exception during Redo operation.
* Set initial focus in EditPlaceRef dialog.
* Add edit capability to the set of Notes gramplets.
* Update the gramplet display when a note is updated, added or deleted.
* Use Ubuntu 22.04 for CI.
* Add gender symbol option to the detailed descendant report.
* Add gender symbol option to the detailed ancestral report.
* Add gender symbol option to the descendant report.
* Add an option to insert a gender symbol before the person's name.
* Enable mypy static type checking.
* Remove trailing whitespace check. This is now performed by black.
* Fix the spelling of "because" in comments.
* Refactor GrampsType set method to use functools.singledispatchmethod.
* Convert images in tree reports to thumbnails for embedding.
* Improve the ProbablyAlive code. Implements #13443.
* Update bundle for gspell, new enchant.
* Convert 'Tip of the Day' window to `Gtk.Template`.
* Add PyPI upload workflow.
* Change variable name to 'data' for consistency across the code base.
* Fix error in Fast*Filter.
* Update GrampsType to work with dict objects.
* Replace deprecated 'warn' method with 'warning'.
* Replace deprecated makeSuite with TestLoader().loadTestsFromTestCase.
* Skip TestImports if en_US locale is not available on build host. Fixes #13079.
* Fix unittest for local timezones.
* Update Debian build to include Ubuntu 24.04.
* Add new HasEvent and HasSource rules.
* Translate the filter comment string.
* Use css error class rather then hardcoding the colour "red".
* Enhanced version of the Filter gramplet.
* Add new 'having note of type' rule.
* Change layout of places and dates in familylines plugin. Adds symbols and
changes format of birth and death events. Implements #7788, #10699.
* Show other roles for an event in the narrative web report.
* Harmonize Date Format label capitalization.
* Add link to Sphinx footer add hotlink to footer for potential contributors.
* Add missing tooltips in the Addon Manager Implements #13358.
* Add Gramps ID option to Kinship Report.
* Allow Gramps to run from an extracted source distribution.
* Use standard decorator form of defining properties.
* Replace deprecated Gdk.Color by Gdk.RGBA.
* Fix deprecation on ElementTree truth testing.
* Stop displaying Python-sqlite3 version.
* implify multiple calls to `str.startswith` / `str.endswith`.
* Remove redundant definition of _has_webpage_extension.
* Use contextlib to redirect stdout/stderr.
* Remove deprecated use-action-appearance property.
* Remove stock items from Glade files.
* Fix xalign deprecations in Glade files.
* Fix margin-* deprecations in Glade files.
* Added 11k serialize tests.
* Added a dict wrapper that acts like an object.
* Switch from pickled blobs to JSON data.
* Store empty date objects instead of null in the JSON schema.
* Refactor JSON serialization.
* Make BaseObject the parent class for Date, StyledText and StyledTextTag.
* Add PyPI upload workflow.
* Some filter rule type related cleanups.
* Add new role types present in the Gedcom 7.0 specification.
* Replace deprecated Gtk[HV]Box with GtkBox.
* Add support for ISO 639-3 part 3 standard language code. Fixes #12772.
* Change the output of ADDR tags in the Gedcom export.
* Use preferred name instead of default name in name editor. Fixes #13256.
* Prevent forwards/backwards when history is locked.
* Add forwards and backwards navigation using mouse buttons.
* Pylint cleanups for gen/db/*.py.
* Some pylint cleanups for gramps/gen/plug/*.py.
* Pylint cleanups for plugins/db/dbapi/*.py.
* Pylint cleanups for gen/lib/*.py:
* Reformat to default 88 columns and factor out EventBase.
* Use of _ is cleaner for unreferenced vars.
* Allow 0 ancestors/descendants in hourglass graph.
* Sort AIO prerequisites + remove unneeded.
* Simplify some Cairo drawing.
* Remove unused Subversion keyword substitutions.
* Replace GtkMenu with GioMenu in DropdownSidebar.
* Convert navigator from a Notebook to a Stack.
* onvert navigator menu into a combo box.
* Fix typo in Navigator action/section id.
* Remove unused code from Navigator.
* Replace GtkMenu with GioMenu in Gramplets bar.
* Replace GtkArrow with GtkImage and symbolic icons.
* Update format of Glade files.
* Glade files regenerated using 3.40.0.
* Required Gtk version set to 3.24.
* Restrict CI workflow to run on a single branch.
* Update GitHub actions to latest versions.
2025-01-12
Version 5.2.4
* Translations:
* Updated translations: bg, cs, da, de, de_AT, en_GB, es, fa, fi, fr, he, hr,
hu, id, ko, mk, nb, nl, pl, pt_PT, sk, sl, sv, ta, tr, uk, zh_CN, zh_HK,
zh_TW.
* Remove Tamil from this release.
* Update translation template for new release.
* Update list of incomplete translations.
* Add German date modifier "ab".
* Fix German date handler for reports. Fixes #13312.
* Add extra "about" modifier to Hebrew date handler.
* Add Korean translation.
* Fix date modifiers for sl.
* Fix Citations gramplet to recognize event reference citations. Fixes #13555.
* Fix exception when finding relationship to home person. Fixes #13495.
* Fix mouse scroll direction in pedigree view.
* Fix incorrect usage of exec. As of PEP558, `locals()` is not populated by
`exec()`. This change means that this call is broken on Python 3.13.
* Remove some usage of globals().
* Remove unnecessary use of exec.
* Test current_date being an empty date in probably alive function. Fixes #13431.
* Improve warning message in date_test.py when 3 tests are skipped.
* Correctly assign sortval = 0 when a date is EMPTY. Fixes #13415, #13423.
* Fix unicode conversion bug when upgrading from schema 16 to 17.
* Correct the documentation for the match() method of the Date class.
Also added more detail to documentation in 3 other cases. Fixes #13428
* Gramps version output now reports OS rather than Platform. Fixes #12285.
* Downgrade upgrade messages from warning to informational level. Fixes #13464.
* Fix list size option in the top surnames gramplet. Allow users to specify how
many surnames appear in the list from 10 to 1000. Fixes #13448.
* Correct misleading description of GUI element placement.
* Use the preferred calendar for new dates only in the date editor. Fixes #13403.
* Fix docs typo in INSTALL file.
* Fix printing of Books. Fixes #12804.
* Render reports with styled notes containing subscript and strikethrough.
Fixes #13417.
* Remove broken link to svn2cl package in the About dialog. Fixes #13152.
* Improve media performance in the narrative web report. Fixes #13370.
* Mac:
* Replace gtkspell3 with gspell. Fixes #13514.
* Upgrade json-glib to fix a build failure with recent glib versions.
* Windows AIO:
* Restore AIO console executable's icon. Fixes #13402.
* Fix spelling in a comment.
* Remove UPX compression of exectuable files.
* Remove commented out line.
* List packages in alphabetical order for easier maintenance format document.
* Improve grammar.
* Ensure library.zip is generated by cx_freeze.
* Update copyright date.
* Use a virtual python environment. This allows pip to work correctly.
* Prefer to use base_exec_prefix.
* Changes required due to updating MSYS2 environment.
* Remove references to lib2to3 (deprecated).
* Reduce log output from build.sh so errors and warnings are easier to spot.
* Cleanup README.
* Prevent debug plugins loading for Gramps AIO.
* Reduce output in log files for easier parsing.
* Downgrade cx_Freeze in Windows AIO to 6.15.9
2024-07-13
Version 5.2.3
* Updated translations: da, de_AT, en_GB, es, fr, he, hr, hu, mk, nb, nl, pt_PT,
ru, tr, zh_HK, zh_TW.
* Fix bug with regular expressions in check_po script.
* Update translation template for new release.
* Corrected terminology. Replaced "matronymic" with "matrilineal" to accurately
reflect genetic inheritance rather than naming conventions.
* Clarified terminology for father lineage description. Changed
"patronymic lineage" to "patrilineal lineage" for accuracy.
* Fix PDF generation failure with LaTeX-based reports on Windows. Fixes #10696.
* Fix fallback for the `image_size` utility function Use Gdk if the size of the
image cannot be determined by imagesize. Fixes #13310.
* Disable rounding glyph positions in cairo document generator.
* Package Gramps 5.2.3 for macOS.
* Fix NoteType values in CSV import.
* Some short french month names can not be entered. Fixes #13307.
* Remove detached process flag when running lualatex.
* Check that pdf output file exists in genealogy tree reports. Fixes #10696.
* Fix error when changing the style of misspelt words. In the note editor,
changing the style of text failing the spell check caused an error.
Fixes #13282.
* Update span characters for zh_TW. Add span characters so that the new display
format is accepted as a valid input format.
* Restore BerkelyDB, Gramps still uses it.
* Update gramps.modules.
* Remove obsolete comment and comment out the private include.
* Update the branch in gramps-git.
* Remove BerkeleyDB and pybsddb dependencies.
* Remove unused patches.
* Fix missing media in narrative web report person pages. Fixes #13252, #13272.
* Remove the spaces padding the connector in a hyphenated surname. This fixes
the previous code which replaced " - " with "-" within the entire name.
Fixes #13274.
* Url-quote norm_path and use urljoin to attach the scheme. Assumes that if
the path is already a URI it is also already quoted. Fixes #13218, #13197.
* Prevent hyperlink tagging being added as an undo action. Clicking the undo
button in the note editor sometimes had no noticeable effect. Fixes #13267.
* Change repository "Title" to "Name" in the source editor. Fixes #13258.
* Better error handling in the narrative web report.
* Handle not found when creating the narrative web report updates page.
Fixes #13216.
* Add workflow for Debian build.
* Package Gramps 5.2.2 for macOS.
* Use README.md for PyPI long description.
* Fix Windows AIO build.
2024-04-06
Version 5.2.2
* Updated translations: cs, de, de_AT, es, fi, he, hr, nb, nl, pl, ru, sk, sv,
tr.
* Hebrew relationship calculator not loading. Fixes #13251.
* Narweb: Person object has no get_father_handle. Fixes #13207.
* Package Gramps 5.2.1 on macOS.
* Restrict CI workflow to run on a single branch.
* Don't show Navigation when we print a page. Fixes #13160.
2024-03-24
Version 5.2.1
* Updated translations: de_AT, fi, fr, ga, he, it, nb_NO, pl, sk, sr, tr, uk,
zh_Hans.
* Fix error when installing an addon that will not be registered. Fixes #13233.
* Allow experimental and beta plugins to be registered. Fixes #13232.
* Tidy up the README file.
* Fix fan charts on HiDPI screens.
* Replace PIL with Pillow in the README. Issue #10016.
* Fix the Tag.is_empty() method. The `Tag.is_empty()` method was returning the
inverse of the expected value. Fixes #12579.
* Cannot create Place with coordinates via Geography. Fixes #13228.
* Fix place title when place names use open spans. Fixes #13222.
* Fix the addon translator language for core translations. Fixes #13221.
* Update AIO minimum Windows version requirement to 8.1 64-bit.
* Prevent unwanted output in unit test logs.
* Fix unit tests when run with Python 3.12. Fixes #13212.
* Revert Death fallback symbol from Latin Cross to "+".
* Change the cross mark and check mark symbols used in the Addon Manager.
Requirements screen to be valid characters on Mac. Fixes #13194.
* Fix display of invalid dates in editor citation tabs. Fixes #13192.
* Include metainfo rather than appdata 'its' files.
* Update AppStream MetaInfo file to conform to latest spec.
* Fix filter rules missing the use_case parameter. Fixes #13187.
* Rename metadata file to follow spec.
* Add release information to appdata.
* Package Gramps 5.2.0 on macOS.
2024-02-23
Version 5.2.0
* Updated translations: ca, cs, da, de, de_AT, en_GB, es, fr, hr, hu, id, it,
nb, nl, pl, sk, sl, sv, tr, uk, zh_CN.
* Update development status to production.
* Remove the Trove classifier "Natural Language :: German(Austrian)".
* Emit a "plugins-reloaded" signal when a new addon is installed. This ensures
that the user interface will be updated to include the new addon.
Fixes #13021.
* Fix Windows AIO build.
* Update GitHub actions to latest versions. Some actions are deprecated.
* Package Gramps 5.2.0-rc1 on macOS.
2024-02-09
Version 5.2.0-rc1
* Updated translations: ar, bg, cs, da, de, de_AT, en_GB, es, fi, fr, he, hr,
mk, nb, nl, pl, pt_PT, ru, sk, sr, sv, tr, uk, zh_CN.
* Add Hebrew relationship calculator.
* Add Hebrew date handler.
* Refine Hebrew About modifiers in date parser.
* Add Hebrew to the list of user manual translations.
* Update copyright dates.
* Windows AIO:
* Improve AIO build script to run without modifications. The build script
required modification before first use to set the full path to the local
aio directory. Second change is to use the `-N` option in wget to avoid
downloading a file if the timestamp hasn't changed on the server. Third
change is to avoid the script from asking for interactive input on second
and subsequent runs.
* Add pip.exe and Adwaita scalable icons to Windows AIO.
* Fix up Windows AIO for pip, and Finnish spell check.
* Ignore AIO build artifacts in .gitignore file.
* Addon Manager:
* Invalidate caches after new python modules are installed. This ensures that
any new python modules installed will be found by the python import
mechanism.
* Allow multiple versions in gi requirements. Enhances the `requires_gi`
property in gpr files to allow mutiple versions of a GObject introspection
module. e.g. requires_gi=[("GooCanvas", "2.0,3.0")]
* Update a couple of strings to clarify the Addon Manager UI. Fixes #13019.
* Fix Addon Manager help link. Fixes #13018.
* Capitalize "python" in the Addon Manager settings. Fixes #13016.
* Fix addon prerequisites install.
* Make the Addon Manager available without a tree loaded.
* Change "url" to "URL" in the project editor.
* Set default project editor window width to 600.
* Refresh row in Addon Manager after an addon is installed. When an addon is
installed there is no need to refresh the addon listing. We just need to
update the row. This also keeps the user in the same place in the list.
Fixes #13001.
* Rename "Uninstalled" to "Not installed".
* Add an extra requirements check after installing modules.
* Verify tool:
* Convert the Data Verify tool to display results in a tree.
* Add 8 more data verify rules.
* Fix some garbage collection issues.
* Performance enhancements.
* Also fixed a small amount of easy pylint issues.
* Fix invalid escape sequences by doubling backslashes, or making the strings
raw, as is commonly done for regexes.
* Make subprocess inherit environment variables in setup script. The PATH
environment variable got unset for that subprocess, thus not being able to
find msgfmt.
* Fix command line progress output. The text was partly overwritten whenever
the percent value was updated. Add unit tests.
* Added HasRepo rule to rule list. Fixes #13097.
* Fix references to gramps-xml file format in man pages. Change -f gramps-xml
to -f gramps Fixes #9723.
* Update and fix CSV import. See discussion on the discourse forum:
https://gramps.discourse.group/t/how-can-people-be-deleted-according-to-a-list/4511/13?u=dsblank
* Fix gramps example media source.
* Clarify the Tip of the Day text to indicate that it applies specifically to
"Grouped People View", not the flat People View. Fixes #12897.
* Report simpler Python version string in About and Error dialogs.
* Fix DeprecationWarning for invalid escape sequence. Change to use raw string.
* Fix invalid file mode error with Python 3.11.
* Fix hyphenated surnames in name displayer. Strip spaces around a hyphen,
so for example, "Smith - Jones" is cleaned up to become "Smith-Jones".
Fixes #13086.
* Add year rounding option to preferences. Fixes #12422.
* Fix context menu in all family events quick view screen. Fixes #12759.
* Added option to display birth and death info in descendant report.
Implements #12758.
* Update Doug Blank's email address.
* Add new event reference citations to the private proxy.
* New citations not included on the Narrative Web. Fixes #13046
* Add event reference citations to the complete individual report. Fixes #13035.
* Fix display of gramplet help URLs that start with "https://". A help_url
starting with either "http://" or "https://" should be used as the full url
to be displayed in the browser. Fixes #13039.
* Fix bug in narrative web when the role name contains a dash. Not enough values
to unpack in sort_by_role. Fixes #13042.
* Make the narrative web support both LTR and RTL layouts. Fixes #12960.
* Minor string changes to narrative web report options.
* Sort Confidence column in source citation tabs. The "Confidence level" is
sorted by confidence label instead of the internal value. The
"Confidence level" text is too wide and replaced by "Confidence".
Fixes #13036.
* Fix imports test for new note added to database.
* Fix GEDCOM import for SUBN record containing note. Fixes #13024, #12152.
* Use imagesize rather than magic.
* Reformat code using the latest stable version of black.
* Fix sizing of shared information in the reference editors. Sets the packing
of the expander widget to depend on whether or not it is expanded.
Fixes #13030.
* Fix crash when displaying settings in context menu popup of the pedigree view.
A separator menu item was being added twice. Fixes #13029.
* Add help_url to built-in gramplet plugin data. Link Gramplets to new wiki
landing anchor of lookup table which shows which Gramplets work in which
categories.
* Add right and left margins to the welcome gramplet. Add some white space
between the left/right text box borders and the text glyphs. See:
https://gramps.discourse.group/t/what-can-i-do-to-help-fix-unpadded-text-gramplets/2293/2
* Rename "Ancestor View" to "Pedigree View" in Tip of the Day. Fixes #13023.
* Fix translated Tip of the Day entries with quote characters. When extracting
strings from the `tips.xml` file, xgettext removes the escape sequence for
the quote character (") so we don't need to add it back before we obtain
the translated string. Fixes #12325.
* Fix a few deprecation warnings Issue #13021.
* Fix report dialog error when no active person selected. Running a report from
the reports dialog with no active person selected caused an error.
Fixes #13020.
* Rename citation formatter from "Default" to "Legacy".
* Update width of Gramps ID fields in editors. These fields appeared wider in
earlier Gtk versions. Fixes #12999.
* Replace remaining Gtk.Menu.popup calls The `popup` method is deprecated. The
remaining calls to `popup` are replaced by `popup_at_pointer`.
* Fix positioning of popups relative to widgets. Replace `popup` with
`popup_at_widget` and remove old positioning functions. Fixes #13008.
* Change the subscript key binding in the note editor. Use <PRIMARY>r for
subscript. The standard keyboard shortcut for copy is <PRIMARY>c.
Fixes #13002.
* Set filter editor rule list to expand.
* Fix display of help links in gramplet bars. Use `display_help` rather than
`display_url` to display manual pages.
* Add more scrollbars to the Preferences dialog.
* Fix bug in endnotes citations.
* Fix bug when deleting a row from a filtered flat list view. Fixes #12995.
* Fix sizing of the surname table in the name editor. The columns were slightly
too large requiring a scrollbar with the default dialog size and column
widths. Fixes #12994.
* Add missing cite and thumbnailer plugin directories to build script.
* Include javascript files in installation. Fixes #12991.
* Fix black margin in project list with scrollbar. Fixes #12993.
* Package Gramps-5.2.0-beta2 on macOS.
* Fix translator date inflection comments.
2023-08-25
Version 5.2.0-beta2
* Updated translations: ca, cs, da, de, en_GB, es, fi, he, hr, it, nb, nl, pl,
pt_BR, pt_PT, ru, sk, sv, tr, uk.
* Add option to exclude fan chart title.
* Prevent fan chart title being overwritten by the chart. Fixes #12926.
* No longer state that Gramps will close in the backup message. Fixes #12984.
* Clean up some Gdk Screen deprecations.
* Fix Gedcom import tagging a note with an undefined tag handle. Fixes #12985.
* Fix crash when printing notes during endnote creation. Fixes #12983.
* Fix `trans_text` keyword in `xgettext`. Fixes #12982.
* Fix vertical expansion of family tree manager list.
* Fix error 404 with openstreetmap map service.
* Restrict access to Stamen maps. Fixes #12971.
* Track column width settings for all editor tabs separately.
Fixes #12945, #12970.
* Add support for Hebrew prefixes.
* Add Farsi and Galician to Microsoft Windows Locale list.
* Add a scrolled window to the preferences data tab. Fixes #12968.
* Addon Manager:
* Rename "Upgrade" to "Update".
* Fix addon settings bug.
* Add installation status filter.
* Add project up, down and restore buttons.
* Add help button.
* Fix error when deleting a surname. Fixes #11744, #12626, #12629, #12963.
* Fix glocale problems on Windows.
* Fix system locale detection on MS Windows.
* Add Windows AIO workflow.
* Fixes for the Windows AIO build:
* Convert packages from python3 to python.
* Replace `share.tgz` with downloaded files.
* Add missing dictionaries.
* Add missing D-Bus executable.
* Use newly available bsddb3 package.
* Improved organization of the Addon Manager filter lists. Fixes #12958.
* Update the plugin type names and sort them alphabetically.
* Swap the order of "Expert" and "Developer" in the audience list.
* Reverse the order of the status list.
* Include event reference citations and notes in Gedcom export.
* Better URLs for gramplet bar help. Fixes #12957.
* Tidy up strings in preferences.
* Fix spelling mistake in Pro-Gen importer.
* Improve Addon Manager search. Fixes #12955.
* Check for Windows executables in addon requirements. Fixes #12954.
* Do not strip checksum of media object in private proxy.
* Update po snippet generation to output msgctxt.
* Save column sizes before a rebuild. Save column sizes as floats rather than
integers. Fixes #12943.
* Set default column size in list views to sensible defaults. Fixes #12944.
* String improvements.
* Update authors file.
* Fix changes reverted by mistake. This restores a couple of autobackup
intervals and removes bsddb from the list of backends.
* Fix bottombar not saving size. Fixes #12941.
* Fix incorrect genealogical symbols. Fixes #12937.
* Mac: Use tarball for osm-gps-map instead of git repository.
* Changes for Black integration.
2023-08-01
Version 5.2.0-beta1
* Highlights
* Create new Addon Manager dialog.
* Add support for open spans.
* Add strikethrough and superscript/subscript support.
* Add new gender option of "Other".
* Add citations to event references.
* Deprecate BSDDB, but allow to be loaded with convert to SQLite.
* Add coordinates format with description. Fixes #11248
* Add the possibility of case sensitive/insensitive search.
* Add source icon to editor dialogs. Implements #11372
* Make the tab columns resizable. Implements #8767
* Support XDG base directory specification. Fixes #8025
* General
* Update README, INSTALL and FAQ files.
* Update copyright dates.
* Update Creative Commons license version to 4.0.
* Minor string fixes. Add or remove whitespace.
* Append full stops to ends of sentences. Remove full stops after ellipses.
* Spelling fixes.
* Many Pylint and other cleanups.
* Reports
* Birthday and Anniversary Report: Add person ID.
* Common calendar on Statistics chart. Fixes #12571
* HourGlass graph: Add option to use genealogical symbols for events.
* Statistics chart: Small code improvements.
* Calendar report enhancements:
* Added symbols for birth, marriage and death.
* Added symbols for dead spouse in anniversaries.
* Optionally include death dates.
* Refactored method `collect_data`.
* Added flipped text option to Graphical Report Fan Chart. This option flips
the names in generations 2, 3 and 4 that on the bottom half of the fan.
* Kinship report: change max number of generations. Fixes #12004
* Add a new primary surname substitution keyword option.
* Add option name_format to treedoc. Implements #12136
* Enhance name formats in the genealogytree reports.
* Add new output format of "graph" to the tree document generator.
* Display leap day anniversaries every year on calendars.
* Show index of person in ancestor tree report.
* Enable markup in ODF backend.
* Relationship Graph: Add option for 'offset parents' Replaces 'use subgraph'
option. Fixes #11550, #11494
* Add fanchart option with overhang. By adding an overhang to the fanchart,
more space can be used.
* Do not round rotation in SVG. When making >8 generation fan charts,
the rounding of rotation becomes visible.
* Family group report enhancements:
* Replace Marriage heading with relationship type.
* Remove Husband and Wife headings. These are incorrect for same-sex
relationships or when the couple are unmarried. Resolves #11199
* Complete individual report:
* Use shorter name to reduce line length.
* Add option that allows to use the name of the individual as title.
* Calendar: Use the death symbol defined in preferences.
* Add descriptions to decendant tree report styles.
* Gramplets
* Improved Age Stats gramplet:
* New Histogram widget.
* Extra bucket for ages above maximum.
* Automatic scaling to available width.
* Image Metadata Gramplet expand metadata support:
* Enable showing XMP and IPTC metadata.
* Add additional metadata fields that contain tags and text descriptions.
* Display thumbnails for XMP-mwg-rs Regions.
* Calendar gramplet: Add day names. The first day is defined according to the
locale. Fixes #12515
* Allow gramplets to have an orientation dependent layout. Use this for the
gallery gramplets. Implements #11527
* Update Welcome gramplet.
* Link to translated wiki pages in welcome gramplet.
* Add a note gramplet for NoteView.
* Show note type in notes gramplet. Also move page number next to
forward/back buttons. Implements #12402
* Add Copy All functionality to Ancestor gramplet.
* Citations gramplet: Add date, page, and confidence. Fixes #9224
* Change columns order and size.
* Sort correctly by date.
* Display the event date in the backlinks gramplet. Fixes #12230
* AgeOnDate gramplet: Fix position of input field and button.
* Add context menu entries for Gramplet Bar. Link to help for Gramplets and
the Gramplet Bar Menu. Issue #10919
* Narrative Web Report
* Sort events by date in the individual page. Fixes #12717
* Clarify how to get the API_KEY. Fixes #12646
* Solves some problems. Force place name to be "Full" names. Fixes #12821
* Add noindex for robots.
* Lightbox feature. Feature request: #12801
* The latest version of openlayers doesn't work:
* Change the location of js and css files.
* Menu simplification and usage clarification.
* Show in which file the openlayers version should be modified.
* Show the config name to modify.
* Code simplification.
* Add a comment if invalid lat/long. Fixes #12565
* Some fixes to alphabet_navigation. Ensure correct index letters according
to normal indexing conventions by using ICU AlphabeticIndex. Fixes #12350
* Change order of Event Reference Notes and Notes. Fixes #12356
* Possible loop with associated people.
* Add option to show all places. Fixes #12315
* Don't display media, source ref for unused place.
* Backlink gramplet problem if no back references.
* Show image on the map only if it was collected.
* Show the thumbnail place if already collected.
* Add place name to birth and death dates when we use the toggle section.
* Possible problem with RTL languages.
* Inconsistency between the name of the link to a reference and the name of
this reference for an individual. Fixes #12336
* Translation problem + missing events on markers.
* Addressbooklist: headers aren't translated.
* Missing events for markers + code simplification.
* Various fixes to user-visible strings.
* Toggle bug for source attribute.
* Remove the note type 'Html code' for notes. Fixes #12184
* Add php session_start. Fixes #12135
* Multiple languages for the narrative web and optional other additions
* Fix letters in comment:
* Insert missing letters in comments.
* Terms to upper case (gregorian, javascript).
* In cms mode, some inconsistent image links.
* Incorrect place index if alternate names. The places page index doesn't
show the alternate names used. Fixes #11645
* Description message is not translatable.
* Possibility to have more than 2 downloads. By default, I set this to
3 downloads. Fixes #11626
* Add family map to family pages. Adapt css files to have a better look.
Fixes #11614
* Set unused media to False by default Fixes #11496
* Center correctly the map in the web page.
* Dropmenu doesn't work if only one year.
* Add notes to updates and delete empty rows.
* References enhancement on place pages.
* Convert the years in gregorian calendar.
* Enclosed places not correctly sorted. Fixes #11487
* Don't use event links if no event pages + some pylint changes.
* Map popup links must be visible for all stylesheet.
* Add scrollbar in popup content.
* Event type, Date and place in bold.
* Family events shifted one column on the left.
* ancestortree css file before narrative-screen to allow modification.
* Adaptation for all themes. Fixes #11393
* Allow scrolling if the ancestor tree is too large.
* Translation of alternate stylesheets name.
* Crash when using the family map.
* Translate only the css title, not the file name.
* Some minor corrections to css files.
* Open layers optimizations.
* Open layers and link in popup.
* Some events missing in popup.
* Reference date column too large.
* Allow the place title to use the maximum of width .
* Shift children from one column, adapt the css files to the new table
and fix some inconsistencies between the source and the css.
* Make the drop down menu button size usable.
* Incorrect rendering when use of alternate place name .
* Removing the unused image heigth option.
* Click on image link gives a not found URL.
* Allow alternate stylesheets in pages.
* Allow urls for images in user css files.
* Add popup to manage markers. Fixes #11150
* Add Stamen map. Fixes #5984
* Correct English in narrative web report.
* Links in notes not obvious in Narrated Web report. Fixes #12105
* Web Calendar
* Have config files for multiple databases.
* Best management for the narrative web link.
* Use arrows, compress monthname and arrows adapt the css files accordingly.
* Use arrows in one day within a year compress monthname and arrows adapt the
css files accordingly.
* Index go now to the current month.
* Year glance + some pylint improvements
* Incorrect width size with Mainz css.
* Problem with Visually css file.
* The table cell is highlighted when hover.
* Better rendering for full year at a glance.
* better rendering on small devices.
* Duplicate marriage.
* Incorrect results when divorce event.
* Add alternate stylesheets.
* Missing death symbol.
* Geography
* Use path from constants.
* Remove redundant class members.
* Simplify popup menu builder.
* Use Gtk.SeparatorMenuItem instead of empty Gtk.MenuItem.
* Change Gtk.MenuItem to Gtk.CheckMenuItem for map providers.
* Gramps crashes on import of large KML file. Fixes #11954
* Better management when closing database.
* Add two new icons.
* Better handling of bad tile path. Fixes #11629
* Add custom tiles provider. Fixes #11416
* GUI
* Fix for panes that are unable to be resized.
* Backup: Add a modal status popup This is used to prevent the user closing
Gramps during a backup. Fixes #12846, #12475, #12538
* Fix ColorButton size in preferences.
* Display a tooltip warning if a window saves data immediately. Fixes #12117
* Move privacy column in editor citation tabs.
* Add Preferences and Addon Manager toolbar buttons.
* Update Tip of the Day entries.
* Provide better formatting for the import statistics. Also fix concatenation
bug.
* Enhance InfoDialog to display simple tables
* Add "All supported files" as file type selection. Fixes #12161
* Date input: allow yyyy-mm for iso format.
* Add option to hide ages for events after death.
* Correct spelling of "vCard" in importer.
* Add option to control display format of latitude and longitude. Fixes #11248
* Allow entering place latitude and longitude without space.
* Use replacement text for blank surname heading in person tree.
* Improve description of regular expressions in filter editor.
* Add Back/Forward labels to citation tree view. Fixes #12510
* "Number of Parents" column in Person Views doesn't sum all parent.
Fixes #12268
* Symbols enhancement:
* Add the possibility to set all default value to a string.
* Gui configuration improvement.
* Possibility to drag and drop a symbol from the symbol list.
* Replace death symbol by buried, cremated or killed symbol depending on
the event type.
* Fix spelling of "Descendants". Resolves #12535
* Provide an option to "hide" the LDS tab. Immplements #3872.
* Add possibility to select the dialect of CSV export.
* Add Abbreviation column to source and citation selectors. Implements #11710
* Update confirmation message in the export assistant.
* Implement calendar quarter dates as date ranges. For example, "Q2 2020" is
converted to "between 1 April 2020 and 30 June 2020".
* Use a contrasting text color in pedigree view. White text shows up better
in boxes with a dark background color. Fixes #11799
* Allow user to set default calendar in date editor. Fixes #11809
* Update Preferences dialog. Clean up of existing Preferences tabs.
Implements #12049
* Update address lists. Capitalize postal and phone column headers.
* Add Phone/Postal to Addresses tab of Person editor. Fixes #11600
* Fix presumed typo in menu item "Sorts events" should be "Sort events".
* Move beta warning into the status bar.
* Increase information in database summary text report. Add type counts
for events, places, sources, citations, repositories and notes.
* In familysidebarfilter, search on each part of name. Fixes #12023
* Add tooltips to sidebar filter 'Find' and 'Reset' buttons. Issue #11783
* Media view: Set new media as active.
* Typo on variable name in navigator. Fixes #12039
* Pedigree View: Add Help context menu. Fixes #10919
* EditLink: When changing the link type choose the active object as default.
* EditLink: When creating a link, prefer linking persons over
places, events, ..., and images.
* Allow filter rules to access Family filters.
* Add a new person filter rule 'HasAddressText'.
* New Remove tag from selected rows functionality.
* Add 'HasAttribute' filter rule to repositories, sources and citations.
Fixes #9845
* Add tooltips for places in clean input data tool.
* Improve CSV import to allow places that are not in enclosed order.
Fixes #11407
* Update tags: Translation for menu strings added and escape illegal
characters.
* Types
* Add new note type of "Analysis".
* Add Stillbirth as pre-defined event type. Add Stillbirth as a fallback
for both Birth and Death events.
* Change "death cause" to "cause of death".
* Add Godparent as event role.
* Gedcom
* Implement the GEDCOM tag "_RUFNAME".
* Add round trip Ancestry.com _APID tag support. Implements #9925
* Explicitly set birth name in GEDCOM export.
* Fix GEDCOM import/export DATE/TIME creep by UTC offset.
* Improvements in the English manpage
* Various grammar improvements.
* Use HTTPS URLs.
* Use Unicode trademarks and arrows.
* Improve syntax.
* Translation
* Updated translations: ar, bg, br, ca, cs, da, de_AT, de, el, en_GB, eo, es,
fa, fi, fr, ga, gl, he, hr, hu, id, is, it, ja, mk, nb, nl, nn, pl, pt_BR,
pt_PT, ru, sk, sl, sr, sv, ta, tr, uk, vi, zh_CN, zh_HK.
* Support msgctxt in po files instead of a vertical bar in the msgid.
* Update check_po to support msgctxt strings.
* Add JJ/MM/AAAA French date format.
* Add header to XML fragments file. A header containing a charset is required
by xgettext.
* Holidays: Sort countries alphabetically.
* Add Russian holidays.
* Add Italian holidays.
* Add Catalan holidays.
* Add Turkish holidays.
* Fix Russian calendar unit test. The translation of "Julian" is hardcoded
and the test and will fail if the translation is updated.
* Give consistency to short months in Spanish.
* Fix unit tests requiring English locale.
* Fix invalid Persian calendar dates. Fixes #12576
* Add Turkish Relationship Calculator.
* Add translation context to ChildRefType. Needed for Russian.
* New de_AT translation Based on the de translation.
* Add German date format option for 'numeric date with leading zeros'.
* Add context to place name strings. Needed for Russian translation.
* Remove translatable attribute from "%s" strings.
* Add "Translator" tag to comments intended for translators.
* Convert old translator tags. Change the old tags "translator" and
"TRANSLATOR" to "Translator".
* Only extract comments with the "Translator" tag. Previously all comments
before a translated string were extracted.
* Remove old translation context separators.
* Fix month lexeme translations for da, fi, sl and sv.
* Merge translation changes from the gramps51 converting the files to the
new msgctxt format.
* Fix fatal errors in po files.
* German relation calculator fixed issue if more then 24 generations between
the two people.
* Replace intltool with gettext tools. The build now requires gettext v0.19.7
or above.
* Removed obsolete files: gramps.applications, gramps.keys, gramps.mime
* Created ITS rules for holidays.xml and tips.xml files.
* Included ITS files for shared-mime-info from a gettext v0.20.2
installation.
* New datehandler and relationship calculator for de_AT.
* Corrected a few relationships in pt relationship calculator.
* Locale
* Extract win32 localatiztion to a new file win32locale.py.
* Fix minor PyLint complaints.
* Fix PyLint complaints about import statements.
* Remove deprecated locale.getdefaultlocale and locale.format functions.
* Extract translation classes from grampslocale.py
* Correct remaining pylint issues in maclocale.py
* Fix shadowed variables.
* Fix unnecessary parens.
* Fix unused variables.
* Fix pylint line-too-long.
* Remove unused numeric.
* Remove unused currency.
* Use msgctxt in Lexeme docstring.
* Technical
* Increase minimum version requirements - Python: 3.8 Gtk: 3.24
* Migrate code style to Black.
* Use GitHub Actions to run continuous integration checks.
* Attempt to derive the resource path from the package path. Intended to
allow a Gramps core package to be created as a wheel and installed via pip.
* Use setup from setuptools to allow creation of python wheels.
* Port from GtkSpell to Gspell.
* Add source files for Windows AIO. Remove old Windows directory.
* Add support for thumbnailer plugins.
* Add support for CITE plugins Provide a single default plugin that
replicates the existing functionality.
* Allow custom undo managers in database plugins.
* Add bookmark-list-changed signal.
* Remove redundant code since Gtk 3.24 required.
* Fix deprecation of Gtk positional arguments.
* Fix Gtk deprecation Menu.set_title
* Fix Gtk deprecation ScrolledWindow.add_with_viewport
* Fix GObject.PARAM_READWRITE deprecation.
* Fix deprecation GObject.GError -> GLib.GError
* Fix Gtk deprecation Widget.reparent.
* Fix Gtk deprFix deprecation on Gtk.Widget.override_font and
modify_fontecation Widget.set_padding
* Fix garbage collection issue in ConfigManager.
* Fix garbage collection issue in UIManager.
* Fix garbage collection issue in Callback.
* Color values in the range [0-1] are supposed to be floats See rgb_to_hex.
* Save and restore standard streams.
* Close standard streams on exit. Prevents the warning:
"ResourceWarning: unclosed file".
* Replace os.system with subprocess.call in setup.py
* Add extra plugin properties:
* Add 'Experimental' and 'Beta' status options.
* Add audience property with possible values:
'All', 'Developer' and 'Expert'.
* Add maintainers and maintainers email properties.
* Add requires_mod, requires_gi and requires_exe properties to specify
addon requirements.
* Allow help url for all plugin types.
* Add stock_category_icon support.
* Replace deprecated imp by importlib.
* CI: Upgrade actions/checkout to v3.
* Update Gramps CI workflow to run on Ubuntu 20.04 Ubuntu 18.04 became
fully unsupported on 1 Dec 2022.
* Fix package installation failures in CI.
* Gallery tabs: Avoid signal warning during editor clean up. The signal
no longer exists to disconnect from at this point.
* Fix display warnings in unit tests Attemps to get rid of the follow
warning: "Unable to init server: Could not connect: Connection refused".
* Add .venv environments to .gitignore
* Migrate build from distutils to setuptools Distutils is deprecated with
removal planned for Python 3.12.
* Remove options and disables that pylint no longer uses.
* Enable "file:///" URI paths for addons location.
* Use ObjEntry to select a person as an association.
* ConfigManager: Add support for embedding comments in ini header.
* Fix incorrect title of event schema attribute_list.
* Test: Use temporary directory to test bsddb.
* Remove unused constant ENV_DIR.
* Add gramps_id to repository & note text data lists.
* Add unit test for python3 -m gramps
* Add __main__.py
* Skip inspect.stack also when debug logging is disabled.
* Wrap inspect.stack in if __debug__.