File configure.ac changed (mode: 100644) (index b90276a..4a83ac1) |
1 |
1 |
# configure.ac Autoconf configuration file |
# configure.ac Autoconf configuration file |
2 |
2 |
# process this file with autoconf to produce a configure script |
# process this file with autoconf to produce a configure script |
3 |
3 |
# |
# |
4 |
|
# Copyright (C) 2014-2017 Martin Dvorak <martin.dvorak@mindforger.com> |
|
|
4 |
|
# Copyright (C) 2014-2018 Martin Dvorak <martin.dvorak@mindforger.com> |
5 |
5 |
# |
# |
6 |
6 |
# Licensed under the Apache License, Version 2.0 (the "License"); |
# Licensed under the Apache License, Version 2.0 (the "License"); |
7 |
7 |
# you may not use this file except in compliance with the License. |
# you may not use this file except in compliance with the License. |
|
17 |
17 |
|
|
18 |
18 |
AC_PREREQ([2.69]) |
AC_PREREQ([2.69]) |
19 |
19 |
|
|
20 |
|
AC_INIT(hh, 1.23, martin.dvorak@mindforger.com) |
|
|
20 |
|
AC_INIT(hh, 1.24, martin.dvorak@mindforger.com) |
21 |
21 |
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) |
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) |
22 |
22 |
|
|
23 |
23 |
# Checks for src dir existence. |
# Checks for src dir existence. |
File dist/debian-env.sh changed (mode: 100755) (index ae1cfb1..0dc4ea4) |
2 |
2 |
|
|
3 |
3 |
# Debian release: https://wiki.debian.org/IntroDebianPackaging |
# Debian release: https://wiki.debian.org/IntroDebianPackaging |
4 |
4 |
|
|
5 |
|
export HHVERSION="1.23.0" |
|
|
5 |
|
export HHVERSION="1.24.0" |
6 |
6 |
#export HHFULLVERSION=${HHVERSION}-1.0 # NMU upload |
#export HHFULLVERSION=${HHVERSION}-1.0 # NMU upload |
7 |
7 |
export HHFULLVERSION=${HHVERSION}-1 # mantainer upload |
export HHFULLVERSION=${HHVERSION}-1 # mantainer upload |
8 |
8 |
export HH=hstr_${HHVERSION} |
export HH=hstr_${HHVERSION} |
File dist/ubuntu-make-all-distros.sh changed (mode: 100755) (index 193f454..3d2421f) |
... |
... |
then |
16 |
16 |
fi |
fi |
17 |
17 |
|
|
18 |
18 |
export HHBZRMSG="Top and bottom prompt." |
export HHBZRMSG="Top and bottom prompt." |
19 |
|
export VERSION=1.23. |
|
20 |
|
export MINOR=1 |
|
|
19 |
|
export VERSION=1.24. |
|
20 |
|
export MINOR=0 |
21 |
21 |
|
|
22 |
|
# precise quantal saucy precise utopic vivid wily yakkety / trusty xenial |
|
23 |
|
for DISTRO in zesty |
|
|
22 |
|
# precise quantal saucy precise utopic vivid wily yakkety / trusty xenial zesty artful |
|
23 |
|
for DISTRO in trustry xenial zesty artful |
24 |
24 |
do |
do |
25 |
25 |
|
|
26 |
26 |
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}" |
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}" |
File pad.xml changed (mode: 100644) (index e2f5077..03a053a) |
2 |
2 |
<!--
|
<!--
|
3 |
3 |
pad.xml PAD file for HSTR
|
pad.xml PAD file for HSTR
|
4 |
4 |
|
|
5 |
|
Copyright (C) 2015-2017 Martin Dvorak <martin.dvorak@mindforger.com>
|
|
|
5 |
|
Copyright (C) 2015-2018 Martin Dvorak <martin.dvorak@mindforger.com>
|
6 |
6 |
|
|
7 |
7 |
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8 |
8 |
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
|
51 |
51 |
</Company_Info>
|
</Company_Info>
|
52 |
52 |
<Program_Info>
|
<Program_Info>
|
53 |
53 |
<Program_Name>HSTR</Program_Name>
|
<Program_Name>HSTR</Program_Name>
|
54 |
|
<Program_Version>1.23</Program_Version>
|
|
|
54 |
|
<Program_Version>1.24</Program_Version>
|
55 |
55 |
<Program_Release_Month>09</Program_Release_Month>
|
<Program_Release_Month>09</Program_Release_Month>
|
56 |
56 |
<Program_Release_Day>30</Program_Release_Day>
|
<Program_Release_Day>30</Program_Release_Day>
|
57 |
|
<Program_Release_Year>2017</Program_Release_Year>
|
|
|
57 |
|
<Program_Release_Year>2018</Program_Release_Year>
|
58 |
58 |
<Program_Cost_Dollars />
|
<Program_Cost_Dollars />
|
59 |
59 |
<Program_Cost_Other_Code>USD</Program_Cost_Other_Code>
|
<Program_Cost_Other_Code>USD</Program_Cost_Other_Code>
|
60 |
60 |
<Program_Cost_Other />
|
<Program_Cost_Other />
|
File src/hstr.c changed (mode: 100644) (index 2dc6a67..a1059d8) |
1 |
1 |
/* |
/* |
2 |
2 |
hstr.c BASH history completion utility |
hstr.c BASH history completion utility |
3 |
3 |
|
|
4 |
|
Copyright (C) 2014-2016 Martin Dvorak <martin.dvorak@mindforger.com> |
|
|
4 |
|
Copyright (C) 2014-2018 Martin Dvorak <martin.dvorak@mindforger.com> |
5 |
5 |
|
|
6 |
6 |
Licensed under the Apache License, Version 2.0 (the "License"); |
Licensed under the Apache License, Version 2.0 (the "License"); |
7 |
7 |
you may not use this file except in compliance with the License. |
you may not use this file except in compliance with the License. |
|
... |
... |
static const char *HELP_STRING= |
235 |
235 |
"\n"; |
"\n"; |
236 |
236 |
|
|
237 |
237 |
static const char *VERSION_STRING= |
static const char *VERSION_STRING= |
238 |
|
"hh version \"1.23\"" |
|
239 |
|
"\n build \""__DATE__" " __TIME__"\"" |
|
|
238 |
|
"hh version \"1.24\" (2018-01-03T12:19:00)" |
240 |
239 |
"\n"; |
"\n"; |
241 |
240 |
|
|
242 |
241 |
// TODO help screen - curses window (tig) |
// TODO help screen - curses window (tig) |