diff --git a/.gitignore b/.gitignore index aa09b69..1b01184 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ build -CMakeLists.txt.user +CMakeLists.txt.user* CMakeFiles diff --git a/CHANGELOG.md b/CHANGELOG.md index 99ce789..1be5ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [Unreleased] +- License information update + ## [1.0.1] - 06-10-2017 ### Changes - Compatibility with residue v1.2.0 diff --git a/LICENSE b/LICENSE index 1d65b3a..b5b6bf8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2017 Muflihun Labs +Copyright 2017-present Muflihun Labs https://github.com/muflihun/ https://muflihun.com diff --git a/README.md b/README.md index c1de052..e64e396 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This section shows you steps to install residue C++ client on your machine. ## Dependencies * C++11 (or higher) - * Boost v1.59 or higher [Components: [system](http://www.boost.org/doc/libs/1_62_0/libs/system/doc/index.html)] + * Boost v1.53 or higher [Components: [system](http://www.boost.org/doc/libs/1_62_0/libs/system/doc/index.html)] * [Easylogging++](https://github.com/muflihun/easyloggingpp) v9.95.0 * [Crypto++](https://www.cryptopp.com/) v5.6.5+ [with Pem Pack](https://raw.githubusercontent.com/muflihun/muflihun.github.io/master/downloads/pem_pack.zip) * [CMake Toolchains](https://cmake.org/) v2.8.12 @@ -149,7 +149,7 @@ This will essentially join all the object files from both the libraries (no name ## License ``` -Copyright 2017 Muflihun Labs +Copyright 2017-present Muflihun Labs https://github.com/muflihun/ https://muflihun.github.io diff --git a/samples/detailed-cmake/src/app.cc b/samples/detailed-cmake/src/app.cc index 176cf44..3b8fd55 100644 --- a/samples/detailed-cmake/src/app.cc +++ b/samples/detailed-cmake/src/app.cc @@ -27,7 +27,7 @@ int main(int argc, char* argv[]) { std::cout << Residue::info() << std::endl; -#if 1 // minimal sample with unknown logger +#if 0 // minimal sample with unknown logger try { Residue::connect("residue-demo.muflihun.com", Residue::DEFAULT_PORT); } catch (const ResidueException& e) { diff --git a/samples/minimal/conf.json b/samples/minimal/conf.json index c3a0d45..49c9c5c 100644 --- a/samples/minimal/conf.json +++ b/samples/minimal/conf.json @@ -1,5 +1,5 @@ { - "url": "residue-demo.muflihun.com:8777", + "url": "localhost:8777", "access_codes": [ { "logger_id": "sample-app", diff --git a/src/Residue.cc b/src/Residue.cc index f4a670d..8db120c 100644 --- a/src/Residue.cc +++ b/src/Residue.cc @@ -3,7 +3,9 @@ // // Official C++ client library for Residue logging server // -// Copyright (C) 2017 Muflihun Labs +// Copyright (C) 2017-present Muflihun Labs +// +// Author: @abumusamq // // https://muflihun.com // https://muflihun.github.io/residue