diff --git a/resources/EvA2.props b/resources/EvA2.props
index 9b954cbd..d9800fe9 100644
--- a/resources/EvA2.props
+++ b/resources/EvA2.props
@@ -16,3 +16,6 @@ ModulePackage = eva2.server.modules
# filter class for modules. Do not alter!
ModuleFilterClass = eva2.server.modules.AbstractModuleAdapter
+
+# Full EvA2 version number
+EvA2Version = 2.043
\ No newline at end of file
diff --git a/resources/FitnessConvergenceTerminator.html b/resources/FitnessConvergenceTerminator.html
index 7b82bfc5..099e963f 100644
--- a/resources/FitnessConvergenceTerminator.html
+++ b/resources/FitnessConvergenceTerminator.html
@@ -7,10 +7,13 @@
The fitness convergence terminator stops the optimization, when there has been hardly
-any change in the best population fitness (within percentual or absolute distance) for a certain
-time, given in generations or fitness calls.
+any change in the best fitness in the population (within percentual or absolute distance) for a certain
+time, given in generations or fitness calls. In case of multi-objective optimization, the 2-norm of
+the fitness vector is
+currently used.
Be aware that, if the optimization is allowed to be non-monotonic, such as for (,)-ES strategies,
and if the optimum is close to zero, it may happen that the fitness fluctuates due to numeric
-issues and does not easily converge in a relative measure.
+issues and does not easily converge in a relative way.
+Check the help for the PopulationMeasureTerminator for additional information.