diff --git a/ChangeLog b/ChangeLog index b0ceb13..490f100 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +0.75 +----- +- Fix various issues with 0.74 +- Install manpage by default + 0.74 ----- - Use multi-sized PNG icons instead of xpm diff --git a/Makefile.am b/Makefile.am index 2414a1b..864c150 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,4 +6,4 @@ EXTRA_DIST = \ README \ NEWS \ TODO \ - COPYING + COPYING diff --git a/Makefile.in b/Makefile.in index 80151b6..bb93590 100644 --- a/Makefile.in +++ b/Makefile.in @@ -308,7 +308,7 @@ EXTRA_DIST = \ README \ NEWS \ TODO \ - COPYING + COPYING all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive diff --git a/README b/README index 7c05d49..471b52a 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -xsensors 0.74 - Mystro256 fork +xsensors 0.75 - Mystro256 fork --------------------------------------- This is another release of xsensors, a program designed to display all diff --git a/configure b/configure index a5791a8..67fdab3 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for xsensors 0.74. +# Generated by GNU Autoconf 2.69 for xsensors 0.75. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -577,8 +577,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='xsensors' PACKAGE_TARNAME='xsensors' -PACKAGE_VERSION='0.74' -PACKAGE_STRING='xsensors 0.74' +PACKAGE_VERSION='0.75' +PACKAGE_STRING='xsensors 0.75' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1285,7 +1285,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 xsensors 0.74 to adapt to many kinds of systems. +\`configure' configures xsensors 0.75 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1351,7 +1351,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of xsensors 0.74:";; + short | recursive ) echo "Configuration of xsensors 0.75:";; esac cat <<\_ACEOF @@ -1452,7 +1452,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -xsensors configure 0.74 +xsensors configure 0.75 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1750,7 +1750,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 xsensors $as_me 0.74, which was +It was created by xsensors $as_me 0.75, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2614,7 +2614,7 @@ fi # Define the identity of the package. PACKAGE='xsensors' - VERSION='0.74' + VERSION='0.75' cat >>confdefs.h <<_ACEOF @@ -5526,7 +5526,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 xsensors $as_me 0.74, which was +This file was extended by xsensors $as_me 0.75, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -5592,7 +5592,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="\\ -xsensors config.status 0.74 +xsensors config.status 0.75 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index a11cd18..f9b91ac 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AM_CONFIG_HEADER(config.h) -AC_INIT(xsensors, 0.74) +AC_INIT(xsensors, 0.75) AC_CONFIG_SRCDIR(src/main.c) AM_INIT_AUTOMAKE @@ -16,7 +16,7 @@ AC_HEADER_STDC dnl Checks for the sensors library. AC_CHECK_LIB(sensors, sensors_init,[], - AC_MSG_ERROR(You need the sensors library)) + AC_MSG_ERROR(You need the sensors library)) AC_CHECK_HEADERS([sensors/sensors.h sensors/error.h])