diff --git a/Changelog b/Changelog index 0c2682e..facfc26 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,10 @@ -2018-08-21 Martin Dvorak +2018-08-28 Martin Dvorak -* Released v1.28.0 - All memory leaks fixed, add Bash autocomplete. + * Released v2.0.0 - Major release which finally confusing hstr/hh ambuiguity by choosing + hstr to be the only name used - hh becomes just a shell alias. It also introduces backward + incompatible changes: all HH_ starting environment variables are changed to HSTR_, similarly + configuration files and distributions package names. + Additional improvements: all memory leaks fixed, Bash autocomplete added. 2018-08-13 Martin Dvorak diff --git a/PKGBUILD b/PKGBUILD index 3d4a50c..04c15a7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Filip SzymaƄski pkgname=hstr -pkgver=1.28 +pkgver=2.0 pkgrel=1 pkgdesc="A command line utility that brings improved BASH command completion from the history. It aims to make completion easier and more efficient than Ctrl-r." arch=('any') diff --git a/src/hstr.c b/src/hstr.c index 3a87734..fcf8e6a 100644 --- a/src/hstr.c +++ b/src/hstr.c @@ -133,7 +133,7 @@ // major.minor.revision static const char* VERSION_STRING= - "hh version \"1.28.0\" (2018-08-21T13:00:00)" + "hstr version \"2.0.0\" (2018-08-28T13:30:00)" "\n"; static const char* HSTR_VIEW_LABELS[]={ @@ -246,7 +246,7 @@ static const char* INSTALL_ZSH_STRING= "\n\n"; static const char* HELP_STRING= - "Usage: hh [option] [arg1] [arg2]..." + "Usage: hstr [option] [arg1] [arg2]..." "\nShell history suggest box:" "\n" "\n --favorites -f ... show favorites view" @@ -302,7 +302,7 @@ typedef struct { unsigned char theme; bool noRawHistoryDuplicates; - bool keepPage; // do NOT clear page w/ selection on HH exit + bool keepPage; // do NOT clear page w/ selection on HSTR exit bool noConfirm; // do NOT ask for confirmation on history entry delete bool verboseKill; // write a message on delete of the last command in history int bigKeys;