hh2hstr changelog fixed #309

This commit is contained in:
Martin Dvorak 2018-08-22 08:29:42 +02:00
parent b3de7eedd8
commit 38afeb1408
3 changed files with 10 additions and 6 deletions

View file

@ -1,6 +1,10 @@
2018-08-21 Martin Dvorak <martin.dvorak@mindforger.com>
2018-08-28 Martin Dvorak <martin.dvorak@mindforger.com>
* 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 <martin.dvorak@mindforger.com>

View file

@ -3,7 +3,7 @@
# Contributor: Filip Szymański <fszymanski at, fedoraproject.org>
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')

View file

@ -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;