From f2ba9f796b856fdaa15da4d48148dd36a794a7ae Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 7 Jun 2008 13:23:59 -0400 Subject: [PATCH] - Bumped version to 1.1.0 --- AUTHORS | 1 + ChangeLog | 3 +++ NEWS | 2 +- TUTORIAL | 10 +++++++--- configure.ac | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 81e64a681..457a161eb 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,4 +4,5 @@ Principal Author: With thanks to: Eugene Kramer SK + Damian Glenny diff --git a/ChangeLog b/ChangeLog index e30053d51..8a30adcdd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,9 @@ represents a feature release, and the 3 represents patch. 1.1.0 (?) - 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 (?) diff --git a/NEWS b/NEWS index 770e89b1d..d39eabe91 100644 --- a/NEWS +++ b/NEWS @@ -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: diff --git a/TUTORIAL b/TUTORIAL index 22b9e9019..ef7a9e5d9 100644 --- a/TUTORIAL +++ b/TUTORIAL @@ -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 @@ -22,8 +22,8 @@ transcript illustrates a typical installation: % ls task-1.0.1.tar.gz - % gunzip task-1.0.1.tar.gz - % tar xf task-1.0.1.tar + % gunzip task-1.1.0.tar.gz + % tar xf task-1.1.0.tar % cd task-1.0.1 % ./configure ... @@ -621,6 +621,10 @@ Configuring Task curses Determines whether task uses ncurses to establish the 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. diff --git a/configure.ac b/configure.ac index 85e8affb4..2e53ef24d 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. 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 AC_CONFIG_SRCDIR([src/task.cpp]) AC_CONFIG_HEADER([auto.h])