File | Lines added | Lines deleted |
---|---|---|
dist/debian-env.sh | 1 | 1 |
dist/ubuntu-make-all-distros.sh | 1 | 1 |
pad.xml | 1 | 1 |
src/hstr.c | 0 | 6 |
File dist/debian-env.sh changed (mode: 100755) (index 25e108b..5e28cdd) | |||
2 | 2 | ||
3 | 3 | # Debian release: https://wiki.debian.org/IntroDebianPackaging | # Debian release: https://wiki.debian.org/IntroDebianPackaging |
4 | 4 | ||
5 | export HHVERSION="1.19.0" | ||
5 | export HHVERSION="1.20.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 07123e8..282583d) | |||
10 | 10 | # - run this script from ~/p/hstr/launchpad | # - run this script from ~/p/hstr/launchpad |
11 | 11 | ||
12 | 12 | export HHBZRMSG="Buffer overflow fix of regexp mode." | export HHBZRMSG="Buffer overflow fix of regexp mode." |
13 | export VERSION=1.19. | ||
13 | export VERSION=1.20. | ||
14 | 14 | export MINOR=1 | export MINOR=1 |
15 | 15 | ||
16 | 16 | # precise quantal saucy precise utopic / trusty vivid wily | # precise quantal saucy precise utopic / trusty vivid wily |
File pad.xml changed (mode: 100644) (index 8f60777..42a2daa) | |||
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.19</Program_Version> | ||
54 | <Program_Version>1.20</Program_Version> | ||
55 | 55 | <Program_Release_Month>05</Program_Release_Month> | <Program_Release_Month>05</Program_Release_Month> |
56 | 56 | <Program_Release_Day>09</Program_Release_Day> | <Program_Release_Day>09</Program_Release_Day> |
57 | 57 | <Program_Release_Year>2015</Program_Release_Year> | <Program_Release_Year>2015</Program_Release_Year> |
File src/hstr.c changed (mode: 100644) (index 0ab8e6f..1c27c91) | |||
15 | 15 | See the License for the specific language governing permissions and | See the License for the specific language governing permissions and |
16 | 16 | limitations under the License. | limitations under the License. |
17 | 17 | */ | */ |
18 | /* | ||
19 | Call graph: | ||
20 | main() | ||
21 | hstr_main() | ||
22 | loop_to_select() | ||
23 | */ | ||
24 | 18 | ||
25 | 19 | #define _GNU_SOURCE | #define _GNU_SOURCE |
26 | 20 |