tIcons and GNOME desktop entry added - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit dd7e3fbec2822c4b02112716620eb932a90ad227
(DIR) parent b014ac766babb289830fde877102431d1a517488
(HTM) Author: Ben Webb <ben@salilab.org>
Date: Wed, 30 May 2001 02:03:44 +0000
Icons and GNOME desktop entry added
Diffstat:
M ChangeLog | 3 +++
M README | 3 ++-
A dopewars.desktop | 8 ++++++++
M src/curses_client.c | 15 ++++++++-------
A src/dopewars-pill.png | 0
A src/dopewars-shot.png | 0
A src/dopewars-weed.png | 0
M src/gtk_client.c | 5 +++--
8 files changed, 24 insertions(+), 10 deletions(-)
---
(DIR) diff --git a/ChangeLog b/ChangeLog
t@@ -1,3 +1,6 @@
+cvs
+ - Icons (courtesy of Ocelot Mantis) and GNOME desktop entry added
+
1.5.0 13-05-2001
- Fixes for spurious tipoffs
- High scores should now be written properly on Win32 systems
(DIR) diff --git a/README b/README
t@@ -94,7 +94,8 @@ if I can fix 'em... of course, a working patch would be even nicer! ;)
LICENCE
dopewars is released under the GNU General Public License; see the text file
-LICENCE for further information.
+LICENCE for further information. dopewars is copyright (C) Ben Webb 1998-2001.
+The dopewars icons are copyright (C) Ocelot Mantis 2001.
SUPPORT
(DIR) diff --git a/dopewars.desktop b/dopewars.desktop
t@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=dopewars
+Name[de]=Drogenkrieg
+Comment=dopewars drug dealing game
+Exec=dopewars
+Icon=dopewars-weed.png
+Terminal=0
+Type=Application
(DIR) diff --git a/src/curses_client.c b/src/curses_client.c
t@@ -168,18 +168,19 @@ void display_intro() {
_("dopewars is released under the GNU General Public Licence"));
mvaddstr(12,(Width-text->len)/2,text->str);
- mvaddstr(14,7,_("Drug Dealing and Research Dan Wolf"));
- mvaddstr(15,7,_("Play Testing Phil Davis "
+ mvaddstr(14,7,_("Icons and Graphics Ocelot Mantis"));
+ mvaddstr(15,7,_("Drug Dealing and Research Dan Wolf"));
+ mvaddstr(16,7,_("Play Testing Phil Davis "
"Owen Walsh"));
- mvaddstr(16,7,_("Extensive Play Testing Katherine Holt "
+ mvaddstr(17,7,_("Extensive Play Testing Katherine Holt "
"Caroline Moore"));
- mvaddstr(17,7,_("Constructive Criticism Andrea Elliot-Smith "
+ mvaddstr(18,7,_("Constructive Criticism Andrea Elliot-Smith "
"Pete Winn"));
- mvaddstr(18,7,_("Unconstructive Criticism James Matthews"));
+ mvaddstr(19,7,_("Unconstructive Criticism James Matthews"));
- mvaddstr(20,3,_("For information on the command line options, type "
+ mvaddstr(21,3,_("For information on the command line options, type "
"dopewars -h at your"));
- mvaddstr(21,1,_("Unix prompt. This will display a help screen, listing "
+ mvaddstr(22,1,_("Unix prompt. This will display a help screen, listing "
"the available options."));
g_string_free(text,TRUE);
(DIR) diff --git a/src/dopewars-pill.png b/src/dopewars-pill.png
Binary files differ.
(DIR) diff --git a/src/dopewars-shot.png b/src/dopewars-shot.png
Binary files differ.
(DIR) diff --git a/src/dopewars-weed.png b/src/dopewars-weed.png
Binary files differ.
(DIR) diff --git a/src/gtk_client.c b/src/gtk_client.c
t@@ -1787,10 +1787,11 @@ char GtkLoop(int *argc,char **argv[],char ReturnOnFail) {
void display_intro(GtkWidget *widget,gpointer data) {
GtkWidget *dialog,*label,*table,*OKButton,*vbox,*hsep;
gchar *VersionStr;
- const int rows=5,cols=3;
+ const int rows=6,cols=3;
int i,j;
- gchar *table_data[5][3] = {
+ gchar *table_data[6][3] = {
/* Credits labels in GTK+ 'about' dialog */
+ { N_("Icons and graphics"),"Ocelot Mantis", NULL },
{ N_("Drug Dealing and Research"), "Dan Wolf", NULL },
{ N_("Play Testing"), "Phil Davis", "Owen Walsh" },
{ N_("Extensive Play Testing"), "Katherine Holt",