Skip to content

Tags: RippeR37/libbase

Tags

v1.1.2

Toggle v1.1.2's commit message
Bump version to v1.1.2

This commit updates the library version to v1.1.2.

v1.1.1

Toggle v1.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add module ifdef guards and helper methods to net::ResourceRequest (#59)

This commit adds #ifdef guards to all headers that are for optional
modules to ensure that code in them is not processed if the module is
not built/installed. At the moment there are no errors, but this may
change in the future.

Furthermore, this commit also adds some convenience helper methods to
`base::net::ResourceRequest` to make it easier to create them.
Previously user had to provide all parameters until the last intended
one (due no designed initializers in C++17). With new methods, users
can start with URL and then add parameters as they see fit. Example:

```cpp
    base::net::ResourceRequest{"https://www.google.com/robots.txt"}
        .WithHeadersOnly()
        .WithTimeout(base::Seconds(5)),
```

v1.1.0

Toggle v1.1.0's commit message
Bump version to v1.1.0

v1.0.1

Toggle v1.0.1's commit message
Bump version to 1.0.1

Main updates from 1.0.0 are:

* update to work with newer compilers and OSes
* update CI scripts
* added support for vcpkg
  * the library itself will now also be available in vcpkg

v1.0.0

Toggle v1.0.0's commit message
libbase 1.0.0