Skip to content

Commit

Permalink
Merge branch 'hotfix-delay-calculation'
Browse files Browse the repository at this point in the history
  • Loading branch information
saitoha committed Jul 31, 2014
2 parents 22343fc + 39cd46d commit afa9278
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for seq2gif 0.10.1.
# Generated by GNU Autoconf 2.69 for seq2gif 0.10.2.
#
# Report bugs to <user@zuse.jp>.
#
Expand Down Expand Up @@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='seq2gif'
PACKAGE_TARNAME='seq2gif'
PACKAGE_VERSION='0.10.1'
PACKAGE_STRING='seq2gif 0.10.1'
PACKAGE_VERSION='0.10.2'
PACKAGE_STRING='seq2gif 0.10.2'
PACKAGE_BUGREPORT='user@zuse.jp'
PACKAGE_URL=''

Expand Down Expand Up @@ -1269,7 +1269,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures seq2gif 0.10.1 to adapt to many kinds of systems.
\`configure' configures seq2gif 0.10.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1335,7 +1335,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of seq2gif 0.10.1:";;
short | recursive ) echo "Configuration of seq2gif 0.10.2:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1433,7 +1433,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
seq2gif configure 0.10.1
seq2gif configure 0.10.2
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1986,7 +1986,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by seq2gif $as_me 0.10.1, which was
It was created by seq2gif $as_me 0.10.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2852,7 +2852,7 @@ fi
# Define the identity of the package.
PACKAGE='seq2gif'
VERSION='0.10.1'
VERSION='0.10.2'
cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -5465,7 +5465,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by seq2gif $as_me 0.10.1, which was
This file was extended by seq2gif $as_me 0.10.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -5531,7 +5531,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
seq2gif config.status 0.10.1
seq2gif config.status 0.10.2
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([seq2gif], [0.10.1], [user@zuse.jp])
AC_INIT([seq2gif], [0.10.2], [user@zuse.jp])
AC_CONFIG_SRCDIR([color.h])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([foreign])
Expand Down
2 changes: 1 addition & 1 deletion main.c
Expand Up @@ -564,7 +564,7 @@ int main(int argc, char *argv[])
}
parse(&term, obuf, nread, &dirty);
if (term.esc.state != STATE_DCS || dirty) {
delay += prev - now;
delay += now - prev;
refresh(&pb, &term);

/* take screenshot */
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "seq2gif",
"version": "0.10.1",
"version": "0.10.2",
"repo": "saitoha/seq2gif",
"description": "@PACKAGE_DESCRIPTION@",
"keywords": ["terminal", "gif", "ttyrec"],
Expand Down

0 comments on commit afa9278

Please sign in to comment.