From 2fafe3453740660f10592594e004ca85d15166a3 Mon Sep 17 00:00:00 2001 From: samatrhea Date: Sun, 28 Apr 2024 15:44:48 +0200 Subject: [PATCH] [Update] Starion Group --- .github/CONTRIBUTING.md | 6 +-- .github/ISSUE_TEMPLATE.md | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 4 +- .github/workflows/CodeQuality.yml | 2 +- CDP-Batch-Editor.sln.DotSettings | 4 +- CDPBatchEditor.Tests/AppTestFixture.cs | 4 +- .../CDPBatchEditor.Tests.csproj | 4 +- .../CommandArgumentsTestFixture.cs | 4 +- .../Command/BaseCommandTestFixture.cs | 4 +- .../Command/DomainCommandTestFixture.cs | 4 +- .../Command/OptionCommandTestFixture.cs | 4 +- .../Command/ParameterCommandTestFixture.cs | 4 +- .../Command/ScaleCommandTestFixture.cs | 4 +- .../Command/StateCommandTestFixture.cs | 4 +- .../Command/SubscriptionCommandTestFixture.cs | 4 +- .../Command/ValueSetCommandTestFixture.cs | 4 +- .../Commands/CommandDispatcherTestFixture.cs | 4 +- .../Commands/ReportGeneratorTestFixture.cs | 4 +- CDPBatchEditor.Tests/ProgramTestFixture.cs | 4 +- .../Resources/ResourcesTestFixture.cs | 4 +- .../Services/FilterServiceTestFixture.cs | 4 +- .../Services/SessionServiceTestFixture.cs | 4 +- CDPBatchEditor/App.cs | 4 +- CDPBatchEditor/AppContainer.cs | 4 +- CDPBatchEditor/BatchEditor.cs | 4 +- CDPBatchEditor/CDPBatchEditor.csproj | 4 +- CDPBatchEditor/CommandArguments/Arguments.cs | 4 +- .../CommandArguments/ArgumentsBase.cs | 4 +- .../CommandArguments/CommandEnumeration.cs | 4 +- .../CommandArguments/ConnectionArguments.cs | 4 +- .../Interface/ICommandArguments.cs | 4 +- .../Commands/Command/DomainCommand.cs | 4 +- .../Command/Interface/IDomainCommand.cs | 4 +- .../Command/Interface/IOptionCommand.cs | 4 +- .../Command/Interface/IParameterCommand.cs | 4 +- .../Command/Interface/IScaleCommand.cs | 4 +- .../Command/Interface/IStateCommand.cs | 4 +- .../Command/Interface/ISubscriptionCommand.cs | 4 +- .../Command/Interface/IValueSetCommand.cs | 4 +- .../Commands/Command/OptionCommand.cs | 4 +- .../Commands/Command/ParameterCommand.cs | 4 +- .../Commands/Command/ScaleCommand.cs | 4 +- .../Commands/Command/StateCommand.cs | 4 +- .../Commands/Command/SubscriptionCommand.cs | 4 +- .../Commands/Command/ValueSetCommand.cs | 4 +- CDPBatchEditor/Commands/CommandDispatcher.cs | 4 +- .../Commands/Interface/ICommandDispatcher.cs | 4 +- .../Commands/Interface/IReportGenerator.cs | 4 +- CDPBatchEditor/Commands/ReportGenerator.cs | 4 +- .../Extensions/DalSessionExtensions.cs | 4 +- .../Extensions/HashSetExtensions.cs | 4 +- CDPBatchEditor/IApp.cs | 4 +- CDPBatchEditor/Program.cs | 4 +- CDPBatchEditor/Resources/IResourceLoader.cs | 4 +- CDPBatchEditor/Resources/ResourceLoader.cs | 4 +- CDPBatchEditor/Resources/ascii-art.txt | 4 +- CDPBatchEditor/Services/CsvFileWriter.cs | 4 +- CDPBatchEditor/Services/FilterService.cs | 4 +- .../Services/Interfaces/IFilterService.cs | 4 +- .../Services/Interfaces/ISessionService.cs | 4 +- CDPBatchEditor/Services/SessionService.cs | 4 +- CODE_OF_CONDUCT.md | 2 +- README.md | 38 +++++++++---------- 63 files changed, 141 insertions(+), 141 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 1938793..59da158 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -11,7 +11,7 @@ We would like to start with saying thank you for wanting to contribute to COMET- 1. [Fork](http://help.github.com/forking/) on GitHub 1. Clone your fork locally -1. Configure the upstream repo (`git remote add upstream git://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition`) +1. Configure the upstream repo (`git remote add upstream git://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition`) 1. Checkout development 1. Create a local branch (`git checkout -b myBranch`) from development 1. Work on your feature @@ -44,9 +44,9 @@ When you're ready to go you should confirm that you are up to date and rebased w 1. `git push origin myBranch` 1. Send a descriptive [Pull Request](https://help.github.com/articles/creating-a-pull-request/) on GitHub - making sure you have selected the correct branch in the GitHub UI! -1. Wait for @samatrhea to merge your changes in. +1. Wait for @samatstariongroup to merge your changes in. -And remember; **A pull-request with tests is a pull-request that's likely to be pulled in.** :grin: Bonus points if you document your feature in our [wiki](https://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/wiki) once it has been pulled in +And remember; **A pull-request with tests is a pull-request that's likely to be pulled in.** :grin: Bonus points if you document your feature in our [wiki](https://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/wiki) once it has been pulled in ## Style Guidelines diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index b61eaf0..ad71aca 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -2,7 +2,7 @@ - [ ] I have written a descriptive issue title - [ ] I have verified that I am running the latest version of the COMET-BatchEditor -- [ ] I have searched [open](https://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/issues) and [closed](https://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported +- [ ] I have searched [open](https://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/issues) and [closed](https://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported ### Description diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 3340bca..f31b00d 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,8 +1,8 @@ ### Prerequisites - [ ] I have written a descriptive pull-request title -- [ ] I have verified that there are no overlapping [pull-requests](https://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/pulls) open -- [ ] I have verified that I am following the COMET-SDK [code style guidelines](https://raw.githubusercontent.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/master/.github/CONTRIBUTING.md) +- [ ] I have verified that there are no overlapping [pull-requests](https://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/pulls) open +- [ ] I have verified that I am following the COMET-SDK [code style guidelines](https://raw.githubusercontent.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/master/.github/CONTRIBUTING.md) - [ ] I have provided test coverage for my change (where applicable) ### Description diff --git a/.github/workflows/CodeQuality.yml b/.github/workflows/CodeQuality.yml index 073dcb8..0b8e0bc 100644 --- a/.github/workflows/CodeQuality.yml +++ b/.github/workflows/CodeQuality.yml @@ -27,7 +27,7 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | dotnet tool install --global dotnet-sonarscanner - dotnet sonarscanner begin /k:"RHEAGROUP_COMET-BatchEditor-Community-Edition" /o:"rheagroup" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="./CoverageResults/coverage.opencover.xml" + dotnet sonarscanner begin /k:"STARIONGROUP_COMET-BatchEditor-Community-Edition" /o:"stariongroup" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="./CoverageResults/coverage.opencover.xml" - name: Build run: dotnet build --no-restore /p:ContinuousIntegrationBuild=true diff --git a/CDP-Batch-Editor.sln.DotSettings b/CDP-Batch-Editor.sln.DotSettings index 07ea227..383e87a 100644 --- a/CDP-Batch-Editor.sln.DotSettings +++ b/CDP-Batch-Editor.sln.DotSettings @@ -243,8 +243,8 @@ True True -------------------------------------------------------------------------------------------------------------------- - <copyright file="$FILENAME$" company="RHEA System S.A."> - Copyright (c) 2015-$CURRENT_YEAR$ RHEA System S.A. + <copyright file="$FILENAME$" company="Starion Group S.A."> + Copyright (c) 2015-$CURRENT_YEAR$ Starion Group S.A. Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Kamil Wojnowski, Sam Gerené diff --git a/CDPBatchEditor.Tests/AppTestFixture.cs b/CDPBatchEditor.Tests/AppTestFixture.cs index 639cfb1..e3fe957 100644 --- a/CDPBatchEditor.Tests/AppTestFixture.cs +++ b/CDPBatchEditor.Tests/AppTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/CDPBatchEditor.Tests.csproj b/CDPBatchEditor.Tests/CDPBatchEditor.Tests.csproj index 88fbcaa..d464d13 100644 --- a/CDPBatchEditor.Tests/CDPBatchEditor.Tests.csproj +++ b/CDPBatchEditor.Tests/CDPBatchEditor.Tests.csproj @@ -6,9 +6,9 @@ latest CDPBatchEditor.Tests Sam Gerené, Alex Vorobiev, Alexander van Delft, Nathanael Smiechowski - RHEA System S.A. + Starion Group S.A. CDP4-COMET Batch editor tool Tests - Copyright © RHEA System S.A. + Copyright © Starion Group S.A. diff --git a/CDPBatchEditor.Tests/CommandArgumentsTestFixture.cs b/CDPBatchEditor.Tests/CommandArgumentsTestFixture.cs index fe64d95..651840d 100644 --- a/CDPBatchEditor.Tests/CommandArgumentsTestFixture.cs +++ b/CDPBatchEditor.Tests/CommandArgumentsTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/BaseCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/BaseCommandTestFixture.cs index e35df59..f525ed9 100644 --- a/CDPBatchEditor.Tests/Commands/Command/BaseCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/BaseCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/DomainCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/DomainCommandTestFixture.cs index cdbb4a0..bf052d0 100644 --- a/CDPBatchEditor.Tests/Commands/Command/DomainCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/DomainCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/OptionCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/OptionCommandTestFixture.cs index 0ec9cd9..1112030 100644 --- a/CDPBatchEditor.Tests/Commands/Command/OptionCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/OptionCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/ParameterCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/ParameterCommandTestFixture.cs index dcbaab7..e3c16bb 100644 --- a/CDPBatchEditor.Tests/Commands/Command/ParameterCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/ParameterCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/ScaleCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/ScaleCommandTestFixture.cs index 3a7fbed..bc8cc56 100644 --- a/CDPBatchEditor.Tests/Commands/Command/ScaleCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/ScaleCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/StateCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/StateCommandTestFixture.cs index 06ae0f0..58eb20f 100644 --- a/CDPBatchEditor.Tests/Commands/Command/StateCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/StateCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/SubscriptionCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/SubscriptionCommandTestFixture.cs index 373c09f..e46df3b 100644 --- a/CDPBatchEditor.Tests/Commands/Command/SubscriptionCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/SubscriptionCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/Command/ValueSetCommandTestFixture.cs b/CDPBatchEditor.Tests/Commands/Command/ValueSetCommandTestFixture.cs index d961e63..9581b79 100644 --- a/CDPBatchEditor.Tests/Commands/Command/ValueSetCommandTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/Command/ValueSetCommandTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/CommandDispatcherTestFixture.cs b/CDPBatchEditor.Tests/Commands/CommandDispatcherTestFixture.cs index f5a03dc..6e308c9 100644 --- a/CDPBatchEditor.Tests/Commands/CommandDispatcherTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/CommandDispatcherTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Commands/ReportGeneratorTestFixture.cs b/CDPBatchEditor.Tests/Commands/ReportGeneratorTestFixture.cs index ee01cac..c16cc5f 100644 --- a/CDPBatchEditor.Tests/Commands/ReportGeneratorTestFixture.cs +++ b/CDPBatchEditor.Tests/Commands/ReportGeneratorTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/ProgramTestFixture.cs b/CDPBatchEditor.Tests/ProgramTestFixture.cs index ecb79b6..12b70df 100644 --- a/CDPBatchEditor.Tests/ProgramTestFixture.cs +++ b/CDPBatchEditor.Tests/ProgramTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Resources/ResourcesTestFixture.cs b/CDPBatchEditor.Tests/Resources/ResourcesTestFixture.cs index a190215..2c39f27 100644 --- a/CDPBatchEditor.Tests/Resources/ResourcesTestFixture.cs +++ b/CDPBatchEditor.Tests/Resources/ResourcesTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Services/FilterServiceTestFixture.cs b/CDPBatchEditor.Tests/Services/FilterServiceTestFixture.cs index 451bb99..75c1706 100644 --- a/CDPBatchEditor.Tests/Services/FilterServiceTestFixture.cs +++ b/CDPBatchEditor.Tests/Services/FilterServiceTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor.Tests/Services/SessionServiceTestFixture.cs b/CDPBatchEditor.Tests/Services/SessionServiceTestFixture.cs index 7630540..a00b3ba 100644 --- a/CDPBatchEditor.Tests/Services/SessionServiceTestFixture.cs +++ b/CDPBatchEditor.Tests/Services/SessionServiceTestFixture.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/App.cs b/CDPBatchEditor/App.cs index 5f2e3d9..c7ebcc4 100644 --- a/CDPBatchEditor/App.cs +++ b/CDPBatchEditor/App.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/AppContainer.cs b/CDPBatchEditor/AppContainer.cs index 34ead6e..c0eb7f9 100644 --- a/CDPBatchEditor/AppContainer.cs +++ b/CDPBatchEditor/AppContainer.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/BatchEditor.cs b/CDPBatchEditor/BatchEditor.cs index 3d105f1..09d4925 100644 --- a/CDPBatchEditor/BatchEditor.cs +++ b/CDPBatchEditor/BatchEditor.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2021 RHEA System S.A. +// +// Copyright (c) 2015-2021 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/CDPBatchEditor.csproj b/CDPBatchEditor/CDPBatchEditor.csproj index 1e9d37e..b368f62 100644 --- a/CDPBatchEditor/CDPBatchEditor.csproj +++ b/CDPBatchEditor/CDPBatchEditor.csproj @@ -21,8 +21,8 @@ - RHEA System S.A. - Copyright © RHEA System S.A. + Starion Group S.A. + Copyright © Starion Group S.A. Sam Gerené, Alex Vorobiev, Alexander van Delft, Nathanael Smiechowski LGPL-3.0-only true diff --git a/CDPBatchEditor/CommandArguments/Arguments.cs b/CDPBatchEditor/CommandArguments/Arguments.cs index 986e342..1407580 100644 --- a/CDPBatchEditor/CommandArguments/Arguments.cs +++ b/CDPBatchEditor/CommandArguments/Arguments.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/CommandArguments/ArgumentsBase.cs b/CDPBatchEditor/CommandArguments/ArgumentsBase.cs index 8d7d600..5181025 100644 --- a/CDPBatchEditor/CommandArguments/ArgumentsBase.cs +++ b/CDPBatchEditor/CommandArguments/ArgumentsBase.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/CommandArguments/CommandEnumeration.cs b/CDPBatchEditor/CommandArguments/CommandEnumeration.cs index 3778310..522728f 100644 --- a/CDPBatchEditor/CommandArguments/CommandEnumeration.cs +++ b/CDPBatchEditor/CommandArguments/CommandEnumeration.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/CommandArguments/ConnectionArguments.cs b/CDPBatchEditor/CommandArguments/ConnectionArguments.cs index 6cb81b9..140948e 100644 --- a/CDPBatchEditor/CommandArguments/ConnectionArguments.cs +++ b/CDPBatchEditor/CommandArguments/ConnectionArguments.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/CommandArguments/Interface/ICommandArguments.cs b/CDPBatchEditor/CommandArguments/Interface/ICommandArguments.cs index 1829684..e3f6718 100644 --- a/CDPBatchEditor/CommandArguments/Interface/ICommandArguments.cs +++ b/CDPBatchEditor/CommandArguments/Interface/ICommandArguments.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/DomainCommand.cs b/CDPBatchEditor/Commands/Command/DomainCommand.cs index 08118ce..d721c33 100644 --- a/CDPBatchEditor/Commands/Command/DomainCommand.cs +++ b/CDPBatchEditor/Commands/Command/DomainCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/Interface/IDomainCommand.cs b/CDPBatchEditor/Commands/Command/Interface/IDomainCommand.cs index c8c2ba3..16525cf 100644 --- a/CDPBatchEditor/Commands/Command/Interface/IDomainCommand.cs +++ b/CDPBatchEditor/Commands/Command/Interface/IDomainCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/Interface/IOptionCommand.cs b/CDPBatchEditor/Commands/Command/Interface/IOptionCommand.cs index 1273064..47008fe 100644 --- a/CDPBatchEditor/Commands/Command/Interface/IOptionCommand.cs +++ b/CDPBatchEditor/Commands/Command/Interface/IOptionCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/Interface/IParameterCommand.cs b/CDPBatchEditor/Commands/Command/Interface/IParameterCommand.cs index 99446e5..417d097 100644 --- a/CDPBatchEditor/Commands/Command/Interface/IParameterCommand.cs +++ b/CDPBatchEditor/Commands/Command/Interface/IParameterCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/Interface/IScaleCommand.cs b/CDPBatchEditor/Commands/Command/Interface/IScaleCommand.cs index 02249e9..70e452d 100644 --- a/CDPBatchEditor/Commands/Command/Interface/IScaleCommand.cs +++ b/CDPBatchEditor/Commands/Command/Interface/IScaleCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/Interface/IStateCommand.cs b/CDPBatchEditor/Commands/Command/Interface/IStateCommand.cs index 78b598d..ea17bc8 100644 --- a/CDPBatchEditor/Commands/Command/Interface/IStateCommand.cs +++ b/CDPBatchEditor/Commands/Command/Interface/IStateCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/Interface/ISubscriptionCommand.cs b/CDPBatchEditor/Commands/Command/Interface/ISubscriptionCommand.cs index b820997..047b876 100644 --- a/CDPBatchEditor/Commands/Command/Interface/ISubscriptionCommand.cs +++ b/CDPBatchEditor/Commands/Command/Interface/ISubscriptionCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/Interface/IValueSetCommand.cs b/CDPBatchEditor/Commands/Command/Interface/IValueSetCommand.cs index 6fbf87b..3e9cbc8 100644 --- a/CDPBatchEditor/Commands/Command/Interface/IValueSetCommand.cs +++ b/CDPBatchEditor/Commands/Command/Interface/IValueSetCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/OptionCommand.cs b/CDPBatchEditor/Commands/Command/OptionCommand.cs index be9378c..b9576d9 100644 --- a/CDPBatchEditor/Commands/Command/OptionCommand.cs +++ b/CDPBatchEditor/Commands/Command/OptionCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/ParameterCommand.cs b/CDPBatchEditor/Commands/Command/ParameterCommand.cs index 0daf0b5..14e1bea 100644 --- a/CDPBatchEditor/Commands/Command/ParameterCommand.cs +++ b/CDPBatchEditor/Commands/Command/ParameterCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/ScaleCommand.cs b/CDPBatchEditor/Commands/Command/ScaleCommand.cs index bc1861b..0fde8e3 100644 --- a/CDPBatchEditor/Commands/Command/ScaleCommand.cs +++ b/CDPBatchEditor/Commands/Command/ScaleCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/StateCommand.cs b/CDPBatchEditor/Commands/Command/StateCommand.cs index b20b938..cb4a4ea 100644 --- a/CDPBatchEditor/Commands/Command/StateCommand.cs +++ b/CDPBatchEditor/Commands/Command/StateCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/SubscriptionCommand.cs b/CDPBatchEditor/Commands/Command/SubscriptionCommand.cs index 65c4fa7..0b4026e 100644 --- a/CDPBatchEditor/Commands/Command/SubscriptionCommand.cs +++ b/CDPBatchEditor/Commands/Command/SubscriptionCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Command/ValueSetCommand.cs b/CDPBatchEditor/Commands/Command/ValueSetCommand.cs index 8907c7c..8ee2a1b 100644 --- a/CDPBatchEditor/Commands/Command/ValueSetCommand.cs +++ b/CDPBatchEditor/Commands/Command/ValueSetCommand.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/CommandDispatcher.cs b/CDPBatchEditor/Commands/CommandDispatcher.cs index 2fccda6..c3145a9 100644 --- a/CDPBatchEditor/Commands/CommandDispatcher.cs +++ b/CDPBatchEditor/Commands/CommandDispatcher.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Interface/ICommandDispatcher.cs b/CDPBatchEditor/Commands/Interface/ICommandDispatcher.cs index c66f404..723d33f 100644 --- a/CDPBatchEditor/Commands/Interface/ICommandDispatcher.cs +++ b/CDPBatchEditor/Commands/Interface/ICommandDispatcher.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/Interface/IReportGenerator.cs b/CDPBatchEditor/Commands/Interface/IReportGenerator.cs index 532fcfb..a45eafc 100644 --- a/CDPBatchEditor/Commands/Interface/IReportGenerator.cs +++ b/CDPBatchEditor/Commands/Interface/IReportGenerator.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Commands/ReportGenerator.cs b/CDPBatchEditor/Commands/ReportGenerator.cs index 2ca07c5..fbd7032 100644 --- a/CDPBatchEditor/Commands/ReportGenerator.cs +++ b/CDPBatchEditor/Commands/ReportGenerator.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Extensions/DalSessionExtensions.cs b/CDPBatchEditor/Extensions/DalSessionExtensions.cs index d0410ed..a6b53a7 100644 --- a/CDPBatchEditor/Extensions/DalSessionExtensions.cs +++ b/CDPBatchEditor/Extensions/DalSessionExtensions.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Extensions/HashSetExtensions.cs b/CDPBatchEditor/Extensions/HashSetExtensions.cs index 1ac2809..c92ab8b 100644 --- a/CDPBatchEditor/Extensions/HashSetExtensions.cs +++ b/CDPBatchEditor/Extensions/HashSetExtensions.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/IApp.cs b/CDPBatchEditor/IApp.cs index 88f0819..322b1a9 100644 --- a/CDPBatchEditor/IApp.cs +++ b/CDPBatchEditor/IApp.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Program.cs b/CDPBatchEditor/Program.cs index bbad364..611e16a 100644 --- a/CDPBatchEditor/Program.cs +++ b/CDPBatchEditor/Program.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Resources/IResourceLoader.cs b/CDPBatchEditor/Resources/IResourceLoader.cs index 85c9086..3721b70 100644 --- a/CDPBatchEditor/Resources/IResourceLoader.cs +++ b/CDPBatchEditor/Resources/IResourceLoader.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Resources/ResourceLoader.cs b/CDPBatchEditor/Resources/ResourceLoader.cs index be3effd..f73cc07 100644 --- a/CDPBatchEditor/Resources/ResourceLoader.cs +++ b/CDPBatchEditor/Resources/ResourceLoader.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Resources/ascii-art.txt b/CDPBatchEditor/Resources/ascii-art.txt index 1ea07cf..3f31dbd 100644 --- a/CDPBatchEditor/Resources/ascii-art.txt +++ b/CDPBatchEditor/Resources/ascii-art.txt @@ -6,7 +6,7 @@ ╚██████╗╚██████╔╝██║ ╚═╝ ██║███████╗ ██║ ██████╔╝██║ ██║ ██║ ╚██████╗██║ ██║ ███████╗██████╔╝██║ ██║ ╚██████╔╝██║ ██║ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ - copyright 2020-2023 RHEA Group S.A. https://www.rheagroup.com - email: info@rheagroup.com + copyright 2020-2024 Starion Group S.A. https://www.stariongroup.eu + email: info@stariongroup.eu CDP4-COMET Batch Editor version: BatchEditorVersion \ No newline at end of file diff --git a/CDPBatchEditor/Services/CsvFileWriter.cs b/CDPBatchEditor/Services/CsvFileWriter.cs index ab330b7..e973ab9 100644 --- a/CDPBatchEditor/Services/CsvFileWriter.cs +++ b/CDPBatchEditor/Services/CsvFileWriter.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Services/FilterService.cs b/CDPBatchEditor/Services/FilterService.cs index 35571ff..39cef07 100644 --- a/CDPBatchEditor/Services/FilterService.cs +++ b/CDPBatchEditor/Services/FilterService.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Services/Interfaces/IFilterService.cs b/CDPBatchEditor/Services/Interfaces/IFilterService.cs index 949d629..acce225 100644 --- a/CDPBatchEditor/Services/Interfaces/IFilterService.cs +++ b/CDPBatchEditor/Services/Interfaces/IFilterService.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Services/Interfaces/ISessionService.cs b/CDPBatchEditor/Services/Interfaces/ISessionService.cs index a637207..e845c6a 100644 --- a/CDPBatchEditor/Services/Interfaces/ISessionService.cs +++ b/CDPBatchEditor/Services/Interfaces/ISessionService.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CDPBatchEditor/Services/SessionService.cs b/CDPBatchEditor/Services/SessionService.cs index e60a8d7..b51bbb6 100644 --- a/CDPBatchEditor/Services/SessionService.cs +++ b/CDPBatchEditor/Services/SessionService.cs @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------------------------- -// -// Copyright (c) 2015-2023 RHEA System S.A. +// +// Copyright (c) 2015-2024 Starion Group S.A. // // Author: Nathanael Smiechowski, Alex Vorobiev, Alexander van Delft, Sam Gerené // diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index b4557de..d93becb 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at s.gerene@rheagroup.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at s.gerene@stariongroup.eu. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/README.md b/README.md index 2df4ac1..cf2772d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ - + -The CDP4-COMET BatchEditor Community Editition (CE) is the RHEA Group open source command line tool compliant with ECSS-E-TM-10-25 Annex A and Annex C webservices. The BatchEditor allows fast execution of common commands on large prtions of EngineeringModel data. +The CDP4-COMET BatchEditor Community Editition (CE) is the Starion Group open source command line tool compliant with ECSS-E-TM-10-25 Annex A and Annex C webservices. The BatchEditor allows fast execution of common commands on large prtions of EngineeringModel data. ## Installation @@ -10,7 +10,7 @@ The batch editor can be installed by downloading the zipped package or as a dotn ## Usage -Find example usages of all commands in [CommandExamples.md](CommandExamples.md) and [wiki](https://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/wiki). +Find example usages of all commands in [CommandExamples.md](CommandExamples.md) and [wiki](https://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/wiki). ## Build status @@ -18,20 +18,20 @@ GitHub actions are used to build and test the libraries Branch | Build Status ------- | :------------ -Master | ![Build Status](https://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/actions/workflows/CodeQuality.yml/badge.svg?branch=master) -Development | ![Build Status](https://github.com/RHEAGROUP/COMET-BatchEditor-Community-Edition/actions/workflows/CodeQuality.yml/badge.svg?branch=development) +Master | ![Build Status](https://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/actions/workflows/CodeQuality.yml/badge.svg?branch=master) +Development | ![Build Status](https://github.com/STARIONGROUP/COMET-BatchEditor-Community-Edition/actions/workflows/CodeQuality.yml/badge.svg?branch=development) ## SonarQube Status: -[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=security_rating)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=coverage)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=duplicated_lines_density)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=bugs)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=ncloc)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=sqale_index)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) -[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=RHEAGROUP_COMET-BatchEditor-Community-Edition&metric=vulnerabilities)](https://sonarcloud.io/dashboard?id=RHEAGROUP_COMET-BatchEditor-Community-Edition) +[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=security_rating)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=coverage)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=duplicated_lines_density)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=bugs)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=ncloc)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=sqale_index)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) +[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_COMET-BatchEditor-Community-Edition&metric=vulnerabilities)](https://sonarcloud.io/dashboard?id=STARIONGROUP_COMET-BatchEditor-Community-Edition) ## Concurrent Design @@ -39,18 +39,18 @@ The Concurrent Design method is an approach to design activities in which all de The Concurrent Design method brings many advantages to the early design phase by providing a structure for this otherwise chaotic phase. Many design concepts have been implemented in the Concurrent Design method to help a team of stakeholders perform their task. The design work is done in collocated sessions with all stakeholders involved and present, creating an integrated design and enabling good communication and exchange of information between team members. -To read more about Concurrent Design and how to use the CDP4 Desktop application to perform concurrent design please read our documentation at http://cdp4docs.rheagroup.com/ +To read more about Concurrent Design and how to use the CDP4 Desktop application to perform concurrent design please read our documentation at https://comet-dev-docs.mbsehub.org/ ## CDP4-COMET-SDK -The CDP4-COMET-BatchEditor Community Edition makes use of the [CDP4-COMET-SDK](http://sdk.cdp4.org/). +The CDP4-COMET-BatchEditor Community Edition makes use of the [CDP4-COMET-SDK](https://github.com/STARIONGROUP/COMET-SDK-Community-Edition). # License The CDP4-COMET-BatchEditor Community Edition is provided to the community under the GNU Lesser General Public License v3.0. See the license files for the details. The license can be found [here](LICENSE). -The [RHEA Group](https://www.rheagroup.com) also provides the [COMET Web Services Enterprise Edition](https://github.com/RHEAGROUP/COMET-WebServices-Community-Edition/wiki/CDP4-Web-Services-Enterprise-Edition) which comes with commercial support and more features. [Contact](https://www.rheagroup.com/contact) us for more details. +The [Starion Group](https://www.stariongroup.eu) also provides the [COMET Web Services Enterprise Edition](https://github.com/STARIONGROUP/COMET-WebServices-Community-Edition/wiki/CDP4-Web-Services-Enterprise-Edition) which comes with commercial support and more features. [Contact](https://www.stariongroup.eu/contact) us for more details. # Contributions -Contributions to the code-base are welcome. However, before we can accept your contributions we ask any contributor to sign the Contributor License Agreement (CLA) and send this digitaly signed to s.gerene@rheagroup.com. You can find the CLA's in the CLA folder. +Contributions to the code-base are welcome. However, before we can accept your contributions we ask any contributor to sign the Contributor License Agreement (CLA) and send this digitaly signed to s.gerene@stariongroup.eu. You can find the CLA's in the CLA folder.