Skip to content

Commit c0987d7

Browse files
committed
1.16.0 release
1 parent 287791f commit c0987d7

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22
This project adheres to [Semantic Versioning](http://semver.org/).
33

4+
## 1.16.0 (2020-04-16)
5+
### New features
6+
- `lbg_choose_file` is now supported on Windows using PowerShell
7+
- Multiple choices for `lbg_choose_option` is now supported on macOS
8+
- `lb_get_config` can now read configs from stdin
9+
- `mail` command is now supported for `lb_email`
10+
11+
### Changes
12+
- Removed unused variable `$lbg_path`
13+
- Renamed translations variables (BE CAREFUL TO UPDATE YOUR OWN TRANSLATIONS, IF ANY)
14+
415
## 1.15.0 (2019-11-17)
516
### New features
617
- `lbg_choose_option` now supports multiple choices with `-m` option

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017-2019 Jean Prunneaux http://jean.prunneaux.com
3+
Copyright (c) 2017-2020 Jean Prunneaux http://jean.prunneaux.com
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

examples/demo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# libbash.sh complete demo
44
#
55
# MIT License
6-
# Copyright (c) 2017-2019 Jean Prunneaux
6+
# Copyright (c) 2017-2020 Jean Prunneaux
77
# Website: https://github.com/pruje/libbash.sh
88
#
99

inc/libbash_gui.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
' # Functions for display GUI tools using VBScript #
55
' # #
66
' # MIT License #
7-
' # Copyright (c) 2017-2019 Jean Prunneaux #
7+
' # Copyright (c) 2017-2020 Jean Prunneaux #
88
' # Website: https://github.com/pruje/libbash.sh #
99
' # #
1010
' ########################################################

libbash.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
# A library of useful functions for bash developers #
55
# #
66
# MIT License #
7-
# Copyright (c) 2017-2019 Jean Prunneaux #
7+
# Copyright (c) 2017-2020 Jean Prunneaux #
88
# Website: https://github.com/pruje/libbash.sh #
99
# #
10-
# Version 1.15.0 (2019-11-17) #
10+
# Version 1.16.0 (2020-04-16) #
1111
# #
1212
########################################################
1313

14-
declare -r lb_version=1.16.0-beta.1
14+
declare -r lb_version=1.16.0
1515

1616
# Index
1717
#

libbash_gui.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
# Functions to extend bash scripts to GUI tools #
55
# #
66
# MIT License #
7-
# Copyright (c) 2017-2019 Jean Prunneaux #
7+
# Copyright (c) 2017-2020 Jean Prunneaux #
88
# Website: https://github.com/pruje/libbash.sh #
99
# #
10-
# Version 1.15.0 (2019-11-17) #
10+
# Version 1.16.0 (2020-04-16) #
1111
# #
1212
########################################################
1313

0 commit comments

Comments
 (0)