From c50e87ad42892f280e9f80a801d1faacb5a6bf27 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 19 Sep 2025 16:21:31 +0200 Subject: [PATCH] Make it usable from CLI Heatmap used to be called on CLI[1] but not anymore. See https://gramps-project.org/bugs/view.php?id=13990 : it's not registered to be used through the CLI. This restores that feature [1] See https://gramps-project.org/bugs/view.php?id=12813 --- Heatmap/heatmap.gpr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Heatmap/heatmap.gpr.py b/Heatmap/heatmap.gpr.py index 04f85fe0b..e396f57ac 100644 --- a/Heatmap/heatmap.gpr.py +++ b/Heatmap/heatmap.gpr.py @@ -33,6 +33,6 @@ category=CATEGORY_WEB, reportclass="ReportClass", optionclass="ReportOptions", - report_modes=[REPORT_MODE_GUI], + report_modes=[REPORT_MODE_GUI, REPORT_MODE_CLI], help_url="Addon:HeatmapWebReport", )