Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ 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).

## [9.3.1] - Unreleased
- Fix bug with "New Project" project creation dialog entry

## [9.3.0] - 2026-08-13
- Add Extraction Name to Catalogues
- Improve SQL Extraction Merge
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@
_currentProject = currentProject;
_projects = projects;
_cic = cic;
System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip();
if (_currentProject != null)
{
ToolTip1.SetToolTip(this.btnCurrentProject, _currentProject.Name);
btnCurrentProject.Text = $"This Project ({_currentProject.Name.Substring(0, Math.Min(10, _currentProject.Name.Length))}{(_currentProject.Name.Length > 0 ? "..." : "")})";
}
else
Expand Down Expand Up @@ -100,6 +102,7 @@
var result = dialog.ShowDialog();
if (result == DialogResult.OK)
{

project.SaveToDatabase();
_cic.RootCohortAggregateContainer.GetAllAggregateConfigurationsRecursively().Select(ac => ac.Catalogue).Distinct().Where(c => c.IsProjectSpecific(_activator.RepositoryLocator.DataExportRepository)).ToList().ForEach(c =>
{
Expand All @@ -112,6 +115,10 @@
Result = project;
Close();
}
else
{
project.DeleteInDatabase();
}
}
private void btnExistingProject_Click(object sender, EventArgs e)
{
Expand Down
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("9.3.0")]
[assembly: AssemblyFileVersion("9.3.0")]
[assembly: AssemblyInformationalVersion("9.3.0")]
[assembly: AssemblyVersion("9.3.1")]
[assembly: AssemblyFileVersion("9.3.1")]
[assembly: AssemblyInformationalVersion("9.3.1")]

Loading