mirror of
https://github.com/dvorka/hstr.git
synced 2025-09-07 21:14:21 +08:00
Getting ready for 1.25 release.
This commit is contained in:
parent
c9c992b6fb
commit
9f1d9bbf99
9 changed files with 14 additions and 10 deletions
|
@ -1,3 +1,7 @@
|
|||
2018-05-06 Martin Dvorak <martin.dvorak@mindforger.com>
|
||||
|
||||
* Released v1.25 - Community contributed fixes and improvements. Keyword search is default.
|
||||
|
||||
2018-01-03 Martin Dvorak <martin.dvorak@mindforger.com>
|
||||
|
||||
* Released v1.24 - Reproducible build and stabilization.
|
||||
|
|
2
PKGBUILD
2
PKGBUILD
|
@ -3,7 +3,7 @@
|
|||
# Contributor: Filip Szymański <fszymanski at, fedoraproject.org>
|
||||
|
||||
pkgname=hstr
|
||||
pkgver=1.24
|
||||
pkgver=1.25
|
||||
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')
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
AC_PREREQ([2.69])
|
||||
|
||||
AC_INIT(hh, 1.24, martin.dvorak@mindforger.com)
|
||||
AC_INIT(hh, 1.25, martin.dvorak@mindforger.com)
|
||||
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile])
|
||||
|
||||
# Checks for src dir existence.
|
||||
|
|
2
dist/debian-env.sh
vendored
2
dist/debian-env.sh
vendored
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Debian release: https://wiki.debian.org/IntroDebianPackaging
|
||||
|
||||
export HHVERSION="1.24.0"
|
||||
export HHVERSION="1.25.0"
|
||||
#export HHFULLVERSION=${HHVERSION}-1.0 # NMU upload
|
||||
export HHFULLVERSION=${HHVERSION}-1 # mantainer upload
|
||||
export HH=hstr_${HHVERSION}
|
||||
|
|
2
dist/github-env.sh
vendored
2
dist/github-env.sh
vendored
|
@ -4,6 +4,6 @@ export NOW=`date +%Y-%m-%d--%H-%M-%S`
|
|||
export GH_RELEASE_DIR=~/p/hstr/release
|
||||
export GH_DISTRO_DIR=${GH_RELEASE_DIR}/release-${NOW}
|
||||
|
||||
export HHVERSION="1.24"
|
||||
export HHVERSION="1.25"
|
||||
|
||||
# eof
|
||||
|
|
2
dist/ubuntu-add-new-distro-base.sh
vendored
2
dist/ubuntu-add-new-distro-base.sh
vendored
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# boostrap new OR refresh distribution base for pbuilder
|
||||
export DISTRO=beaver
|
||||
export DISTRO=bionic
|
||||
|
||||
sudo pbuilder --create $DISTRO
|
||||
rm -vf ~/pbuilder/${DISTRO}-base.tgz
|
||||
|
|
6
dist/ubuntu-make-all-distros.sh
vendored
6
dist/ubuntu-make-all-distros.sh
vendored
|
@ -16,11 +16,11 @@ then
|
|||
fi
|
||||
|
||||
export HHBZRMSG="Top and bottom prompt."
|
||||
export VERSION=1.24.
|
||||
export MINOR=8
|
||||
export VERSION=1.25.
|
||||
export MINOR=1
|
||||
|
||||
# precise quantal saucy precise utopic vivid wily yakkety zesty / trusty xenial artful bionic
|
||||
for DISTRO in bionic
|
||||
for DISTRO in trusty xenial artful bionic
|
||||
do
|
||||
|
||||
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
|
||||
|
|
2
pad.xml
2
pad.xml
|
@ -51,7 +51,7 @@
|
|||
</Company_Info>
|
||||
<Program_Info>
|
||||
<Program_Name>HSTR</Program_Name>
|
||||
<Program_Version>1.24</Program_Version>
|
||||
<Program_Version>1.25</Program_Version>
|
||||
<Program_Release_Month>09</Program_Release_Month>
|
||||
<Program_Release_Day>30</Program_Release_Day>
|
||||
<Program_Release_Year>2018</Program_Release_Year>
|
||||
|
|
|
@ -247,7 +247,7 @@ static const char *HELP_STRING=
|
|||
"\n";
|
||||
|
||||
static const char *VERSION_STRING=
|
||||
"hh version \"1.24\" (2018-02-18T11:00:00)"
|
||||
"hh version \"1.25\" (2018-05-06T19:30:00)"
|
||||
"\n";
|
||||
|
||||
// TODO help screen - curses window (tig)
|
||||
|
|
Loading…
Add table
Reference in a new issue