mygramps/MyTimeline.gpr.py
Daniel Viegas 581a6c1f59 Initial commit: MyTimeline plugin for Gramps
- Add MyTimeline.gpr.py plugin registration file
- Add MyTimeline.py view implementation with vertical timeline
- Displays family events (marriage, birth, death) in a vertical timeline
- Supports navigation, bookmarks, and database updates
2025-11-28 21:49:59 +01:00

48 lines
1.5 KiB
Python

# encoding:utf-8
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2024
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, see <https://www.gnu.org/licenses/>.
#
from gramps.gen.plug._pluginreg import register, VIEW, STABLE
from gramps.gen.const import GRAMPS_LOCALE as glocale
_ = glocale.translation.gettext
MODULE_VERSION = "6.0"
# ------------------------------------------------------------------------
#
# MyTimeline View
#
# ------------------------------------------------------------------------
register(
VIEW,
id="mytimelineview",
name=_("MyTimeline"),
description=_("A vertical timeline view showing family events including birth, death, and marriage"),
version="1.0",
gramps_target_version=MODULE_VERSION,
status=STABLE,
fname="MyTimeline.py",
authors=["MyTimeline Plugin"],
authors_email=[""],
category=("Families", _("Families")),
viewclass="MyTimelineView",
)