From f2aaa89a933956891049d168d380db301254928b Mon Sep 17 00:00:00 2001 From: gimick Date: Tue, 6 Jul 2010 12:32:13 +0100 Subject: [PATCH 1/2] Update walkthough licence to agpl3.0 --- packaging/windows/py2exeWalkthroughPython26.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging/windows/py2exeWalkthroughPython26.txt b/packaging/windows/py2exeWalkthroughPython26.txt index 3444be84..e379cdae 100644 --- a/packaging/windows/py2exeWalkthroughPython26.txt +++ b/packaging/windows/py2exeWalkthroughPython26.txt @@ -1,9 +1,9 @@ PY2EXE walkthrough for Python 2.6 & FPDB 0.20 -created on 22nd June 2010 +created on 22nd June 2010 by Gimick This walkthrough is derived from comments in the py2exe script made by Ray and SqlCoder -Additional information, formatting,updating to Python 2.6 and sequencing added by Gimick -Content is available under GNU Free Documentation License 1.2 +Additional information, formatting, updating to Python 2.6 and sequencing added by Gimick +Content is available under the the GNU Affero General Public License version 3 From 084c7a5c58f2c736b4365774a1b46d91da4e4054 Mon Sep 17 00:00:00 2001 From: gimick Date: Wed, 7 Jul 2010 21:55:01 +0100 Subject: [PATCH 2/2] Update help/about set version 0.20 --- pyfpdb/fpdb.pyw | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 1c16162b..560b8790 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -111,7 +111,7 @@ import Database import Configuration import Exceptions -VERSION = "0.20-pre4" +VERSION = "0.20" class fpdb: @@ -227,9 +227,9 @@ class fpdb: dia = gtk.AboutDialog() dia.set_name("Free Poker Database (FPDB)") dia.set_version(VERSION) - dia.set_copyright("2008-2010, Steffen, Eratosthenes, Carl Gherardi, Eric Blade, _mt, sqlcoder, Bostik, and others") - dia.set_comments("GTK AboutDialog comments here") - dia.set_license("GPL v3") + dia.set_copyright("Copyright 2008-2010, Steffen, Eratosthenes, Carl Gherardi, Eric Blade, _mt, sqlcoder, Bostik, and others") + dia.set_comments("") + dia.set_license("This program is licensed under the AGPL3, see agpl-3.0.txt in the fpdb installation directory") dia.set_website("http://fpdb.sourceforge.net/") dia.set_authors(['Steffen', 'Eratosthenes', 'Carl Gherardi', 'Eric Blade', '_mt', 'sqlcoder', 'Bostik', 'and others'])