gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog gui/gtk.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog gui/gtk.cpp
Date: Fri, 05 Jan 2007 23:53:23 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  07/01/05 23:53:23

Modified files:
        .              : ChangeLog 
        gui            : gtk.cpp 

Log message:
        Fixed bug #18694 + added extra info.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2048&r2=1.2049
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gtk.cpp?cvsroot=gnash&r1=1.57&r2=1.58

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2048
retrieving revision 1.2049
diff -u -b -r1.2048 -r1.2049
--- ChangeLog   4 Jan 2007 23:12:08 -0000       1.2048
+++ ChangeLog   5 Jan 2007 23:53:23 -0000       1.2049
@@ -1,3 +1,7 @@
+2007-01-04 Markus Gothe <address@hidden>
+
+       * Fixed bug #18694 + added extra info.
+
 2007-01-04 Sandro Santilli <address@hidden>
 
        * server/asobj/Object.cpp: stubbed registerClass().
@@ -45,7 +49,7 @@
        * cygnal/http.cpp: removed extra ';'.
        * cygnal/alloc.cpp: throw stuff.
 
-2002-01-02 Markus Gothe <address@hidden>
+2007-01-02 Markus Gothe <address@hidden>
 
        * utilities/processor.cpp if not GCC define optarg as extern.
        * server/asobjs/NetStreamFfmpeg.cpp: Fixed static_cast of

Index: gui/gtk.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/gtk.cpp,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -b -r1.57 -r1.58
--- gui/gtk.cpp 2 Jan 2007 12:47:34 -0000       1.57
+++ gui/gtk.cpp 5 Jan 2007 23:53:23 -0000       1.58
@@ -17,6 +17,8 @@
 // 
 //
 
+/* $Id: gtk.cpp,v 1.58 2007/01/05 23:53:23 nihilus Exp $ */
+
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
@@ -777,6 +779,12 @@
     const gchar *documentors[] = { 
         "Rob Savoye", 
         "Sandro Santilli", 
+       "Ann Barcomb",
+        NULL 
+    };
+
+    const gchar *artists[] = { 
+       "P. J. Savoye",
         NULL 
     };
     
@@ -784,27 +792,33 @@
         "Rob Savoye", 
         "Sandro Santilli", 
         "Bastiaan Jacques", 
-        "Thomas Groth", 
+        "Tomas Groth", 
         "Udo Giacomozzi", 
         "Hannes Mayr", 
         "Markus Gothe", 
         "Vitaly Alexeev",
         NULL 
     };
-    
+    gtk_about_dialog_set_url_hook(NULL, NULL, NULL);
     GdkPixbuf *logo_pixbuf = gdk_pixbuf_new_from_file("GnashG.png", NULL);
-    GtkWidget *about = (GtkWidget*) g_object_new (GTK_TYPE_ABOUT_DIALOG,
+    //GtkWidget *about = (GtkWidget*) g_object_new (GTK_TYPE_ABOUT_DIALOG,
+    gtk_show_about_dialog (
+                  NULL,
                    "name", "GNASH flash movie player", 
                    "version", VERSION,
                    "copyright", "(C) 2005-2006 The Free Software Foundation",
                   "comments", "Gnash is a GNU Flash movie player. Until now it 
has only been possible to play flash movies with proprietary software. While 
there are a few other free flash players, none supports anything higher than 
SWF v4 at best. Gnash is based on GameSWF, and supports many SWF v7 features.",
                    "authors", authors,
                    "documenters", documentors,
-                   "translator-credits", "translator-credits",
+                  "artists", artists,
+//                   "translator-credits", "translator-credits",
                    "logo", logo_pixbuf,
+                  "license", 
+                  "   Copyright (C) 2005, 2006 Free Software Foundation, 
Inc.\n This program is free software; you can redistribute it and/or modify\n 
it under the terms of the GNU General Public License as published by\n the Free 
Software Foundation; either version 2 of the License, or\n (at your option) any 
later version.\n\n This program is distributed in the hope that it will be 
useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n GNU General 
Public License for more details.\n You should have received a copy of the GNU 
General Public License\n along with this program; if not, write to the Free 
Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  
02110-1301  USA",
+                  "website", "http://www.gnu.org/software/gnash/";,
                    NULL);
  
-    gtk_widget_show (about);
+ 
 }
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]