Skip to content

Commit

Permalink
hh2hstr changelog fixed #309
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorka committed Aug 26, 2018
1 parent b3de7ee commit 38afeb1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
2018-08-21 Martin Dvorak <[email protected]>
2018-08-28 Martin Dvorak <[email protected]>

* 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 <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
6 changes: 3 additions & 3 deletions src/hstr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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[]={
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 38afeb1

Please sign in to comment.