From fc57bd4889a625201d95c38f61dda3391525b972 Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Sun, 3 Aug 2008 14:30:18 +0000 Subject: [PATCH] gfceu 0.6.1 maintainence release --- ChangeLog | 1 + INSTALL | 5 +- gfceu | 2 +- gfceu.glade | 176 ++++++++++++++++++++++++++-------------------------- setup.py | 6 +- 5 files changed, 96 insertions(+), 94 deletions(-) diff --git a/ChangeLog b/ChangeLog index ccb3902c..13b3e5ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +========================== version 0.6.1 ======================== * Changed some strings to reflect new email and website * Fixed and cleaned some stuff with the glade loading ========================== version 0.6.0 ======================== diff --git a/INSTALL b/INSTALL index 7e15a980..e1e363f6 100644 --- a/INSTALL +++ b/INSTALL @@ -3,9 +3,10 @@ You can install gfceu with setup.py: $ sudo ./setup.py install Requirements: -Python (tested with 2.4) (Ubuntu package name: python) +Python (tested with 2.5) (Ubuntu package name: python) PyGTK, GTK, and PyGlade (tested with 2.8) (Ubuntu package name: (python-gtk2 libgtk2.0-0 python-glade) FCE Ultra 1.x (Ubuntu package name: fceu) Optional: -GnomeVFS 2 (tested with 2.14.1) (Ubuntu package name libgnomevfs2-0 python-gtk2)alsa-oss (tested with 1.0.11 +GnomeVFS 2 (tested with 2.14.1) (Ubuntu package name libgnomevfs2-0 python-gtk2) +alsa-oss (tested with 1.0.11) diff --git a/gfceu b/gfceu index 4f8f84ef..d97452af 100644 --- a/gfceu +++ b/gfceu @@ -1,7 +1,7 @@ #!/usr/bin/python # gfceu - Graphical launcher for FCE Ultra. # Designed on Ubuntu, with platfrom independence in mind. -version = "0.6.1svn" +version = "0.6.1" # Copyright (C) 2006 Lukas Sabota ## """ diff --git a/gfceu.glade b/gfceu.glade index 7d6240fa..7d23bf6e 100644 --- a/gfceu.glade +++ b/gfceu.glade @@ -140,17 +140,30 @@ 5 5 - + True True - Gamepad _3 + Gamepad _1 True 0 - 1 - 2 + + + + + + True + True + Gamepad _2 + True + 0 + + + + 1 + 2 @@ -172,30 +185,17 @@ - + True True - Gamepad _2 - True - 0 - - - - 1 - 2 - - - - - - True - True - Gamepad _1 + Gamepad _3 True 0 + 1 + 2 @@ -424,28 +424,13 @@ Invalid options may cause GFCE Ultra to perform incorrectly. 5 5 - + True - True + 0 + Port: - 1 - 2 - 1 - 2 - - - - - - True - True - 4046 1 65536 1 10 10 - 1 - - - 1 - 2 + GTK_FILL @@ -463,13 +448,28 @@ Invalid options may cause GFCE Ultra to perform incorrectly. - + True - 0 - Port: + True + 4046 1 65536 1 10 10 + 1 - GTK_FILL + 1 + 2 + + + + + + True + True + + + 1 + 2 + 1 + 2 @@ -521,54 +521,13 @@ Invalid options may cause GFCE Ultra to perform incorrectly. 3 5 - + True True - 4046 1 65536 1 10 10 - 1 1 2 - 1 - 2 - - - - - - True - 0 - Password: - - - 2 - 3 - GTK_FILL - - - - - - True - 0 - Server Port: - - - 1 - 2 - GTK_FILL - - - - - - True - 0 - Server Address: - - - GTK_FILL @@ -588,13 +547,54 @@ Invalid options may cause GFCE Ultra to perform incorrectly. - + + True + 0 + Server Address: + + + GTK_FILL + + + + + + True + 0 + Server Port: + + + 1 + 2 + GTK_FILL + + + + + + True + 0 + Password: + + + 2 + 3 + GTK_FILL + + + + + True True + 4046 1 65536 1 10 10 + 1 1 2 + 1 + 2 @@ -715,7 +715,7 @@ Invalid options may cause GFCE Ultra to perform incorrectly. GDK_WINDOW_TYPE_HINT_NORMAL - (C) Copyright 2006 + (C) Copyright 2008 A GNOME front-end end for the FCE Ultra Nintendo Entertainment System emulator http://dietschnitzel.com/gfceu/ This program is free software; you can redistribute it and/or diff --git a/setup.py b/setup.py index 9dbf60e1..6e327ce7 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,15 @@ #!/usr/bin/env python from distutils.core import setup setup(name="gfceu", - version="0.6.0", + version="0.6.1", scripts = ['gfceu'], data_files=[('share/gfceu/',['gfceu.glade', 'gfceu_big.png', 'gfceu.png']), ('share/pixmaps/', ['gfceu.png']), ('share/man/man1/', ['gfceu.1']), ('share/applications/', ['gfceu.desktop'])], author = "Lukas Sabota", - author_email = "punkrockguy318@comcast.net", - url = "http://punkrockguy318.no-ip.org" + author_email = "ltsmooth42 _at_ gmail.com", + url = "http://dietschnitzel.com/gfceu" )