This commit is contained in:
matthias@arch 2022-10-23 00:51:52 +02:00
parent ee7c449ea7
commit 9569e56335
2 changed files with 7 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Maintainer: Matthias Quintern <matthiasqui@protonmail.com> # Maintainer: Matthias Quintern <matthiasqui@protonmail.com>
pkgname=gz-cpp-util pkgname=gz-cpp-util
pkgver=1.3 pkgver=1.3
pkgrel=2 pkgrel=3
pkgdesc="Utility library for c++" pkgdesc="Utility library for c++"
arch=('any') arch=('any')
url="https://github.com/MatthiasQuintern/gz-cpp-util" url="https://github.com/MatthiasQuintern/gz-cpp-util"

View File

@ -48,17 +48,20 @@ Replace `firefox` with your web browser
## Changelog ## Changelog
### 2022-10-23 [1.3.3]
- Added integer to string in hex/oct/bin representation conversion
- Added integer from string in hex/oct/bin representation conversion
### 2022-10-19 [1.3.1] [1.3.2] ### 2022-10-19 [1.3.1] [1.3.2]
- Changes to logger (log.hpp): - Changes to logger (log.hpp):
- Added create info struct constructor - Added create info struct constructor
- Timestamp can be disabled - Timestamp can be disabled and colored
- Added different log levels that can be turned off/on at compile time - Added different log levels that can be turned off/on at compile time
### 2022-09-26 [1.3] ### 2022-09-26 [1.3]
- Added SettingsManager - Added SettingsManager
- Renamed getXXX to getXXXOr - Renamed getXXX to getXXXOr
- Added more type conversion utility - Added more type conversion utility
- from_string<T>() - fromString<T>()
- to_string() - toString()
- Logger now uses to_string - Logger now uses to_string
- Restructured files - Restructured files
- Added more documentation - Added more documentation