diff --git a/BUILDING.md b/BUILDING.md index 45c158b..4e21016 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -3,8 +3,8 @@ ## Operating Systems * [Window (10/11)](BUILDING.md#windows-1011) -* [Ubuntu (22.04 LTS)](BUILDING.md#ubuntu-2204-lts) -* [macOS (Ventura 13)](BUILDING.md#macos-ventura-13) +* [Ubuntu (22.04/24.04)](BUILDING.md#ubuntu-22042404) +* [macOS (13/14)](BUILDING.md#macos-1314) * [Build Project](BUILDING.md#build-project) @@ -28,7 +28,7 @@ You may use default Git install options or chose any other default Git editor in 1. Download latest release version of installer from [cmake.org](https://cmake.org/download) 2. Select "Add CMake to the system PATH for the current user" during installation -# Ubuntu (22.04 LTS) +# Ubuntu (22.04/24.04) ## 1. Install Visual Studio Code (Or any other IDE) @@ -41,7 +41,7 @@ You may use default Git install options or chose any other default Git editor in 2. And ```sudo apt-get install git gcc g++ cmake``` -# macOS (Ventura 13) +# macOS (13/14) ## 1. Install Xcode (Or any other IDE) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f23b72..c2fb9bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if(TARGET conf-static) return() endif() -project(conf VERSION 1.4.0 LANGUAGES C +project(conf VERSION 1.4.2 LANGUAGES C DESCRIPTION "Simple and fast multi-platform \ configuration file library (similar to .ini) " HOMEPAGE_URL "https://github.com/cfnptr/conf") diff --git a/Doxyfile b/Doxyfile index 62491f7..cced369 100644 --- a/Doxyfile +++ b/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = Conf # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v1.4.1 +PROJECT_NUMBER = v1.4.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/README.md b/README.md index fa06140..32cb63a 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,13 @@ void confReaderExampleC() ConfResult confResult = createFileConfReader("settings.txt", &confReader, NULL); if (confResult != SUCCESS_CONF_RESULT) abort(); - int64_t someValue = 0; - if (getConfReaderInt(confReader, "someValue", &someValue)) - { - // use value... - } + int64_t someValue = 0; + if (getConfReaderInt(confReader, "someValue", &someValue)) + { + // use value... + } - destroyConfReader(confReader); + destroyConfReader(confReader); } void confWriterExampleC() diff --git a/docs/annotated.html b/docs/annotated.html index dc1f3dd..41d1749 100644 --- a/docs/annotated.html +++ b/docs/annotated.html @@ -3,7 +3,7 @@ - + Conf: Data Structures @@ -12,9 +12,9 @@ - + @@ -27,7 +27,7 @@ -
Conf v1.4.1 +
Conf v1.4.2
@@ -35,7 +35,12 @@
- + +