- Bumped version to 1.1.0

This commit is contained in:
Paul Beckingham 2008-06-07 13:23:59 -04:00
parent e025ecc3d4
commit f2ba9f796b
5 changed files with 13 additions and 5 deletions

View file

@ -4,4 +4,5 @@ Principal Author:
With thanks to: With thanks to:
Eugene Kramer Eugene Kramer
SK SK
Damian Glenny

View file

@ -9,6 +9,9 @@ represents a feature release, and the 3 represents patch.
1.1.0 (?) 1.1.0 (?)
- Command line specification of alternate .taskrc file - Command line specification of alternate .taskrc file
- "blanklines" configuration to stop displaying unnecessary white
space and thus work better on small-screen devices
+ Better formatting of "task tags" output
1.0.2 (?) 1.0.2 (?)

2
NEWS
View file

@ -1,4 +1,4 @@
Welcome to Task 1.0.1. Welcome to Task 1.1.0.
Task has been built and tested on the following configurations: Task has been built and tested on the following configurations:

View file

@ -1,4 +1,4 @@
Task program tutorial, for version 1.0.1 Task program tutorial, for version 1.1.0
---------------------------------------- ----------------------------------------
This guide shows how to quickly set up the task program, and become proficient This guide shows how to quickly set up the task program, and become proficient
@ -22,8 +22,8 @@ transcript illustrates a typical installation:
% ls % ls
task-1.0.1.tar.gz task-1.0.1.tar.gz
% gunzip task-1.0.1.tar.gz % gunzip task-1.1.0.tar.gz
% tar xf task-1.0.1.tar % tar xf task-1.1.0.tar
% cd task-1.0.1 % cd task-1.0.1
% ./configure % ./configure
... ...
@ -621,6 +621,10 @@ Configuring Task
curses Determines whether task uses ncurses to establish the curses Determines whether task uses ncurses to establish the
size of the window you are using, for text wrapping. size of the window you are using, for text wrapping.
blanklines May be "on" or "off". Prevents the display of
unnecessary blank lines so that task makes better use
screen real estate on small-screened devices.
color May be "on" or "off". Determines whether task uses color May be "on" or "off". Determines whether task uses
color. color.

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61) AC_PREREQ(2.61)
AC_INIT(task, 1.0.1, bugs@beckingham.net) AC_INIT(task, 1.1.0, bugs@beckingham.net)
AM_INIT_AUTOMAKE AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/task.cpp]) AC_CONFIG_SRCDIR([src/task.cpp])
AC_CONFIG_HEADER([auto.h]) AC_CONFIG_HEADER([auto.h])