src/news_type.h
Tue, 30 Sep 2008 20:39:50 +0000 rubidium (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
Wed, 13 Aug 2008 01:48:58 +0000 belugas (svn r14059) -Fix(r13872): Wrong comments in enum. Dear old copy/paste...
Wed, 30 Jul 2008 01:53:03 +0000 belugas (svn r13872) -Feature: Split the news message announcing opening and closure of industries into two news of their own
Fri, 18 Jul 2008 16:26:51 +0000 rubidium (svn r13730) -Fix: make a copy of the names for news messages about the deletion of companies as the removal of a company could lead to wrong names in the news messages.
Thu, 05 Jun 2008 16:55:00 +0000 rubidium (svn r13389) -Codechange: remove NM_CALLBACK because that information could be gathered from the fact that a callback has been specified. Patch by Cirdan.
Sun, 01 Jun 2008 10:11:31 +0000 rubidium (svn r13349) -Codechange: remove a pointless flag; the flag is set before calling a function and is then reset in the function without ever reading it. Patch by Cirdan.
Fri, 30 May 2008 20:57:19 +0000 rubidium (svn r13345) -Codechange: only one of all the NewsItem's instance duration variable, so move it so there is only once instance of that variable. Patch by Cirdan.
Wed, 28 May 2008 21:36:16 +0000 rubidium (svn r13317) -Codechange: make news messages use a linked list instead of a moving circular buffer. This makes it possible to store more news messages in the history. Based on a patch by Cirdan.
Mon, 19 May 2008 09:18:51 +0000 rubidium (svn r13181) -Codechange: make news callback handling a little simpler. Patch by Cirdan.
Fri, 16 May 2008 20:04:17 +0000 rubidium (svn r13123) -Codechange: passing the bankrupt type via data_b is not needed anymore. Patch by Cirdan.
Thu, 15 May 2008 13:47:55 +0000 rubidium (svn r13102) -Codechange: make a class of the NewsWindow.
Thu, 15 May 2008 13:39:36 +0000 rubidium (svn r13100) -Codechange: reduce the amount of parameters passed via AddNewsMessage as there is (for each news message type) a tuple of 4 parameters that is the same for all calls.
Tue, 13 May 2008 10:17:04 +0000 rubidium (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
Thu, 08 May 2008 22:53:49 +0000 rubidium (svn r13021) -Codechange: free data_b for other uses when it is not used to store a second tile to skip to (in news messages). Patch by cirdan.
Sun, 20 Apr 2008 11:40:33 +0000 rubidium (svn r12805) -Codechange: remove some bit magic related to the news display states. Patch by cirdan.
Sat, 19 Apr 2008 12:50:02 +0000 rubidium (svn r12785) -Codechange: put all news-type related constants in the same array. Patch by cirdan.
Sun, 13 Apr 2008 17:59:43 +0000 glx (svn r12691) -Fix (r12459): all company related news displayed the 'company is in trouble' message
Fri, 28 Mar 2008 08:53:36 +0000 rubidium (svn r12459) -Codechange: split news.h into news_type.h and news_func.h.