[atlantik-cvs] CVS: kdegames/atlantik/client main.cpp, 1.35, 1.36 main.h, 1.41, 1.42 selectserver_widget.cpp, 1.38, 1.39
[email protected] Thu, 22 Jan 2004 06:59:53 +0100 (CET)
| Newsgroups | gmane.comp.kde.devel.atlantik |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/kde/kdegames/atlantik/client
In directory office:/tmp/cvs-serv17724/client
Modified Files:
main.cpp main.h selectserver_widget.cpp
Log Message:
Hide monopd servers identifying as -dev, update appropriate copyrights to
2004.
Index: main.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/main.cpp,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- main.cpp 9 Nov 2003 00:59:38 -0000 1.35
+++ main.cpp 22 Jan 2004 05:59:51 -0000 1.36
@@ -41,7 +41,7 @@
I18N_NOOP("Atlantik"), ATLANTIK_VERSION_STRING,
I18N_NOOP("The Atlantic board game"),
KAboutData::License_GPL,
- I18N_NOOP("(c) 1998-2003 Rob Kaper"),
+ I18N_NOOP("(c) 1998-2004 Rob Kaper"),
I18N_NOOP("KDE client for playing Monopoly-like games on the monopd network."),
"http://unixcode.org/atlantik/"
);
Index: main.h
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/main.h,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- main.h 20 Jan 2004 06:51:29 -0000 1.41
+++ main.h 22 Jan 2004 05:59:51 -0000 1.42
@@ -1,4 +1,4 @@
-// Copyright (c) 2002-2003 Rob Kaper <[email protected]>
+// Copyright (c) 2002-2004 Rob Kaper <[email protected]>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -18,7 +18,7 @@
#define ATLANTIK_MAIN_H
#define ATLANTIK_VERSION 070
-#define ATLANTIK_VERSION_STRING "0.7.0 (CVS >= 20040120)"
+#define ATLANTIK_VERSION_STRING "0.7.0 (CVS >= 20040122)"
#define ATLANTIK_VERSION_MAJOR 0
#define ATLANTIK_VERSION_MINOR 7
Index: selectserver_widget.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/selectserver_widget.cpp,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- selectserver_widget.cpp 21 Jan 2004 06:58:41 -0000 1.38
+++ selectserver_widget.cpp 22 Jan 2004 05:59:51 -0000 1.39
@@ -1,4 +1,4 @@
-// Copyright (c) 2002-2003 Rob Kaper <[email protected]>
+// Copyright (c) 2002-2004 Rob Kaper <[email protected]>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -119,7 +119,7 @@
void SelectServer::slotMonopigatorAdd(QString host, QString port, QString version, int users)
{
- if (m_hideDevelopmentServers && version.contains("CVS"))
+ if (m_hideDevelopmentServers && ( version.contains("CVS") || version.contains("-dev") ) )
return;
MonopigatorEntry *item = new MonopigatorEntry(m_serverList, host, QString::number(9999), version, (users == -1) ? i18n("unknown") : QString::number(users), port);