diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ef40233eb..d936807809 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,9 +3,7 @@ name: Build # Run this workflow every time a new commit pushed to your repository on: - push: - schedule: - - cron: '0 0 * * *' + push env: DOTNET_NOLOGO: 1 diff --git a/CHANGELOG.md b/CHANGELOG.md index c58cc9928e..273a11132d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,8 @@ 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). -## [8.2.2] - Unreleased - +## [8.2.2] - 2024-08-01 + - Add DQE PostLoad runner - Misc improvements to the DQE - Fix Project Creation UI issue diff --git a/Rdmp.Core/CommandExecution/AtomicCommands/ExecuteCommandCloneCohortIdentificationConfiguration.cs b/Rdmp.Core/CommandExecution/AtomicCommands/ExecuteCommandCloneCohortIdentificationConfiguration.cs index c19374a455..d8b6e3d3be 100644 --- a/Rdmp.Core/CommandExecution/AtomicCommands/ExecuteCommandCloneCohortIdentificationConfiguration.cs +++ b/Rdmp.Core/CommandExecution/AtomicCommands/ExecuteCommandCloneCohortIdentificationConfiguration.cs @@ -79,7 +79,7 @@ public override void Execute() "This will create a 100% copy of the entire CohortIdentificationConfiguration including all datasets, filters, parameters and set operations. Are you sure this is what you want?", "Confirm Cloning")) return; CloneCreatedIfAny = _cic.CreateClone(ThrowImmediatelyCheckNotifier.Quiet); - if (CloneCreatedIfAny != null) + if (CloneCreatedIfAny != null && _version is not null) { CloneCreatedIfAny.Version = _version; //If no name is provided, use the existing name, but repalce the "(Clone) with the version number" diff --git a/Rdmp.Core/CommandExecution/GoToCommandFactory.cs b/Rdmp.Core/CommandExecution/GoToCommandFactory.cs index c8ab882776..5443bb1949 100644 --- a/Rdmp.Core/CommandExecution/GoToCommandFactory.cs +++ b/Rdmp.Core/CommandExecution/GoToCommandFactory.cs @@ -272,7 +272,7 @@ public IEnumerable GetCommands(object forObject) if (catalogue.LoadMetadatas().Length == 0) { yield return new ExecuteCommandShow(_activator, null, typeof(LoadMetadata)) - { OverrideCommandName = $"Data Load", OverrideIcon = GetImage(RDMPConcept.LoadMetadata) }; + { OverrideCommandName = $"No Data Load", OverrideIcon = GetImage(RDMPConcept.LoadMetadata) }; } @@ -310,7 +310,7 @@ public IEnumerable GetCommands(object forObject) } ) { - OverrideCommandName = "Associated Project", + OverrideCommandName = "No Associated Project", OverrideIcon = GetImage(RDMPConcept.Project) }; } @@ -337,7 +337,7 @@ public IEnumerable GetCommands(object forObject) } ) { - OverrideCommandName = "Associated Project", + OverrideCommandName = "No Associated Project", OverrideIcon = GetImage(RDMPConcept.Project) }; yield return new ExecuteCommandShow(_activator, @@ -347,7 +347,7 @@ public IEnumerable GetCommands(object forObject) } ) { - OverrideCommandName = "Extracted In (Project)", + OverrideCommandName = "Not Extracted In (Project)", OverrideIcon = GetImage(RDMPConcept.Project) }; yield return new ExecuteCommandShow(_activator, @@ -357,7 +357,7 @@ public IEnumerable GetCommands(object forObject) } ) { - OverrideCommandName = "Extracted In (Extraction Configuration)", + OverrideCommandName = "Not Extracted In (Extraction Configuration)", OverrideIcon = GetImage(RDMPConcept.ExtractionConfiguration) }; } diff --git a/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs b/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs index a0f61f7635..7b7623b85e 100644 --- a/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs +++ b/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs @@ -171,10 +171,6 @@ public void Setup(CohortIdentificationConfiguration databaseObject, IActivateIte tbTicket.Enabled = false; label6.Enabled = false; } - if (databaseObject.Version is not null) - { - //btnShowTicket.Enabled = false; - } if (_cic is not null) btnShowTicket.Text = _cic.Version is null ? "Save Version" : "Restore"; versions.Insert(0, databaseObject); diff --git a/rdmp-client.xml b/rdmp-client.xml index fea7589a89..c4b433bedf 100644 --- a/rdmp-client.xml +++ b/rdmp-client.xml @@ -1,7 +1,7 @@ - 8.2.1.0 - https://github.com/HicServices/RDMP/releases/download/v8.2.1/rdmp-8.2.1-client.zip + 8.2.2.0 + https://github.com/HicServices/RDMP/releases/download/v8.2.2/rdmp-8.2.2-client.zip https://github.com/HicServices/RDMP/blob/main/CHANGELOG.md#7 true