Skip to content

Commit d27866b

Browse files
authored
Merge pull request #1911 from HicServices/task/RDMP-229-prep-8.2.2-release
Task/rdmp 229 prep 8.2.2 release
2 parents 271d800 + 68764c8 commit d27866b

File tree

6 files changed

+11
-17
lines changed

6 files changed

+11
-17
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: Build
33
# Run this workflow every time a new commit pushed to your repository
44

55
on:
6-
push:
7-
schedule:
8-
- cron: '0 0 * * *'
6+
push
97

108
env:
119
DOTNET_NOLOGO: 1

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [8.2.2] - Unreleased
9-
8+
## [8.2.2] - 2024-08-01
9+
1010
- Add DQE PostLoad runner
1111
- Misc improvements to the DQE
1212
- Fix Project Creation UI issue

Rdmp.Core/CommandExecution/AtomicCommands/ExecuteCommandCloneCohortIdentificationConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public override void Execute()
7979
"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?",
8080
"Confirm Cloning")) return;
8181
CloneCreatedIfAny = _cic.CreateClone(ThrowImmediatelyCheckNotifier.Quiet);
82-
if (CloneCreatedIfAny != null)
82+
if (CloneCreatedIfAny != null && _version is not null)
8383
{
8484
CloneCreatedIfAny.Version = _version;
8585
//If no name is provided, use the existing name, but repalce the "(Clone) with the version number"

Rdmp.Core/CommandExecution/GoToCommandFactory.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
272272
if (catalogue.LoadMetadatas().Length == 0)
273273
{
274274
yield return new ExecuteCommandShow(_activator, null, typeof(LoadMetadata))
275-
{ OverrideCommandName = $"Data Load", OverrideIcon = GetImage(RDMPConcept.LoadMetadata) };
275+
{ OverrideCommandName = $"No Data Load", OverrideIcon = GetImage(RDMPConcept.LoadMetadata) };
276276
}
277277

278278

@@ -310,7 +310,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
310310
}
311311
)
312312
{
313-
OverrideCommandName = "Associated Project",
313+
OverrideCommandName = "No Associated Project",
314314
OverrideIcon = GetImage(RDMPConcept.Project)
315315
};
316316
}
@@ -337,7 +337,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
337337
}
338338
)
339339
{
340-
OverrideCommandName = "Associated Project",
340+
OverrideCommandName = "No Associated Project",
341341
OverrideIcon = GetImage(RDMPConcept.Project)
342342
};
343343
yield return new ExecuteCommandShow(_activator,
@@ -347,7 +347,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
347347
}
348348
)
349349
{
350-
OverrideCommandName = "Extracted In (Project)",
350+
OverrideCommandName = "Not Extracted In (Project)",
351351
OverrideIcon = GetImage(RDMPConcept.Project)
352352
};
353353
yield return new ExecuteCommandShow(_activator,
@@ -357,7 +357,7 @@ public IEnumerable<IAtomicCommand> GetCommands(object forObject)
357357
}
358358
)
359359
{
360-
OverrideCommandName = "Extracted In (Extraction Configuration)",
360+
OverrideCommandName = "Not Extracted In (Extraction Configuration)",
361361
OverrideIcon = GetImage(RDMPConcept.ExtractionConfiguration)
362362
};
363363
}

Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rdmp-client.xml

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

0 commit comments

Comments
 (0)