Preparing v0.2.3 v0.2.3
authorviric@llimona
Tue, 27 Mar 2007 23:29:56 +0200
changeset 58 3c492266923e
parent 55 678ca291d545
child 59 7fb32280bc4f
Preparing v0.2.3
TODO
main.c
--- a/TODO	Tue Mar 27 23:14:58 2007 +0200
+++ b/TODO	Tue Mar 27 23:29:56 2007 +0200
@@ -4,6 +4,12 @@
  - Allow sending the output by mail
  - Allow gzipping the output
  - Allow killing 'ts' in a nice way.
+v0.2.3:
+ -* '-nf' doesn't leave the job in 'finished' state
+ -* Fixed a bug in -r
+ -* '-u' implemented. For altering the queue order.
+ -* '-w' returns the waited errorlevel
+ -* '-w' returns the waited errorlevel
 v0.2.1:
  -* Fixed a bug in the wait-notifications.
  -* Improved the compilation, including almost all the proper files.
--- a/main.c	Tue Mar 27 23:14:58 2007 +0200
+++ b/main.c	Tue Mar 27 23:29:56 2007 +0200
@@ -23,7 +23,7 @@
 /* Allocated in get_command() */
 char *new_command;
 
-static char version[] = "Task Spooler v0.2.1 - a task queue system for the unix user.\n"
+static char version[] = "Task Spooler v0.2.3 - a task queue system for the unix user.\n"
 "Copyright (C) 2007  Lluis Batlle i Rossell";
 
 static void default_command_line()
@@ -233,7 +233,7 @@
 
 static void set_my_env()
 {
-    char tmp[] = "POSIXLY_CORRECT=YES";
+    static char tmp[] = "POSIXLY_CORRECT=YES";
     putenv(tmp);
 }