Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

163

Downloads of v 1.2.0:

116

Last Update:

31 Dec 2023

Package Maintainer(s):

Software Author(s):

  • Cord Burmeister

Tags:

maiorumseries genealogy book

maiorumseries (Install)

  • 1
  • 2
  • 3

1.2.0 | Updated: 31 Dec 2023

Downloads:

163

Downloads of v 1.2.0:

116

Maintainer(s):

Software Author(s):

  • Cord Burmeister

maiorumseries (Install) 1.2.0

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install maiorumseries (Install), run the following command from the command line or from PowerShell:

>

To upgrade maiorumseries (Install), run the following command from the command line or from PowerShell:

>

To uninstall maiorumseries (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade maiorumseries -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade maiorumseries -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install maiorumseries
  win_chocolatey:
    name: maiorumseries
    version: '1.2.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'maiorumseries' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.2.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller maiorumseries
{
    Name     = "maiorumseries"
    Version  = "1.2.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'maiorumseries':
  ensure   => '1.2.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator Windos on 03 Jan 2024.

Description

This tool allows you to visualize your family tree with ease and accuracy in a book. Maiorum Series is designed to help you exchange and share your heritage in a meaningful way.


tools\LICENSE.txt


MIT License

Copyright (c) 2023 MaiorumSeries

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\chocolateyinstall.ps1

Install-BinFile -Name 'gc2book' -Path "$env:ChocolateyInstall\bin\gc2book.exe"
tools\chocolateyuninstall.ps1

Uninstall-BinFile  -Name 'gc2book' -Path '$env:ChocolateyInstall\lib\maiorumseries\bin\gc2book.exe'
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

Binaries are releases of a open source project hosted under 
https://github.com/MaiorumSeries/MaiorumSeries 

Either download the latest release from the Github and extract the assets
or perform gh release download <latest release> 
Get-FileHash *.*

8A55501CD1A1590A4BD93A17C6FDD2C01A0ED5BFF1AEA9036BDC78D98C9A3FAD CommandLine.dll
C24E81716FC94CEAAD8A0E5B3CE90060DC618D2D870184F6AC0202A9AA1437D0 DuoVia.FuzzyStrings.dll
62DE152A2A84968271F300396BFEA23F689F7244A4B7FA9DE30842D7DB52EF29 gc2book.deps.json
78E4769A99E9FA8D2BCF6EC720A4C3550DEACA787E8231EB3CF4ED9773790E48 gc2book.dll
D8F3357250C1BBD7C9C8BA3F899A62559B916C67E72B79B941AC5797AC965C99 gc2book.exe
28329CF08F6505E73806B17558B187C02F0C1C516FE47EBFB7A013D082AAA306 gc2book.runtimeconfig.json
CE93319E90145A10CCECB6FBBA8FB62C1C433565D95D6FD2712AB5B4450E06E3 MaiorumSeries.GedComLogic.dll
DB3545B7DF0C0F5FE089E297B085002363A2D5928EEC91F3FA9FD330DFDDE2B1 MaiorumSeries.GedComModel.dll
D5C219ECCA25E83C0C3929F06D156ED266888EC37437E346017B14BCAF1596A6 MaiorumSeries.GedComParser.dll
E28267CD3506A3A3C1382F4E255D663BE9FE126DD91B31CB9776AD3BE71BF8EF MaiorumSeries.LaTeXExport.dll
D27ECC9DF37937AE9B703692F0997573727AB44FF8989B91C0ADBF32894A5E5B Microsoft.Win32.SystemEvents.dll
9033CE87D2307CBC102B23E4096E61E504DCE0EB4E56FF045BD779C6E7D0C094 System.Drawing.Common.dll
bin\System.Drawing.Common.dll
md5: 4A20E0A2088FB4F5B7F355AC8D974E74 | sha1: B0AA5CFCDBC21C1BA82AE6E7C911E1BFEF3C6881 | sha256: 9033CE87D2307CBC102B23E4096E61E504DCE0EB4E56FF045BD779C6E7D0C094 | sha512: C45742246433AD908FABEA9D3FDE920374066F706B087E79B74BF553DDF95FE2CBA8CF9FAB20743F76D67329515D0367C80146A0B9C31D9CE7419C0837EBBC4D
bin\CommandLine.dll
md5: 05C71FA3A6FC561D7A1F919437DBDDFD | sha1: 5A8CD6B38EE5D63C60C7747DE6B5469BA5D1E6B2 | sha256: 8A55501CD1A1590A4BD93A17C6FDD2C01A0ED5BFF1AEA9036BDC78D98C9A3FAD | sha512: 1AB183D67220C8B8999B6AC032AC304F57960FAF0E908404FFA3AA37C010D1A063D7734923A1576F18A69F7300B01FBBB395E3DCA971E1B125B1B3B67AB858D0
bin\DuoVia.FuzzyStrings.dll
md5: 01246E56F5C347DB9D4AF8A421A07A5F | sha1: A1272D15E3C557141F1907D605DBBDB49785C48D | sha256: C24E81716FC94CEAAD8A0E5B3CE90060DC618D2D870184F6AC0202A9AA1437D0 | sha512: 1FCFEDF7F07DC9C4E3D1BEDAC3FA6375330403D6257EC8B46B43E956410AAC42A55B23E456D4D34EBF774F3BA746FE7F91E788D62969A2144E03E56FE07C2731
bin\gc2book.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v8.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v8.0": {
      "gc2book/1.0.0": {
        "dependencies": {
          "CommandLineParser": "2.9.1",
          "MaiorumSeries.GedComLogic": "1.0.0",
          "MaiorumSeries.GedComModel": "1.0.0",
          "MaiorumSeries.GedComParser": "1.0.0",
          "MaiorumSeries.LaTeXExport": "1.0.0",
          "MaiorumSeries.GedComLogic.Reference": "1.2.0.0",
          "MaiorumSeries.GedComModel.Reference": "1.2.0.0",
          "MaiorumSeries.GedComParser.Reference": "1.2.0.0",
          "MaiorumSeries.LaTeXExport.Reference": "1.2.0.0"
        },
        "runtime": {
          "gc2book.dll": {}
        }
      },
      "CommandLineParser/2.9.1": {
        "runtime": {
          "lib/netstandard2.0/CommandLine.dll": {
            "assemblyVersion": "2.9.1.0",
            "fileVersion": "2.9.1.0"
          }
        }
      },
      "DuoVia.FuzzyStrings/2.1.0": {
        "runtime": {
          "lib/netstandard2.1/DuoVia.FuzzyStrings.dll": {
            "assemblyVersion": "2.1.0.0",
            "fileVersion": "2.1.0.0"
          }
        }
      },
      "Microsoft.Win32.SystemEvents/8.0.0": {
        "runtime": {
          "lib/net8.0/Microsoft.Win32.SystemEvents.dll": {
            "assemblyVersion": "8.0.0.0",
            "fileVersion": "8.0.23.53103"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "8.0.0.0",
            "fileVersion": "8.0.23.53103"
          }
        }
      },
      "System.Drawing.Common/8.0.0": {
        "dependencies": {
          "Microsoft.Win32.SystemEvents": "8.0.0"
        },
        "runtime": {
          "lib/net8.0/System.Drawing.Common.dll": {
            "assemblyVersion": "8.0.0.0",
            "fileVersion": "8.0.23.53105"
          }
        }
      },
      "MaiorumSeries.GedComLogic/1.0.0": {
        "dependencies": {
          "DuoVia.FuzzyStrings": "2.1.0",
          "MaiorumSeries.GedComModel": "1.0.0"
        },
        "runtime": {
          "MaiorumSeries.GedComLogic.dll": {}
        },
        "resources": {
          "de-DE/MaiorumSeries.GedComLogic.resources.dll": {
            "locale": "de-DE"
          }
        }
      },
      "MaiorumSeries.GedComModel/1.0.0": {
        "runtime": {
          "MaiorumSeries.GedComModel.dll": {}
        }
      },
      "MaiorumSeries.GedComParser/1.0.0": {
        "dependencies": {
          "MaiorumSeries.GedComLogic": "1.0.0",
          "MaiorumSeries.GedComModel": "1.0.0"
        },
        "runtime": {
          "MaiorumSeries.GedComParser.dll": {}
        }
      },
      "MaiorumSeries.LaTeXExport/1.0.0": {
        "dependencies": {
          "MaiorumSeries.GedComLogic": "1.0.0",
          "MaiorumSeries.GedComModel": "1.0.0",
          "System.Drawing.Common": "8.0.0"
        },
        "runtime": {
          "MaiorumSeries.LaTeXExport.dll": {}
        },
        "resources": {
          "de-DE/MaiorumSeries.LaTeXExport.resources.dll": {
            "locale": "de-DE"
          }
        }
      },
      "MaiorumSeries.GedComLogic.Reference/1.2.0.0": {
        "runtime": {
          "MaiorumSeries.GedComLogic.dll": {
            "assemblyVersion": "1.2.0.0",
            "fileVersion": "1.2.0.0"
          }
        },
        "resources": {
          "de-DE/MaiorumSeries.GedComLogic.resources.dll": {
            "locale": "de-DE"
          }
        }
      },
      "MaiorumSeries.GedComModel.Reference/1.2.0.0": {
        "runtime": {
          "MaiorumSeries.GedComModel.dll": {
            "assemblyVersion": "1.2.0.0",
            "fileVersion": "1.2.0.0"
          }
        }
      },
      "MaiorumSeries.GedComParser.Reference/1.2.0.0": {
        "runtime": {
          "MaiorumSeries.GedComParser.dll": {
            "assemblyVersion": "1.2.0.0",
            "fileVersion": "1.2.0.0"
          }
        }
      },
      "MaiorumSeries.LaTeXExport.Reference/1.2.0.0": {
        "runtime": {
          "MaiorumSeries.LaTeXExport.dll": {
            "assemblyVersion": "1.2.0.0",
            "fileVersion": "1.2.0.0"
          }
        },
        "resources": {
          "de-DE/MaiorumSeries.LaTeXExport.resources.dll": {
            "locale": "de-DE"
          }
        }
      }
    }
  },
  "libraries": {
    "gc2book/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "CommandLineParser/2.9.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
      "path": "commandlineparser/2.9.1",
      "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
    },
    "DuoVia.FuzzyStrings/2.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xkGo6s2x3ISS6bLgxCW6lcrn0nxMbsuPuG8N55fk1g5TFkIVqWDlj0IVWQIW7anB0SmCWlPjACPHoFpw8gLJfQ==",
      "path": "duovia.fuzzystrings/2.1.0",
      "hashPath": "duovia.fuzzystrings.2.1.0.nupkg.sha512"
    },
    "Microsoft.Win32.SystemEvents/8.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9opKRyOKMCi2xJ7Bj7kxtZ1r9vbzosMvRrdEhVhDz8j8MoBGgB+WmC94yH839NPH+BclAjtQ/pyagvi/8gDLkw==",
      "path": "microsoft.win32.systemevents/8.0.0",
      "hashPath": "microsoft.win32.systemevents.8.0.0.nupkg.sha512"
    },
    "System.Drawing.Common/8.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JkbHJjtI/dWc5dfmEdJlbe3VwgZqCkZRtfuWFh5GOv0f+gGCfBtzMpIVkmdkj2AObO9y+oiOi81UGwH3aBYuqA==",
      "path": "system.drawing.common/8.0.0",
      "hashPath": "system.drawing.common.8.0.0.nupkg.sha512"
    },
    "MaiorumSeries.GedComLogic/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "MaiorumSeries.GedComModel/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "MaiorumSeries.GedComParser/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "MaiorumSeries.LaTeXExport/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "MaiorumSeries.GedComLogic.Reference/1.2.0.0": {
      "type": "reference",
      "serviceable": false,
      "sha512": ""
    },
    "MaiorumSeries.GedComModel.Reference/1.2.0.0": {
      "type": "reference",
      "serviceable": false,
      "sha512": ""
    },
    "MaiorumSeries.GedComParser.Reference/1.2.0.0": {
      "type": "reference",
      "serviceable": false,
      "sha512": ""
    },
    "MaiorumSeries.LaTeXExport.Reference/1.2.0.0": {
      "type": "reference",
      "serviceable": false,
      "sha512": ""
    }
  }
}
bin\gc2book.dll
md5: BB8B1C7D89E568F84E8D5FEA554BC9E3 | sha1: 177274487D64CE1DD60FBDD24FA43BA2353F4E0F | sha256: 78E4769A99E9FA8D2BCF6EC720A4C3550DEACA787E8231EB3CF4ED9773790E48 | sha512: 480472FD47279C6694D36B02DE7A68F8402A327DEFD778EA1C4529F73A4C2A083B76DB3F94E949DEE903056C7CF564A83C09AD056FE73913C4464CD0814E3354
bin\gc2book.exe
md5: 7CFD6A3ED82F096B38233B51DC91619E | sha1: 7FBB7D16502FD3CDBCAE339959E38E3972339A8F | sha256: D8F3357250C1BBD7C9C8BA3F899A62559B916C67E72B79B941AC5797AC965C99 | sha512: 427552D138ADE039BD71E9A037DCFC925B99D1BF2FDCA35E23ADFD47A5E06EB65A2F45660BE7B0737D3BAE835497EEA7DCA9275EE28A27DEA627983EB508E5C3
bin\gc2book.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net8.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "8.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
      "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
    }
  }
}
bin\MaiorumSeries.GedComLogic.dll
md5: 21484A1C43497367317DD6D760A61442 | sha1: CD08F5BC0BFD77CC7DBA795B51019799C2C96372 | sha256: CE93319E90145A10CCECB6FBBA8FB62C1C433565D95D6FD2712AB5B4450E06E3 | sha512: 3B53611F6003FC542286FB28BCD148ED6E460C764B0C76195D1E54BAC5D33D92DFFDA6010A218F551202F4669BE3DA17AD037F393C3AB1B092B03AAE6B9AC112
bin\MaiorumSeries.GedComModel.dll
md5: 33B91A2AF7D9C3A75C2F1004C8595D77 | sha1: 95C5F07EA7A21E4B275D265D7EBD089A81EBF3EF | sha256: DB3545B7DF0C0F5FE089E297B085002363A2D5928EEC91F3FA9FD330DFDDE2B1 | sha512: 7C8E7A7F8A51A81E6F2CE3A182F9085CC5FD93E9DC56556864DCBCBC8C2AEEDB4F16F59186EF5B978904D26194E5B2600F5A94D8485507DDC6EB04C2422C2317
bin\MaiorumSeries.GedComParser.dll
md5: CEFA13E30F9A015F092DBFBDE2C9B8E9 | sha1: 7E1235B25B8C613FCF8F25FF35AA1109E9051235 | sha256: D5C219ECCA25E83C0C3929F06D156ED266888EC37437E346017B14BCAF1596A6 | sha512: 185E13820656A00144EF709CEF6F6CAF28C4D27F7E3BDC606A5DA00EBD6D5A8A25E13406B181B485E37E18A063AB0EDB3165AF01D20A404AA5C8E0C0448EF467
bin\MaiorumSeries.LaTeXExport.dll
md5: C43A0DAC4891715A2F8E66964ABFAC1B | sha1: FC815F497CE4712851289FCAB8A7165D29AB74D6 | sha256: E28267CD3506A3A3C1382F4E255D663BE9FE126DD91B31CB9776AD3BE71BF8EF | sha512: 2F2FE37E833D2188D91A54A10EE36AFBAB9570310137CE1F814B193AE07FA18A17E17ECA6EA9874146B1234BB57E09F6F6FDB2ED50343B2E716EF0D322AB8F14
bin\Microsoft.Win32.SystemEvents.dll
md5: 0711D07C2ED0BF0A8B512E85B00A67F0 | sha1: F20AB99B1F4C5C09AD7160E2F8D7CA807E5D83F6 | sha256: D27ECC9DF37937AE9B703692F0997573727AB44FF8989B91C0ADBF32894A5E5B | sha512: 8529F2E7F58F162C4C8C8182CC9404A34368BB0A3610876EA201B689559A4DCC5F42A738344B8DD9F1804159C7CF7FB4822C87195CB65A409BB258696B7238F8
docs\ChangeLog.md

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## 1.2.0.0

### Updated

- Changed to .NET 8.0 runtime 
- Improve parser with new tag handling

## 0.1.0.0

### Added

- Generation of the book with ancestors
- First version of the gc2book program.
- Published as chocolatey package. Pending review.
- 



docs\README.md
# MaiorumSeries

> *Note:* This repository is in a ramp up state.You might watch it.

The repository contains tools for handling GEDCOM files. One is for generating a PDF book.

## Status

![Build](https://github.com/MaiorumSeries/MaiorumSeries/actions/workflows/build.yml/badge.svg)

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
maiorumseries (Install) 0.1.0.0 47 Saturday, November 4, 2023 Approved

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog,
and this project adheres to Semantic Versioning.

[Unreleased]

1.2.0.0

Updated

  • Changed to .NET 8.0 runtime
  • Improve parser with new tag handling

0.1.0.0

Added

  • Generation of the book with ancestors
  • First version of the gc2book program.
  • Published as chocolatey package. Pending review.
Discussion for the maiorumseries (Install) Package

Ground Rules:

  • This discussion is only about maiorumseries (Install) and the maiorumseries (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or maiorumseries (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus