From 286868933e5cae68b7baf63515dc975a604bc1e6 Mon Sep 17 00:00:00 2001 From: Netkas Date: Tue, 11 Jul 2023 13:55:57 -0400 Subject: [PATCH] Updated CHANGELOG.md --- CHANGELOG.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e207ec8..70c44d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.1] - Unreleased ### Added - * ConfigurationLib will now attempt to load configuration files from Environment Variables if they are set, for example + * ConfigurationLib will now attempt to load configuration files from Environment Variables if they are set, for example, if `com.example.application` wants to load `ExampleConfiguration` it will first check if `CONFIGLIB_EXAMPLECONFIGURATION` - is set, and if so, load that file instead of the default `example-configuration.yml` file. If the file is not found, - it will resort to its default behavior. You can either load an original json configuration file which is usually - located at `\var\ncc\data\net.nosial.configlib` as one of the .conf files, or you can load a yml which is the same - one you usually use to import or edit configurations. + is set, and if so, load that file instead of going through the default process of loading the default configuration file. + If the file is not found, it will resort to its default behavior. You can either load an original json configuration + file which is usually located at `\var\ncc\data\net.nosial.configlib` as one of the .conf files, or you can load a yml + which is the same one you usually use to import or edit configurations. But the file extension must be either `.json`, + `.yml` or `.yaml`. If you want to load a file from a different location. ## [1.0.0] - 2023-02-23