diff --git a/CHANGELOG.md b/CHANGELOG.md index 490f2f5..48338cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog This project adheres to [Semantic Versioning](http://semver.org/). +## 1.16.0 (2020-04-16) +### New features +- `lbg_choose_file` is now supported on Windows using PowerShell +- Multiple choices for `lbg_choose_option` is now supported on macOS +- `lb_get_config` can now read configs from stdin +- `mail` command is now supported for `lb_email` + +### Changes +- Removed unused variable `$lbg_path` +- Renamed translations variables (BE CAREFUL TO UPDATE YOUR OWN TRANSLATIONS, IF ANY) + ## 1.15.0 (2019-11-17) ### New features - `lbg_choose_option` now supports multiple choices with `-m` option diff --git a/LICENSE.md b/LICENSE.md index ed4262b..0982020 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017-2019 Jean Prunneaux http://jean.prunneaux.com +Copyright (c) 2017-2020 Jean Prunneaux http://jean.prunneaux.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/examples/demo.sh b/examples/demo.sh index 2687994..e18455a 100755 --- a/examples/demo.sh +++ b/examples/demo.sh @@ -3,7 +3,7 @@ # libbash.sh complete demo # # MIT License -# Copyright (c) 2017-2019 Jean Prunneaux +# Copyright (c) 2017-2020 Jean Prunneaux # Website: https://github.com/pruje/libbash.sh # diff --git a/inc/libbash_gui.vbs b/inc/libbash_gui.vbs index 35ac93d..07f90b3 100644 --- a/inc/libbash_gui.vbs +++ b/inc/libbash_gui.vbs @@ -4,7 +4,7 @@ ' # Functions for display GUI tools using VBScript # ' # # ' # MIT License # -' # Copyright (c) 2017-2019 Jean Prunneaux # +' # Copyright (c) 2017-2020 Jean Prunneaux # ' # Website: https://github.com/pruje/libbash.sh # ' # # ' ######################################################## diff --git a/libbash.sh b/libbash.sh index 824466a..65a6173 100644 --- a/libbash.sh +++ b/libbash.sh @@ -4,14 +4,14 @@ # A library of useful functions for bash developers # # # # MIT License # -# Copyright (c) 2017-2019 Jean Prunneaux # +# Copyright (c) 2017-2020 Jean Prunneaux # # Website: https://github.com/pruje/libbash.sh # # # -# Version 1.15.0 (2019-11-17) # +# Version 1.16.0 (2020-04-16) # # # ######################################################## -declare -r lb_version=1.16.0-beta.1 +declare -r lb_version=1.16.0 # Index # diff --git a/libbash_gui.sh b/libbash_gui.sh index c229fab..e46284d 100644 --- a/libbash_gui.sh +++ b/libbash_gui.sh @@ -4,10 +4,10 @@ # Functions to extend bash scripts to GUI tools # # # # MIT License # -# Copyright (c) 2017-2019 Jean Prunneaux # +# Copyright (c) 2017-2020 Jean Prunneaux # # Website: https://github.com/pruje/libbash.sh # # # -# Version 1.15.0 (2019-11-17) # +# Version 1.16.0 (2020-04-16) # # # ########################################################