Releases: GiovanniDicanio/WinReg
winreg-2.2.2 Header-only Stable Release
Ported code to VS2019, and added some std::vector::reserve()
calls to optimize some insertion loops.
winreg-2.2.1 Header-only Stable Release
Same features as the previous stable release v2.2.0; I simply modified the code to use {}
-init more, plus other code refinements, like using vector::emplace_back()
instead of vector::push_back()
in several places.
winreg-2.2.0 Header-only Stable Release
This release has the same features of the previous stable release v2.1.2; the only difference is that I refactored the library code to make it header-only in this release.
winreg-2.1.2 Improved Stable Release
The main addition of this release are new methods named like TryAction (e.g. RegKey::TryOpen()
, RegKey::TryGetDwordValue()
, etc.), that return Windows Registry API error codes instead of throwing exceptions on failure.
Moreover, library code has also been split between header (.hpp) and source (.cpp) files. Methods with longer and more complex implementation code have been moved to the WinReg.cpp
file.
First Working Stable Release
First release created using GitHub