* Move MultiUser install mode default registry key to the uninstaller registry entry
Lets the uninstaller detect the correct context for each installed version. related to #10971
* Fix uninstaller doesn't use correct shell context when installed for current user
related to #10971
* Update installer init checks for previously installed versions
Use shell context determined by the MultiUser plugin. related to #10971
* fix: Perform installer version checks after install mode selection
Perform installer version checks after install mode selection to ensure that they are done for the correct reg root key. Fixes#10971.
* Call version check method also in silent mode
* Add TrimQuotes macro to installer utilities
Also remove FileCheck macro
* Update comment in gui.nsh
* Change Windows installer/uninstaller FileDescription entry
related to #11232
=========================================
Console error, warnings, ... allow for a notifiername. This appears separately in the notification area. However, the report view ignores it.
This commit prepends the notifier string separated by a semicolon, if not empty.
It solves the problem that, if the message did not include the notifier, this was not indicated in the Report View.
If the message included the notifier, then it was duplicated in the notification area.
=======================================================================
Previous version return an reference to the smart pointer to generic Part::Geometry.
This version returns a type specific naked pointer, while ShapeGeometry keeps ownership
and memory management, so if an arc is created a Part::ArcOfCircle is returned.
================================================================
In some DSHs instead of the convenience function, the code is being duplicated because
of the need to access the geometry after pushing it to the std::vector.
This commit leverages emplace_back return reference to improve code reuse.