From a00dcd0c2b8084b8dfa72e1b3033de4827773259 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Mon, 21 Mar 2011 20:43:00 +0000 Subject: [PATCH] Move all trunk plugins to version 3.4 svn: r16874 --- src/plugins/bookreport.gpr.py | 2 +- src/plugins/docgen/docgen.gpr.py | 18 +++--- src/plugins/drawreport/drawplugins.gpr.py | 14 ++--- src/plugins/export/export.gpr.py | 16 ++--- src/plugins/gramplet/bottombar.gpr.py | 72 +++++++++++------------ src/plugins/gramplet/gramplet.gpr.py | 38 ++++++------ src/plugins/graph/graphplugins.gpr.py | 6 +- src/plugins/import/import.gpr.py | 16 ++--- src/plugins/lib/libplugins.gpr.py | 34 +++++------ src/plugins/mapservices/mapservice.gpr.py | 6 +- src/plugins/quickview/quickview.gpr.py | 32 +++++----- src/plugins/records.gpr.py | 4 +- src/plugins/rel/relplugins.gpr.py | 34 +++++------ src/plugins/sidebar/sidebar.gpr.py | 2 +- src/plugins/textreport/textplugins.gpr.py | 30 +++++----- src/plugins/tool/tools.gpr.py | 44 +++++++------- src/plugins/tool/toolsdebug.gpr.py | 6 +- src/plugins/view/fanchartview.gpr.py | 2 +- src/plugins/view/geoview.gpr.py | 4 +- src/plugins/view/placetreeview.gpr.py | 2 +- src/plugins/view/view.gpr.py | 24 ++++---- src/plugins/webreport/webplugins.gpr.py | 4 +- src/plugins/webstuff/webstuff.gpr.py | 2 +- 23 files changed, 206 insertions(+), 206 deletions(-) diff --git a/src/plugins/bookreport.gpr.py b/src/plugins/bookreport.gpr.py index 1df69cb3e..134c3a5a2 100644 --- a/src/plugins/bookreport.gpr.py +++ b/src/plugins/bookreport.gpr.py @@ -31,7 +31,7 @@ id = 'book', name = _("Book Report"), description = _("Produces a book containing several reports."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'BookReport.py', authors = ["Alex Roitman"], diff --git a/src/plugins/docgen/docgen.gpr.py b/src/plugins/docgen/docgen.gpr.py index 32aca71b2..d92c1ca94 100644 --- a/src/plugins/docgen/docgen.gpr.py +++ b/src/plugins/docgen/docgen.gpr.py @@ -31,7 +31,7 @@ plg.id = 'asciidoc' plg.name = _("Plain Text") plg.description = _("Generates documents in plain text format (.txt).") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'AsciiDoc.py' plg.ptype = DOCGEN @@ -51,7 +51,7 @@ plg.id = 'gtkprint' plg.name = _('Print...') plg.description = _("Generates documents and prints them directly.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'GtkPrint.py' plg.ptype = DOCGEN @@ -71,7 +71,7 @@ plg.id = 'htmldoc' plg.name = _('HTML') plg.description = _("Generates documents in HTML format.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'HtmlDoc.py' plg.ptype = DOCGEN @@ -91,7 +91,7 @@ plg.id = 'latexdoc' plg.name = _('LaTeX') plg.description = _("Generates documents in LaTeX format.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'LaTeXDoc.py' plg.ptype = DOCGEN @@ -112,7 +112,7 @@ plg.name = _('OpenDocument Text') plg.description = _("Generates documents in OpenDocument " "Text format (.odt).") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ODFDoc.py' plg.ptype = DOCGEN @@ -132,7 +132,7 @@ plg.id = 'pdfdoc' plg.name = _('PDF document') plg.description = _("Generates documents in PDF format (.pdf).") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'PdfDoc.py' plg.ptype = DOCGEN @@ -152,7 +152,7 @@ plg.id = 'psdrawdoc' plg.name = _('PostScript') plg.description = _("Generates documents in PostScript format (.ps).") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'PSDrawDoc.py' plg.ptype = DOCGEN @@ -172,7 +172,7 @@ plg.id = 'rftdoc' plg.name = _('RTF document') plg.description = _("Generates documents in Rich Text format (.rtf).") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'RTFDoc.py' plg.ptype = DOCGEN @@ -193,7 +193,7 @@ plg.name = _('SVG document') plg.description = _("Generates documents in Scalable " "Vector Graphics format (.svg).") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'SvgDrawDoc.py' plg.ptype = DOCGEN diff --git a/src/plugins/drawreport/drawplugins.gpr.py b/src/plugins/drawreport/drawplugins.gpr.py index 3d8179df4..563bca09e 100644 --- a/src/plugins/drawreport/drawplugins.gpr.py +++ b/src/plugins/drawreport/drawplugins.gpr.py @@ -32,7 +32,7 @@ plg.id = 'ancestor_chart' plg.name = _("Ancestor Tree") plg.description = _("Produces a graphical ancestral tree") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'AncestorTree.py' plg.ptype = REPORT @@ -54,7 +54,7 @@ plg.id = 'calendar' plg.name = _("Calendar") plg.description = _("Produces a graphical calendar") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'Calendar.py' plg.ptype = REPORT @@ -76,7 +76,7 @@ plg.id = 'descend_chart' plg.name = _("Descendant Tree") plg.description = _("Produces a graphical descendant tree") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'DescendTree.py' plg.ptype = REPORT @@ -102,7 +102,7 @@ plg.status = STABLE plg.fname = 'DescendTree.py' plg.ptype = REPORT plg.category = CATEGORY_DRAW -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.authors = ["Craig J. Anderson"] plg.authors_email = ["ander882@gramps-project.org"] plg.require_active = True @@ -121,7 +121,7 @@ plg.id = 'fan_chart' plg.name = _("Fan Chart") plg.description = _("Produces fan charts") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'FanChart.py' plg.ptype = REPORT @@ -144,7 +144,7 @@ plg.name = _("Statistics Charts") plg.description = _("Produces statistical bar and pie charts of the people " "in the database") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'StatisticsChart.py' plg.ptype = REPORT @@ -167,7 +167,7 @@ plg.id = 'timeline' plg.name = _("Timeline Chart") plg.description = _("Produces a timeline chart.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'TimeLine.py' plg.ptype = REPORT diff --git a/src/plugins/export/export.gpr.py b/src/plugins/export/export.gpr.py index d57ee185a..0c370ab4c 100644 --- a/src/plugins/export/export.gpr.py +++ b/src/plugins/export/export.gpr.py @@ -32,7 +32,7 @@ plg.name = _("Comma Separated Values Spreadsheet (CSV)") plg.name_accell = _("Comma _Separated Values Spreadsheet (CSV)") plg.description = _("CSV is a common spreadsheet format.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportCsv.py' plg.ptype = EXPORT @@ -53,7 +53,7 @@ plg.name = _('Web Family Tree') plg.name_accell = _('_Web Family Tree') plg.description = _("Web Family Tree format") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportFtree.py' plg.ptype = EXPORT @@ -75,7 +75,7 @@ plg.name_accell = _('GE_DCOM') plg.description = _('GEDCOM is used to transfer data between genealogy programs. ' 'Most genealogy software will accept a GEDCOM file as input.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportGedcom.py' plg.ptype = EXPORT @@ -96,7 +96,7 @@ plg.name = _('GeneWeb') plg.name_accell = _('_GeneWeb') plg.description = _('GeneWeb is a web based genealogy program.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportGeneWeb.py' plg.ptype = EXPORT @@ -118,7 +118,7 @@ plg.name_accell = _('Gra_mps XML Package (family tree and media)') plg.description = _('Gramps package is an archived XML family tree together ' 'with the media object files.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportPkg.py' plg.ptype = EXPORT @@ -141,7 +141,7 @@ plg.description = _('Gramps XML export is a complete archived XML backup of a' ' Gramps family tree without the media object files.' ' Suitable for backup purposes.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportXml.py' plg.ptype = EXPORT @@ -162,7 +162,7 @@ plg.name = _('vCalendar') plg.name_accell = _('vC_alendar') plg.description = _('vCalendar is used in many calendaring and PIM applications.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportVCalendar.py' plg.ptype = EXPORT @@ -183,7 +183,7 @@ plg.name = _('vCard') plg.name_accell = _('_vCard') plg.description = _('vCard is used in many addressbook and pim applications.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ExportVCard.py' plg.ptype = EXPORT diff --git a/src/plugins/gramplet/bottombar.gpr.py b/src/plugins/gramplet/bottombar.gpr.py index 4a0b9b3ab..e21ef712e 100644 --- a/src/plugins/gramplet/bottombar.gpr.py +++ b/src/plugins/gramplet/bottombar.gpr.py @@ -30,7 +30,7 @@ register(GRAMPLET, name=_("Person Details Gramplet"), description = _("Gramplet showing details of a person"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="PersonDetails.py", height=200, @@ -43,7 +43,7 @@ register(GRAMPLET, name=_("Repository Details Gramplet"), description = _("Gramplet showing details of a repository"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="RepositoryDetails.py", height=200, @@ -56,7 +56,7 @@ register(GRAMPLET, name=_("Place Details Gramplet"), description = _("Gramplet showing details of a place"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="PlaceDetails.py", height=200, @@ -69,7 +69,7 @@ register(GRAMPLET, name=_("Media Preview Gramplet"), description = _("Gramplet showing a preview of a media object"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="MediaPreview.py", height=200, @@ -82,7 +82,7 @@ register(GRAMPLET, name=_("Metadata Viewer Gramplet"), description = _("Gramplet showing metadata of a media object"), version="1.0.1", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="MetadataViewer.py", height=200, @@ -95,7 +95,7 @@ register(GRAMPLET, name=_("Person Residence Gramplet"), description = _("Gramplet showing residence events for a person"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="PersonResidence.py", height=200, @@ -108,7 +108,7 @@ register(GRAMPLET, name=_("Person Gallery Gramplet"), description = _("Gramplet showing media objects for a person"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Gallery.py", height=200, @@ -121,7 +121,7 @@ register(GRAMPLET, name=_("Event Gallery Gramplet"), description = _("Gramplet showing media objects for an event"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Gallery.py", height=200, @@ -134,7 +134,7 @@ register(GRAMPLET, name=_("Place Gallery Gramplet"), description = _("Gramplet showing media objects for a place"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Gallery.py", height=200, @@ -147,7 +147,7 @@ register(GRAMPLET, name=_("Source Gallery Gramplet"), description = _("Gramplet showing media objects for a source"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Gallery.py", height=200, @@ -160,7 +160,7 @@ register(GRAMPLET, name=_("Person Attributes Gramplet"), description = _("Gramplet showing the attributes of a person"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Attributes.py", height=200, @@ -173,7 +173,7 @@ register(GRAMPLET, name=_("Event Attributes Gramplet"), description = _("Gramplet showing the attributes of an event"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Attributes.py", height=200, @@ -186,7 +186,7 @@ register(GRAMPLET, name=_("Family Attributes Gramplet"), description = _("Gramplet showing the attributes of a family"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Attributes.py", height=200, @@ -199,7 +199,7 @@ register(GRAMPLET, name=_("Media Attributes Gramplet"), description = _("Gramplet showing the attributes of a media object"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Attributes.py", height=200, @@ -212,7 +212,7 @@ register(GRAMPLET, name=_("Person Notes Gramplet"), description = _("Gramplet showing the notes for a person"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Notes.py", height=200, @@ -225,7 +225,7 @@ register(GRAMPLET, name=_("Event Notes Gramplet"), description = _("Gramplet showing the notes for an event"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Notes.py", height=200, @@ -238,7 +238,7 @@ register(GRAMPLET, name=_("Family Notes Gramplet"), description = _("Gramplet showing the notes for a family"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Notes.py", height=200, @@ -251,7 +251,7 @@ register(GRAMPLET, name=_("Place Notes Gramplet"), description = _("Gramplet showing the notes for a place"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Notes.py", height=200, @@ -264,7 +264,7 @@ register(GRAMPLET, name=_("Source Notes Gramplet"), description = _("Gramplet showing the notes for a source"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Notes.py", height=200, @@ -277,7 +277,7 @@ register(GRAMPLET, name=_("Repository Notes Gramplet"), description = _("Gramplet showing the notes for a repository"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Notes.py", height=200, @@ -290,7 +290,7 @@ register(GRAMPLET, name=_("Media Notes Gramplet"), description = _("Gramplet showing the notes for a media object"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Notes.py", height=200, @@ -303,7 +303,7 @@ register(GRAMPLET, name=_("Person Sources Gramplet"), description = _("Gramplet showing the sources for a person"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Sources.py", height=200, @@ -316,7 +316,7 @@ register(GRAMPLET, name=_("Event Sources Gramplet"), description = _("Gramplet showing the sources for an event"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Sources.py", height=200, @@ -329,7 +329,7 @@ register(GRAMPLET, name=_("Family Sources Gramplet"), description = _("Gramplet showing the sources for a family"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Sources.py", height=200, @@ -342,7 +342,7 @@ register(GRAMPLET, name=_("Place Sources Gramplet"), description = _("Gramplet showing the sources for a place"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Sources.py", height=200, @@ -355,7 +355,7 @@ register(GRAMPLET, name=_("Media Sources Gramplet"), description = _("Gramplet showing the sources for a media object"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Sources.py", height=200, @@ -368,7 +368,7 @@ register(GRAMPLET, name=_("Person Children Gramplet"), description = _("Gramplet showing the children of a person"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Children.py", height=200, @@ -381,7 +381,7 @@ register(GRAMPLET, name=_("Family Children Gramplet"), description = _("Gramplet showing the children of a family"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Children.py", height=200, @@ -394,7 +394,7 @@ register(GRAMPLET, name=_("Person Filter Gramplet"), description = _("Gramplet providing a person filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, @@ -407,7 +407,7 @@ register(GRAMPLET, name=_("Family Filter Gramplet"), description = _("Gramplet providing a family filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, @@ -420,7 +420,7 @@ register(GRAMPLET, name=_("Event Filter Gramplet"), description = _("Gramplet providing an event filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, @@ -433,7 +433,7 @@ register(GRAMPLET, name=_("Source Filter Gramplet"), description = _("Gramplet providing a source filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, @@ -446,7 +446,7 @@ register(GRAMPLET, name=_("Place Filter Gramplet"), description = _("Gramplet providing a place filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, @@ -459,7 +459,7 @@ register(GRAMPLET, name=_("Media Filter Gramplet"), description = _("Gramplet providing a media filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, @@ -472,7 +472,7 @@ register(GRAMPLET, name=_("Repository Filter Gramplet"), description = _("Gramplet providing a repository filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, @@ -485,7 +485,7 @@ register(GRAMPLET, name=_("Note Filter Gramplet"), description = _("Gramplet providing a note filter"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="Filter.py", height=200, diff --git a/src/plugins/gramplet/gramplet.gpr.py b/src/plugins/gramplet/gramplet.gpr.py index fa9db4750..6585a3766 100644 --- a/src/plugins/gramplet/gramplet.gpr.py +++ b/src/plugins/gramplet/gramplet.gpr.py @@ -30,7 +30,7 @@ register(GRAMPLET, name=_("Age on Date Gramplet"), description = _("Gramplet showing ages of living people on a specific date"), version="2.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", status = STABLE, fname="AgeOnDateGramplet.py", height=200, @@ -51,7 +51,7 @@ register(GRAMPLET, detached_width = 600, detached_height = 450, version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -67,7 +67,7 @@ register(GRAMPLET, detached_width = 325, detached_height = 250, version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -80,7 +80,7 @@ register(GRAMPLET, gramplet = 'CalendarGramplet', gramplet_title=_("Calendar"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -96,7 +96,7 @@ register(GRAMPLET, detached_width = 500, detached_height = 500, version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -112,7 +112,7 @@ register(GRAMPLET, detached_width = 475, gramplet_title=_("Fan Chart"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -125,7 +125,7 @@ register(GRAMPLET, gramplet = 'FAQGramplet', gramplet_title=_("FAQ"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -139,7 +139,7 @@ register(GRAMPLET, gramplet = 'GivenNameCloudGramplet', gramplet_title=_("Given Name Cloud"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -155,7 +155,7 @@ register(GRAMPLET, detached_width = 600, detached_height = 400, version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -169,7 +169,7 @@ register(GRAMPLET, gramplet = 'PluginManagerGramplet', gramplet_title=_("Plugin Manager"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -185,7 +185,7 @@ register(GRAMPLET, detached_width = 600, detached_height = 400, version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -200,7 +200,7 @@ register(GRAMPLET, detached_width = 250, detached_height = 300, version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -214,7 +214,7 @@ register(GRAMPLET, gramplet = 'LogGramplet', gramplet_title=_("Session Log"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -228,7 +228,7 @@ register(GRAMPLET, gramplet = 'StatsGramplet', gramplet_title=_("Statistics"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -242,7 +242,7 @@ register(GRAMPLET, gramplet = 'SurnameCloudGramplet', gramplet_title=_("Surname Cloud"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -256,7 +256,7 @@ register(GRAMPLET, gramplet = 'TODOGramplet', gramplet_title=_("TODO List"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -269,7 +269,7 @@ register(GRAMPLET, gramplet = 'TopSurnamesGramplet', gramplet_title=_("Top Surnames"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -283,7 +283,7 @@ register(GRAMPLET, gramplet = 'make_welcome_content', gramplet_title=_("Welcome to Gramps!"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) register(GRAMPLET, @@ -297,6 +297,6 @@ register(GRAMPLET, gramplet = 'WhatNextGramplet', gramplet_title = _("What's Next?"), version="1.0.0", - gramps_target_version="3.3", + gramps_target_version="3.4", ) diff --git a/src/plugins/graph/graphplugins.gpr.py b/src/plugins/graph/graphplugins.gpr.py index ee0252db6..48502f3d2 100644 --- a/src/plugins/graph/graphplugins.gpr.py +++ b/src/plugins/graph/graphplugins.gpr.py @@ -31,7 +31,7 @@ plg.id = 'familylines_graph' plg.name = _("Family Lines Graph") plg.description = _("Produces family line graphs using GraphViz.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'GVFamilyLines.py' plg.ptype = REPORT @@ -54,7 +54,7 @@ plg.id = 'hourglass_graph' plg.name = _("Hourglass Graph") plg.description = _("Produces an hourglass graph using Graphviz.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'GVHourGlass.py' plg.ptype = REPORT @@ -76,7 +76,7 @@ plg.id = 'rel_graph' plg.name = _("Relationship Graph") plg.description = _("Produces relationship graphs using Graphviz.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'GVRelGraph.py' plg.ptype = REPORT diff --git a/src/plugins/import/import.gpr.py b/src/plugins/import/import.gpr.py index 4ee667b98..cde4add9c 100644 --- a/src/plugins/import/import.gpr.py +++ b/src/plugins/import/import.gpr.py @@ -33,7 +33,7 @@ plg.id = 'im_csv' plg.name = _("Comma Separated Values Spreadsheet (CSV)") plg.description = _("Import data from CSV files") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportCsv.py' plg.ptype = IMPORT @@ -52,7 +52,7 @@ plg.name = _('GEDCOM') plg.description = _('GEDCOM is used to transfer data between genealogy programs. ' 'Most genealogy software will accept a GEDCOM file as input.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportGedcom.py' plg.ptype = IMPORT @@ -70,7 +70,7 @@ plg.id = 'im_geneweb' plg.name = _('GeneWeb') plg.description = _('Import data from GeneWeb files') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportGeneWeb.py' plg.ptype = IMPORT @@ -89,7 +89,7 @@ plg.name = _('Gramps package (portable XML)') plg.description = _('Import data from a Gramps package (an archived XML ' 'family tree together with the media object files.)') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportGpkg.py' plg.ptype = IMPORT @@ -110,7 +110,7 @@ plg.description = _('The Gramps XML format is a text ' 'read-write compatible with the ' 'present Gramps database format.') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportXml.py' plg.ptype = IMPORT @@ -128,7 +128,7 @@ plg.id = 'im_grdb' plg.name = _('Gramps 2.x database') plg.description = _('Import data from Gramps 2.x database files') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportGrdb.py' plg.ptype = IMPORT @@ -146,7 +146,7 @@ plg.id = 'im_progen' plg.name = _('Pro-Gen') plg.description = _('Import data from Pro-Gen files') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportProGen.py' plg.ptype = IMPORT @@ -164,7 +164,7 @@ plg.id = 'im_vcard' plg.name = _('vCard') plg.description = _('Import data from vCard files') plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'ImportVCard.py' plg.ptype = IMPORT diff --git a/src/plugins/lib/libplugins.gpr.py b/src/plugins/lib/libplugins.gpr.py index 5c604f456..962cd5d79 100644 --- a/src/plugins/lib/libplugins.gpr.py +++ b/src/plugins/lib/libplugins.gpr.py @@ -32,7 +32,7 @@ name = "Cairodoc lib", description = _("Provides a library for using Cairo to " "generate documents."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libcairodoc.py', authors = ["The Gramps project"], @@ -50,7 +50,7 @@ id = 'libformatting', name = "FormattingHelper lib", description = _("Provides a FormattingHelper class for common strings"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libformatting.py', authors = ["The Gramps project"], @@ -68,7 +68,7 @@ id = 'libgedcom', name = "GEDCOM library", description = _("Provides GEDCOM processing functionality"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libgedcom.py', authors = ["The Gramps project"], @@ -86,7 +86,7 @@ name = "Grampsxml lib", description = _("Provides common functionality for Gramps XML " "import/export."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libgrampsxml.py', authors = ["The Gramps project"], @@ -104,7 +104,7 @@ id = 'libgrdb', name = "grdb lib", description = _("Base class for ImportGrdb") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libgrdb.py', authors = ["The Gramps project"], @@ -122,7 +122,7 @@ id = 'libholiday', name = "holiday lib", description = _("Provides holiday information for different countries.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libholiday.py', authors = ["The Gramps project"], @@ -140,7 +140,7 @@ id = 'libhtmlbackend', name = "htmlbackend lib", description = _("Manages a HTML file implementing DocBackend.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libhtmlbackend.py', authors = ["The Gramps project"], @@ -158,7 +158,7 @@ id = 'libhtmlconst', name = "htmlconst lib", description = _("Common constants for html files.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libhtmlconst.py', authors = ["The Gramps project"], @@ -176,7 +176,7 @@ id = 'libhtml', name = "html lib", description = _("Manages an HTML DOM tree.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libhtml.py', authors = ["Gerald Britton"], @@ -194,7 +194,7 @@ id = 'libmapservice', name = "mapservice lib", description = _("Provides base functionality for map services.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libmapservice.py', authors = ["The Gramps project"], @@ -211,7 +211,7 @@ id = 'libnarrate', name = "narration lib", description = _("Provides Textual Narration.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libnarrate.py', authors = ["Brian Matherly"], @@ -228,7 +228,7 @@ id = 'libodfbackend', name = "odfbackend lib", description = _("Manages an ODF file implementing DocBackend.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libodfbackend.py', authors = ["The Gramps project"], @@ -245,7 +245,7 @@ id = 'libtranslate', name = "translation lib", description = _("Provides Textual Translation.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libtranslate.py', authors = ["Brian Matherly"], @@ -262,7 +262,7 @@ id = 'libpersonview', name = "person list lib", description = _("Provides the Base needed for the List People views.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libpersonview.py', authors = ["The Gramps project"], @@ -279,7 +279,7 @@ id = 'libplaceview', name = "place list lib", description = _("Provides the Base needed for the List Place views.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libplaceview.py', authors = ["The Gramps project"], @@ -296,7 +296,7 @@ id = 'libsubstkeyword', name = "Substitution Values", description = _("Provides variable substitution on display lines.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libsubstkeyword.py', authors = ["The Gramps project"], @@ -313,7 +313,7 @@ name = "Graphical report lib", description = _("Provides the base needed for the ancestor and " "descendant graphical reports.") , version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'libtreebase.py', authors = ["The Gramps project"], diff --git a/src/plugins/mapservices/mapservice.gpr.py b/src/plugins/mapservices/mapservice.gpr.py index 72683f320..12222fdfa 100644 --- a/src/plugins/mapservices/mapservice.gpr.py +++ b/src/plugins/mapservices/mapservice.gpr.py @@ -31,7 +31,7 @@ id = 'EniroMaps', name = _("EniroMaps"), description = _("Opens on kartor.eniro.se"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'eniroswedenmap.py', authors = ["Peter Landgren"], @@ -50,7 +50,7 @@ id = 'GoogleMaps', name = _("GoogleMaps"), description = _("Open on maps.google.com"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'googlemap.py', authors = ["Benny Malengier"], @@ -69,7 +69,7 @@ id = 'OpenStreetMap', name = _("OpenStreetMap"), description = _("Open on openstreetmap.org"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'openstreetmap.py', authors = ["Benny Malengier"], diff --git a/src/plugins/quickview/quickview.gpr.py b/src/plugins/quickview/quickview.gpr.py index 7704041d2..c29355f67 100644 --- a/src/plugins/quickview/quickview.gpr.py +++ b/src/plugins/quickview/quickview.gpr.py @@ -31,7 +31,7 @@ id = 'ageondate', name = _("Age on Date"), description = _("Display people and ages on a particular date"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'AgeOnDate.py', authors = ["Douglas Blank"], @@ -51,7 +51,7 @@ id = 'attribute_match', name = _("Attribute Match"), description = _("Display people with same attribute."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'AttributeMatch.py', authors = ["Douglas Blank"], @@ -71,7 +71,7 @@ id = 'all_events', name = _("All Events"), description = _("Display a person's events, both personal and family."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'all_events.py', authors = ["Donald N. Allingham"], @@ -86,7 +86,7 @@ id = 'all_events_fam', name = _("All Family Events"), description = _("Display the family and family members events."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'all_events.py', authors = ["B. Malengier"], @@ -106,7 +106,7 @@ id = 'all_relations', name = _("Relation to Home Person"), description = _("Display all relationships between person and home person."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'all_relations.py', authors = ["B. Malengier"], @@ -126,7 +126,7 @@ id = 'filterbyname', name = _("Filter"), description = _("Display filtered data"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'FilterByName.py', authors = ["Douglas Blank"], @@ -146,7 +146,7 @@ id = 'father_lineage', name = _("Father lineage"), description = _("Display father lineage"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'lineage.py', authors = ["B. Malengier"], @@ -160,7 +160,7 @@ id = 'mother_lineage', name = _("Mother lineage"), description = _("Display mother lineage"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'lineage.py', authors = ["B. Malengier"], @@ -180,7 +180,7 @@ id = 'onthisday', name = _("On This Day"), description = _("Display events on a particular day"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'OnThisDay.py', authors = ["Douglas Blank"], @@ -210,7 +210,7 @@ for (category, item, trans) in refitems: name = _("%s References") % trans, description = _("Display references for a %s") % trans, version = '1.0', - gramps_target_version = '3.3', + gramps_target_version = '3.4', status = STABLE, fname = 'References.py', authors = ["Douglas Blank"], @@ -224,7 +224,7 @@ register(QUICKREPORT, name = _("Link References"), description = _("Display link references for a note"), version = '1.0', - gramps_target_version = '3.3', + gramps_target_version = '3.4', status = STABLE, fname = 'LinkReferences.py', authors = ["Douglas Blank"], @@ -245,7 +245,7 @@ name = _("Repository References"), description = _("Display the repository reference for sources related to" " the active repository"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Reporef.py', authors = ["Jerome Rapinat"], @@ -265,7 +265,7 @@ id = 'samesurnames', name = _("Same Surnames"), description = _("Display people with the same surname as a person."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'SameSurnames.py', authors = ["Douglas Blank"], @@ -279,7 +279,7 @@ id = 'samegivens', name = _("Same Given Names"), description = _("Display people with the same given name as a person."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'SameSurnames.py', authors = ["Douglas Blank"], @@ -293,7 +293,7 @@ id = 'samegivens_misc', name = _("Same Given Names - stand-alone"), description = _("Display people with the same given name as a person."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'SameSurnames.py', authors = ["Douglas Blank"], @@ -312,7 +312,7 @@ id = 'siblings', name = _("Siblings"), description = _("Display a person's siblings."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'siblings.py', authors = ["Donald N. Allingham"], diff --git a/src/plugins/records.gpr.py b/src/plugins/records.gpr.py index 1d56ad4a9..2867ced8b 100644 --- a/src/plugins/records.gpr.py +++ b/src/plugins/records.gpr.py @@ -32,7 +32,7 @@ id = 'records', name = _("Records Report"), description = _("Shows some interesting records about people and families"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Records.py', authors = [u"Reinhard Müller"], @@ -48,7 +48,7 @@ id = 'Records Gramplet', name = _("Records Gramplet"), description = _("Shows some interesting records about people and families"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Records.py', authors = [u"Reinhard Müller"], diff --git a/src/plugins/rel/relplugins.gpr.py b/src/plugins/rel/relplugins.gpr.py index 27aab2c0c..343a0320b 100644 --- a/src/plugins/rel/relplugins.gpr.py +++ b/src/plugins/rel/relplugins.gpr.py @@ -32,7 +32,7 @@ plg.id = 'relcalc_cs' plg.name = _("Czech Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_cs.py' plg.ptype = RELCALC @@ -45,7 +45,7 @@ plg.id = 'relcalc_da' plg.name = _("Danish Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_da.py' plg.ptype = RELCALC @@ -61,7 +61,7 @@ plg.id = 'relcalc_de' plg.name = _("German Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_de.py' plg.ptype = RELCALC @@ -76,7 +76,7 @@ plg.id = 'relcalc_es' plg.name = _("Spanish Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_es.py' plg.ptype = RELCALC @@ -91,7 +91,7 @@ plg.id = 'relcalc_fi' plg.name = _("Finnish Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_fi.py' plg.ptype = RELCALC @@ -106,7 +106,7 @@ plg.id = 'relcalc_fr' plg.name = _("French Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_fr.py' plg.ptype = RELCALC @@ -123,7 +123,7 @@ plg.id = 'relcalc_hr' plg.name = _("Croatian Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_hr.py' plg.ptype = RELCALC @@ -137,7 +137,7 @@ plg.id = 'relcalc_hu' plg.name = _("Hungarian Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_hu.py' plg.ptype = RELCALC @@ -150,7 +150,7 @@ plg.id = 'relcalc_it' plg.name = _("Italian Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_it.py' plg.ptype = RELCALC @@ -163,7 +163,7 @@ plg.id = 'relcalc_nl' plg.name = _("Dutch Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_nl.py' plg.ptype = RELCALC @@ -180,7 +180,7 @@ plg.id = 'relcalc_no' plg.name = _("Norwegian Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_no.py' plg.ptype = RELCALC @@ -197,7 +197,7 @@ plg.id = 'relcalc_pl' plg.name = _("Polish Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_pl.py' plg.ptype = RELCALC @@ -213,7 +213,7 @@ plg.id = 'relcalc_pt' plg.name = _("Portuguese Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_pt.py' plg.ptype = RELCALC @@ -229,7 +229,7 @@ plg.id = 'relcalc_ru' plg.name = _("Russian Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_ru.py' plg.ptype = RELCALC @@ -245,7 +245,7 @@ plg.id = 'relcalc_sk' plg.name = _("Slovak Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_sk.py' plg.ptype = RELCALC @@ -259,7 +259,7 @@ plg.id = 'relcalc_sl' plg.name = _("Slovenian Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_sl.py' plg.ptype = RELCALC @@ -272,7 +272,7 @@ plg.id = 'relcalc_sv' plg.name = _("Swedish Relationship Calculator") plg.description = _("Calculates relationships between people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'rel_sv.py' plg.ptype = RELCALC diff --git a/src/plugins/sidebar/sidebar.gpr.py b/src/plugins/sidebar/sidebar.gpr.py index c5d3797ff..a1aed0a60 100644 --- a/src/plugins/sidebar/sidebar.gpr.py +++ b/src/plugins/sidebar/sidebar.gpr.py @@ -30,7 +30,7 @@ id = 'categorysidebar', name = _("Category Sidebar"), description = _("A sidebar to allow the selection of view categories"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'categorysidebar.py', authors = [u"Nick Hall"], diff --git a/src/plugins/textreport/textplugins.gpr.py b/src/plugins/textreport/textplugins.gpr.py index 8e2a99ccd..79c4a1622 100644 --- a/src/plugins/textreport/textplugins.gpr.py +++ b/src/plugins/textreport/textplugins.gpr.py @@ -31,7 +31,7 @@ plg.id = 'ancestor_report' plg.name = _("Ahnentafel Report") plg.description = _("Produces a textual ancestral report") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'AncestorReport.py' plg.ptype = REPORT @@ -53,7 +53,7 @@ plg.id = 'birthday_report' plg.name = _("Birthday and Anniversary Report") plg.description = _("Produces a report of birthdays and anniversaries") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'BirthdayReport.py' plg.ptype = REPORT @@ -75,7 +75,7 @@ plg.id = 'custom_text' plg.name = _("Custom Text") plg.description = _("Add custom text to the book report") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'CustomBookText.py' plg.ptype = REPORT @@ -97,7 +97,7 @@ plg.id = 'descend_report' plg.name = _("Descendant Report") plg.description = _("Produces a list of descendants of the active person") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'DescendReport.py' plg.ptype = REPORT @@ -119,7 +119,7 @@ plg.id = 'det_ancestor_report' plg.name = _("Detailed Ancestral Report") plg.description = _("Produces a detailed ancestral report") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'DetAncestralReport.py' plg.ptype = REPORT @@ -141,7 +141,7 @@ plg.id = 'det_descendant_report' plg.name = _("Detailed Descendant Report") plg.description = _("Produces a detailed descendant report") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'DetDescendantReport.py' plg.ptype = REPORT @@ -163,7 +163,7 @@ plg.id = 'endofline_report' plg.name = _("End of Line Report") plg.description = _("Produces a textual end of line report") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'EndOfLineReport.py' plg.ptype = REPORT @@ -186,7 +186,7 @@ plg.name = _("Family Group Report") plg.description = _("Produces a family group report showing information " "on a set of parents and their children.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'FamilyGroup.py' plg.ptype = REPORT @@ -208,7 +208,7 @@ plg.id = 'indiv_complete' plg.name = _("Complete Individual Report") plg.description = _("Produces a complete report on the selected people") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'IndivComplete.py' plg.ptype = REPORT @@ -230,7 +230,7 @@ plg.id = 'kinship_report' plg.name = _("Kinship Report") plg.description = _("Produces a textual report of kinship for a given person") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'KinshipReport.py' plg.ptype = REPORT @@ -252,7 +252,7 @@ plg.id = 'tag_report' plg.name = _("Tag Report") plg.description = _("Produces a list of people with a specified tag") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'TagReport.py' plg.ptype = REPORT @@ -275,7 +275,7 @@ plg.id = 'number_of_ancestors_report' plg.name = _("Number of Ancestors Report") plg.description = _("Counts number of ancestors of selected person") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'NumberOfAncestorsReport.py' plg.ptype = REPORT @@ -297,7 +297,7 @@ plg.id = 'place_report' plg.name = _("Place Report") plg.description = _("Produces a textual place report") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'PlaceReport.py' plg.ptype = REPORT @@ -320,7 +320,7 @@ plg.id = 'simple_book_title' plg.name = _("Title Page") plg.description = _("Produces a title page for book reports.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'SimpleBookTitle.py' plg.ptype = REPORT @@ -342,7 +342,7 @@ plg.id = 'summary' plg.name = _("Database Summary Report") plg.description = _("Provides a summary of the current database") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'Summary.py' plg.ptype = REPORT diff --git a/src/plugins/tool/tools.gpr.py b/src/plugins/tool/tools.gpr.py index 3b8e7480f..bf46d6755 100644 --- a/src/plugins/tool/tools.gpr.py +++ b/src/plugins/tool/tools.gpr.py @@ -36,7 +36,7 @@ name = _("Fix Capitalization of Family Names"), description = _("Searches the entire database and attempts to " "fix capitalization of the names."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'ChangeNames.py', authors = ["Donald N. Allingham"], @@ -59,7 +59,7 @@ name = _("Rename Event Types"), description = _("Allows all the events of a certain name " "to be renamed to a new name."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'ChangeTypes.py', authors = ["Donald N. Allingham"], @@ -82,7 +82,7 @@ name = _("Check and Repair Database"), description = _("Checks the database for integrity problems, fixing the " "problems that it can"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Check.py', authors = ["Donald N. Allingham"], @@ -104,7 +104,7 @@ id = 'dbrowse', name = _("Interactive Descendant Browser"), description = _("Provides a browsable hierarchy based on the active person"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Desbrowser.py', authors = ["Donald N. Allingham"], @@ -127,7 +127,7 @@ id = 'eval', name = "Python Evaluation Window", description = "Provides a window that can evaluate python code", version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Eval.py', authors = ["Donald N. Allingham"], @@ -151,7 +151,7 @@ description = _("Aids in the analysis of data by allowing the " "development of custom filters that can be applied " "to the database to find similar events"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'EventCmp.py', authors = ["Donald N. Allingham"], @@ -173,7 +173,7 @@ id = 'evname', name = _("Extract Event Description"), description = _("Extracts event descriptions from the event data"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'EventNames.py', authors = ["Donald N. Allingham"], @@ -196,7 +196,7 @@ name = _("Extract Place Data from a Place Title"), description = _("Attempts to extract city and state/province " "from a place title"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'ExtractCity.py', authors = ["Donald N. Allingham"], @@ -219,7 +219,7 @@ name = _("Find Possible Duplicate People"), description = _("Searches the entire database, looking for " "individual entries that may represent the same person."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'FindDupes.py', authors = ["Donald N. Allingham"], @@ -241,7 +241,7 @@ id = 'leak', name = "Show Uncollected Objects", description = "Provide a window listing all uncollected objects", version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Leak.py', authors = ["Donald N. Allingham"], @@ -263,7 +263,7 @@ id = 'mediaman', name = _("Media Manager"), description = _("Manages batch operations on media files"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'MediaManager.py', authors = ["Alex Roitman"], @@ -286,7 +286,7 @@ name = _("Not Related"), description = _("Find people who are not in any way related to the " "selected person"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'NotRelated.py', authors = ["Stephane Charette"], @@ -308,7 +308,7 @@ id = 'editowner', name = _("Edit Database Owner Information"), description = _("Allow editing database owner information."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'OwnerEditor.py', authors = ["Zsolt Foldvari"], @@ -330,7 +330,7 @@ id = 'patchnames', name = _("Extract Information from Names"), description = _("Extract titles, prefixes and compound surnames from given name or family name."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'PatchNames.py', authors = ["Donald N. Allingham", "Benny Malengier"], @@ -352,7 +352,7 @@ id = 'rebuild', name = _("Rebuild Secondary Indices"), description = _("Rebuilds secondary indices"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Rebuild.py', authors = ["Donald N. Allingham"], @@ -374,7 +374,7 @@ id = 'rebuild_refmap', name = _("Rebuild Reference Maps"), description = _("Rebuilds reference maps"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'RebuildRefMap.py', authors = ["Alex Roitman"], @@ -396,7 +396,7 @@ id = 'relcalc', name = _("Relationship Calculator"), description = _("Calculates the relationship between two people"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'RelCalc.py', authors = ["Donald N. Allingham"], @@ -418,7 +418,7 @@ id = 'remove_unused', name = _("Remove Unused Objects"), description = _("Removes unused objects from the database"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'RemoveUnused.py', authors = ["Donald N. Allingham"], @@ -441,7 +441,7 @@ name = _("Reorder Gramps IDs"), description = _("Reorders the Gramps IDs " "according to Gramps' default rules."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'ReorderIds.py', authors = ["Donald N. Allingham"], @@ -463,7 +463,7 @@ id = 'sortevents', name = _("Sorts events"), description = _("Sorts events"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'SortEvents.py', authors = ["Gary Burton"], @@ -485,7 +485,7 @@ id = 'soundgen', name = _("Generate SoundEx Codes"), description = _("Generates SoundEx codes for names"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'SoundGen.py', authors = ["Donald N. Allingham"], @@ -507,7 +507,7 @@ id = 'verify', name = _("Verify the Data"), description = _("Verifies the data against user-defined tests"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'Verify.py', authors = ["Alex Roitman"], diff --git a/src/plugins/tool/toolsdebug.gpr.py b/src/plugins/tool/toolsdebug.gpr.py index 39a5fbd79..a0985b161 100644 --- a/src/plugins/tool/toolsdebug.gpr.py +++ b/src/plugins/tool/toolsdebug.gpr.py @@ -39,7 +39,7 @@ description = ("This test tool will create many people showing all" " the birth date. This way you can ensure that dates" " printed can be parsed back in correctly."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = UNSTABLE, fname = 'DateParserDisplayTest.py', authors = ["Martin Hawlisch"], @@ -62,7 +62,7 @@ name = "Dump Gender Statistics", description = ("Will dump the statistics for the gender guessing " "from the first name."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'DumpGenderStats.py', authors = ["Donald N. Allingham", "Martin Hawlisch"], @@ -86,7 +86,7 @@ description = ("The testcase generator will generate some persons " "and families that have broken links in the database " "or data that is in conflict to a relation."), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = UNSTABLE, fname = 'TestcaseGenerator.py', authors = ["Martin Hawlisch"], diff --git a/src/plugins/view/fanchartview.gpr.py b/src/plugins/view/fanchartview.gpr.py index fe5e7a936..fd3c92176 100644 --- a/src/plugins/view/fanchartview.gpr.py +++ b/src/plugins/view/fanchartview.gpr.py @@ -4,7 +4,7 @@ register(VIEW, category = ("Ancestry", _("Ancestry")), description = _("The view showing relations through a fanchart"), version = '1.0', - gramps_target_version = '3.3', + gramps_target_version = '3.4', status = STABLE, fname = 'fanchartview.py', authors = [u"Douglas S. Blank"], diff --git a/src/plugins/view/geoview.gpr.py b/src/plugins/view/geoview.gpr.py index db6f9ad8c..de709bb9c 100644 --- a/src/plugins/view/geoview.gpr.py +++ b/src/plugins/view/geoview.gpr.py @@ -51,7 +51,7 @@ if not (TOOLKIT == NOWEB): description = _("The view showing events on an interactive internet map " "(internet connection needed)"), version = '1.0', - gramps_target_version = '3.3', + gramps_target_version = '3.4', status = STABLE, fname = 'geoview.py', authors = [u"The Gramps project"], @@ -76,7 +76,7 @@ if not (TOOLKIT == NOWEB): name = _("Html View"), description = _("A view allowing to see html pages embedded in Gramps"), version = '1.0', - gramps_target_version = '3.3', + gramps_target_version = '3.4', status = STABLE, fname = 'htmlrenderer.py', authors = [u"The Gramps project"], diff --git a/src/plugins/view/placetreeview.gpr.py b/src/plugins/view/placetreeview.gpr.py index f845a3aa4..075800c78 100644 --- a/src/plugins/view/placetreeview.gpr.py +++ b/src/plugins/view/placetreeview.gpr.py @@ -3,7 +3,7 @@ register(VIEW, name = _("Place Tree View"), description = _("A view displaying places in a tree format."), version = '1.0', - gramps_target_version = '3.3', + gramps_target_version = '3.4', status = STABLE, fname = 'placetreeview.py', authors = [u"Donald N. Allingham", u"Gary Burton", u"Nick Hall"], diff --git a/src/plugins/view/view.gpr.py b/src/plugins/view/view.gpr.py index 9c1945d33..d2976d8d2 100644 --- a/src/plugins/view/view.gpr.py +++ b/src/plugins/view/view.gpr.py @@ -32,7 +32,7 @@ id = 'eventview', name = _("Event View"), description = _("The view showing all the events"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'eventview.py', authors = [u"The Gramps project"], @@ -47,7 +47,7 @@ id = 'familyview', name = _("Family View"), description = _("The view showing all families"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'familyview.py', authors = [u"The Gramps project"], @@ -62,7 +62,7 @@ id = 'grampletview', name = _("Gramplet View"), description = _("The view allowing to see Gramplets"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'grampletview.py', authors = [u"The Gramps project"], @@ -77,7 +77,7 @@ id = 'mediaview', name = _("Media View"), description = _("The view showing all the media objects"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'mediaview.py', authors = [u"The Gramps project"], @@ -92,7 +92,7 @@ id = 'noteview', name = _("Note View"), description = _("The view showing all the notes"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'noteview.py', authors = [u"The Gramps project"], @@ -107,7 +107,7 @@ id = 'relview', name = _("Relationship View"), description = _("The view showing all relationships of the selected person"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'relview.py', authors = [u"The Gramps project"], @@ -122,7 +122,7 @@ id = 'pedigreeview', name = _("Pedigree View"), description = _("The view showing an ancestor pedigree of the selected person"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'pedigreeview.py', authors = [u"The Gramps project"], @@ -138,7 +138,7 @@ id = 'personview', name = _("Person Tree View"), description = _("The view showing all people in the family tree"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'persontreeview.py', authors = [u"The Gramps project"], @@ -155,7 +155,7 @@ name = _("Person View"), description = _("The view showing all people in the family tree" " in a flat list"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'personlistview.py', authors = [u"The Gramps project"], @@ -171,7 +171,7 @@ id = 'placelistview', name = _("Place View"), description = _("The view showing all the places of the family tree"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'placelistview.py', authors = [u"The Gramps project"], @@ -187,7 +187,7 @@ id = 'repoview', name = _("Repository View"), description = _("The view showing all the repositories"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'repoview.py', authors = [u"The Gramps project"], @@ -202,7 +202,7 @@ id = 'sourceview', name = _("Source View"), description = _("The view showing all the sources"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', status = STABLE, fname = 'sourceview.py', authors = [u"The Gramps project"], diff --git a/src/plugins/webreport/webplugins.gpr.py b/src/plugins/webreport/webplugins.gpr.py index 74a1f2424..6205c6d27 100644 --- a/src/plugins/webreport/webplugins.gpr.py +++ b/src/plugins/webreport/webplugins.gpr.py @@ -32,7 +32,7 @@ plg.name = _("Narrated Web Site") plg.description = _("Produces web (HTML) pages for individuals, or a set of " "individuals") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'NarrativeWeb.py' plg.ptype = REPORT @@ -55,7 +55,7 @@ plg.id = 'WebCal' plg.name = _("Web Calendar") plg.description = _("Produces web (HTML) calendars.") plg.version = '1.0' -plg.gramps_target_version = '3.3' +plg.gramps_target_version = '3.4' plg.status = STABLE plg.fname = 'WebCal.py' plg.ptype = REPORT diff --git a/src/plugins/webstuff/webstuff.gpr.py b/src/plugins/webstuff/webstuff.gpr.py index 38b596a0e..244352cd9 100644 --- a/src/plugins/webstuff/webstuff.gpr.py +++ b/src/plugins/webstuff/webstuff.gpr.py @@ -32,7 +32,7 @@ category = "WEBSTUFF", name = _("Webstuff"), description = _("Provides a collection of resources for the web"), version = '1.0', -gramps_target_version = '3.3', +gramps_target_version = '3.4', fname = "webstuff.py", load_on_reg = True, process = "process_list",