The unified diff between revisions [c6aabce4..] and [4c238e6f..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'interapplet.py'
#
#
# patch "interapplet.py"
# from [a9e10bbf1adbce7431ec972777985407577d6ad6]
# to [2b1eea9ef9bf60dde04a6af6eb39406e93fe5c38]
#
============================================================
--- interapplet.py a9e10bbf1adbce7431ec972777985407577d6ad6
+++ interapplet.py 2b1eea9ef9bf60dde04a6af6eb39406e93fe5c38
@@ -1,5 +1,22 @@
#!/usr/bin/python
+# InterApplet
+# Copyright (C) 2005 Grahame Bowland
+#
+# 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
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
import os
import sys
import re
@@ -381,7 +398,10 @@ class InterfaceApplet(gnomeapplet.Applet
def about_cb(self, widget, user=None):
about = gtk.AboutDialog()
about.set_name("InterApplet")
- about.set_version("0.01")
+ about.set_version("0.02")
+ about.set_comments("""\
+If you like InterApplet, mail me a postcard!
+PO BOX 3105, Broadway, Nedlands WA 6009, Australia""")
about.set_copyright("Copyright 2005 Grahame Bowland")
about.set_website("http://grahame.angrygoats.net/interapplet.shtml")
about.set_authors(["Grahame Bowland"])