Skip to content

Releases: GiovanniDicanio/WinReg

winreg-2.2.2 Header-only Stable Release

22 Apr 17:57
5102b65
Compare
Choose a tag to compare

Ported code to VS2019, and added some std::vector::reserve() calls to optimize some insertion loops.

winreg-2.2.1 Header-only Stable Release

22 Apr 01:07
edb1c3f
Compare
Choose a tag to compare

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

19 Apr 22:51
e35d0e2
Compare
Choose a tag to compare

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

17 Apr 18:48
097c927
Compare
Choose a tag to compare

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

14 Sep 11:23
fa1c765
Compare
Choose a tag to compare

First release created using GitHub