public ReleaseNotesGeneratorForm(GitUIEventArgs gitUiCommands)
        {
            InitializeComponent();
            InitializeComplete();

            _gitUiCommands    = gitUiCommands;
            _gitLogLineParser = new GitLogLineParser();
        }
        public ReleaseNotesGeneratorForm(GitUIBaseEventArgs gitUiCommands)
        {
            InitializeComponent();
            Translate();

            _gitUiCommands    = gitUiCommands;
            _gitLogLineParser = new GitLogLineParser();

            Icon = _gitUiCommands?.GitUICommands.FormIcon;
        }
 public void Setup()
 {
     _parser = new GitLogLineParser();
 }