Skip to content

Commit

Permalink
1.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pruje committed Jan 19, 2019
1 parent b2e211a commit fbf3506
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
This project adheres to [Semantic Versioning](http://semver.org/).

## 1.10.0 (2019-01-19)
- New functions: `lb_getargs` and `lb_getopt` to improve arguments parsing in scripts
- New quiet mode to disable displays (+ editable variable `$lb_quietmode`)
- Improve documentation and examples

## 1.9.2 (2018-08-26)
- Detect `sed` version to make `lb_edit()` work on any system
- Some context variables are now read-only
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017-2018 Jean Prunneaux http://jean.prunneaux.com
Copyright (c) 2017-2019 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
Expand Down
4 changes: 2 additions & 2 deletions inc/libbash_gui.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
' # Functions for display GUI tools using VBScript #
' # #
' # MIT License #
' # Copyright (c) 2017-2018 Jean Prunneaux #
' # Copyright (c) 2017-2019 Jean Prunneaux #
' # Website: https://github.com/pruje/libbash.sh #
' # #
' # Version 1.9.2 (2018-08-26) #
' # Version 1.10.0 (2019-01-19) #
' # #
' ########################################################

Expand Down
6 changes: 3 additions & 3 deletions libbash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
# A library of useful functions for bash developers #
# #
# MIT License #
# Copyright (c) 2017-2018 Jean Prunneaux #
# Copyright (c) 2017-2019 Jean Prunneaux #
# Website: https://github.com/pruje/libbash.sh #
# #
# Version 1.9.2 (2018-08-26) #
# Version 1.10.0 (2018-01-19) #
# #
########################################################

declare -r lb_version=1.10.0-beta.1
declare -r lb_version=1.10.0

# Index
#
Expand Down
8 changes: 4 additions & 4 deletions libbash_gui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
# Functions to extend bash scripts to GUI tools #
# #
# MIT License #
# Copyright (c) 2017-2018 Jean Prunneaux #
# Copyright (c) 2017-2019 Jean Prunneaux #
# Website: https://github.com/pruje/libbash.sh #
# #
# Version 1.9.2 (2018-08-26) #
# Version 1.10.0 (2019-01-19) #
# #
########################################################

Expand Down Expand Up @@ -1277,7 +1277,7 @@ EOF)
[ -z "$choice" ] && return 2
# return windows paths
if [ "$lb_current_os" == "Windows" ] ; then
if [ "$lb_current_os" == Windows ] ; then
choice=$(lb_realpath "$choice") || return 3
fi
Expand Down Expand Up @@ -1450,7 +1450,7 @@ EOF)
[ -z "$choice" ] && return 2
# return windows paths
if [ "$lb_current_os" == "Windows" ] ; then
if [ "$lb_current_os" == Windows ] ; then
# beware the save mode where file does not exists!
if $save_mode ; then
Expand Down
2 changes: 1 addition & 1 deletion locales/fr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file is part of libbash.sh (https://github.com/pruje/libbash.sh)
#
# MIT License
# Copyright (c) 2017-2018 Jean Prunneaux
# Copyright (c) 2017-2019 Jean Prunneaux
#

# translation for default labels
Expand Down

0 comments on commit fbf3506

Please sign in to comment.