Skip to content

Commit

Permalink
Merge pull request #1911 from HicServices/task/RDMP-229-prep-8.2.2-re…
Browse files Browse the repository at this point in the history
…lease

Task/rdmp 229 prep 8.2.2 release
  • Loading branch information
rdteviotdale authored Aug 1, 2024
2 parents 271d800 + 68764c8 commit d27866b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 17 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions Rdmp.Core/CommandExecution/GoToCommandFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public IEnumerable<IAtomicCommand> 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) };
}


Expand Down Expand Up @@ -310,7 +310,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
}
)
{
OverrideCommandName = "Associated Project",
OverrideCommandName = "No Associated Project",
OverrideIcon = GetImage(RDMPConcept.Project)
};
}
Expand All @@ -337,7 +337,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
}
)
{
OverrideCommandName = "Associated Project",
OverrideCommandName = "No Associated Project",
OverrideIcon = GetImage(RDMPConcept.Project)
};
yield return new ExecuteCommandShow(_activator,
Expand All @@ -347,7 +347,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
}
)
{
OverrideCommandName = "Extracted In (Project)",
OverrideCommandName = "Not Extracted In (Project)",
OverrideIcon = GetImage(RDMPConcept.Project)
};
yield return new ExecuteCommandShow(_activator,
Expand All @@ -357,7 +357,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
}
)
{
OverrideCommandName = "Extracted In (Extraction Configuration)",
OverrideCommandName = "Not Extracted In (Extraction Configuration)",
OverrideIcon = GetImage(RDMPConcept.ExtractionConfiguration)
};
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions rdmp-client.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>8.2.1.0</version>
<url>https://github.com/HicServices/RDMP/releases/download/v8.2.1/rdmp-8.2.1-client.zip</url>
<version>8.2.2.0</version>
<url>https://github.com/HicServices/RDMP/releases/download/v8.2.2/rdmp-8.2.2-client.zip</url>
<changelog>https://github.com/HicServices/RDMP/blob/main/CHANGELOG.md#7</changelog>
<mandatory>true</mandatory>
</item>

0 comments on commit d27866b

Please sign in to comment.