Skip to content
This repository has been archived by the owner on Feb 26, 2022. It is now read-only.

Commit

Permalink
* configure.ac: Bump version to 0.2.0, we'll make a release now
Browse files Browse the repository at this point in the history
for the Bahrain practice sessions and update it as we go.
* NEWS: Update.
* TODO: Mention that we want a proper state engine.
* src/main.c (print_version): Update copyright year as this is the
printed version.
* src/display.c (clear_board): Increase default number of
cars to 22, to give enough room for Super Aguri; it doesn't make
any real difference (the table size gets increased anyway) but is
a little more efficient.  If we get a 12th team, it's time to switch
to that GTK+ UI as there aren't any more terminal lines left.
  • Loading branch information
keybuk committed Mar 7, 2006
1 parent 051cd69 commit e948e29
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 10 deletions.
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2006-03-07 Scott James Remnant <scott@netsplit.com>

* configure.ac: Bump version to 0.2.0, we'll make a release now
for the Bahrain practice sessions and update it as we go.
* NEWS: Update.
* TODO: Mention that we want a proper state engine.

* src/main.c (print_version): Update copyright year as this is the
printed version.

* src/display.c (clear_board): Increase default number of
cars to 22, to give enough room for Super Aguri; it doesn't make
any real difference (the table size gets increased anyway) but is
a little more efficient. If we get a 12th team, it's time to switch
to that GTK+ UI as there aren't any more terminal lines left.

2005-10-15 Scott James Remnant <scott@netsplit.com>

* TODO: Added notes of what I want fixed before release.
Expand Down
4 changes: 2 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.1.0 XXXX-XX-XX
0.2.0 2006-03-07 "Let's get it started"

* Initial public release.

11 changes: 9 additions & 2 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Before first release:
High Priority:

* Looks like the web site is changing logins to https://secure.formula1.com/
we'll need to follow suit to be "compatible", though for now the old http
location still works.

* Identify a way of noticing when we haven't got the right decryption
and bailing out -- instead of displaying junk.
Expand All @@ -18,10 +22,13 @@ Before first release:
* Character set conversion for notices and such, so we display ®
instead of the block in the "no timing yet" message.

* Proper state structures, and callbacks; rather than the intertwined
mess we have at the moment.

* Manual Page.


Sometime after:
Wishlists:

* Record/playback functionality for events that your TV provider
doesn't transmit live -- pause, fast forward and rewind within the
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT([live-f1], [0.1.0], [live-f1-bugs@netsplit.com])
AC_COPYRIGHT([[Copyright © 2005 Scott James Remnant <scott@netsplit.com>.]])
AC_INIT([live-f1], [0.2.0], [live-f1-bugs@netsplit.com])
AC_COPYRIGHT([[Copyright © 2006 Scott James Remnant <scott@netsplit.com>.]])
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_MACRO_DIR([m4])

Expand Down
4 changes: 2 additions & 2 deletions src/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* display.c - displaying of timing and messages
*
* Copyright © 2005 Scott James Remnant <scott@netsplit.com>.
* Copyright © 2006 Scott James Remnant <scott@netsplit.com>.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -159,7 +159,7 @@ clear_board (CurrentState *state)
if (boardwin)
delwin (boardwin);

nlines = MAX (state->num_cars, 20);
nlines = MAX (state->num_cars, 22);
for (i = 0; i < state->num_cars; i++)
nlines = MAX (nlines, state->car_position[i]);
nlines += 1;
Expand Down
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* live-f1
*
* Copyright © 2005 Scott James Remnant <scott@netsplit.com>.
* Copyright © 2006 Scott James Remnant <scott@netsplit.com>.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -249,7 +249,7 @@ static void
print_version (void)
{
printf ("%s\n", PACKAGE_STRING);
printf ("Copyright (C) 2005 Scott James Remnant <scott@netsplit.com>.\n");
printf ("Copyright (C) 2006 Scott James Remnant <scott@netsplit.com>.\n");
printf ("\n");
printf (_("This is free software, covered by the GNU General Public License; see the\n"
"source for copying conditions. There is NO warranty; not even for\n"
Expand Down

0 comments on commit e948e29

Please sign in to comment.