-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing bug #237 by making build repeatable (removal of compiler gener…
…ated build number) + 1.24 update.
- Loading branch information
Showing
9 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2018-01-03 Martin Dvorak <[email protected]> | ||
|
||
* Released v1.24 - Reproducible build and stabilization. | ||
|
||
2017-09-30 Martin Dvorak <[email protected]> | ||
|
||
* Released v1.23 - WLS (Bash on Ubuntu on Windows 10) support | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# configure.ac Autoconf configuration file | ||
# process this file with autoconf to produce a configure script | ||
# | ||
# Copyright (C) 2014-2017 Martin Dvorak <[email protected]> | ||
# Copyright (C) 2014-2018 Martin Dvorak <[email protected]> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
@@ -17,7 +17,7 @@ | |
|
||
AC_PREREQ([2.69]) | ||
|
||
AC_INIT(hh, 1.23, [email protected]) | ||
AC_INIT(hh, 1.24, [email protected]) | ||
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) | ||
|
||
# Checks for src dir existence. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<!-- | ||
pad.xml PAD file for HSTR | ||
Copyright (C) 2015-2017 Martin Dvorak <[email protected]> | ||
Copyright (C) 2015-2018 Martin Dvorak <[email protected]> | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
|
@@ -51,10 +51,10 @@ | |
</Company_Info> | ||
<Program_Info> | ||
<Program_Name>HSTR</Program_Name> | ||
<Program_Version>1.23</Program_Version> | ||
<Program_Version>1.24</Program_Version> | ||
<Program_Release_Month>09</Program_Release_Month> | ||
<Program_Release_Day>30</Program_Release_Day> | ||
<Program_Release_Year>2017</Program_Release_Year> | ||
<Program_Release_Year>2018</Program_Release_Year> | ||
<Program_Cost_Dollars /> | ||
<Program_Cost_Other_Code>USD</Program_Cost_Other_Code> | ||
<Program_Cost_Other /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
hstr.c BASH history completion utility | ||
Copyright (C) 2014-2016 Martin Dvorak <[email protected]> | ||
Copyright (C) 2014-2018 Martin Dvorak <[email protected]> | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
|
@@ -235,8 +235,7 @@ static const char *HELP_STRING= | |
"\n"; | ||
|
||
static const char *VERSION_STRING= | ||
"hh version \"1.23\"" | ||
"\n build \""__DATE__" " __TIME__"\"" | ||
"hh version \"1.24\" (2018-01-03T12:19:00)" | ||
"\n"; | ||
|
||
// TODO help screen - curses window (tig) | ||
|