Version 0.6.0
This commit is contained in:
parent
26cf8fad70
commit
735b7d7f1b
|
@ -1,4 +1,6 @@
|
||||||
========================== version 0.5.3 ========================
|
========================== version 0.6.0 ========================
|
||||||
|
* Fixed evil no ROM problem.
|
||||||
|
* Added ALSA support (sort of)
|
||||||
* Fixed join/host problem.
|
* Fixed join/host problem.
|
||||||
========================== version 0.5.2 ========================
|
========================== version 0.5.2 ========================
|
||||||
Cleanup:
|
Cleanup:
|
||||||
|
|
13
gfceu
13
gfceu
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# gfceu - Graphical launcher for FCE Ultra.
|
# gfceu - Graphical launcher for FCE Ultra.
|
||||||
# Designed on Ubuntu, with platfrom independence in mind.
|
# Designed on Ubuntu, with platfrom independence in mind.
|
||||||
version = "0.5.2"
|
version = "0.6.0"
|
||||||
# Copyright (C) 2006 Lukas Sabota <punkrockguy318@comcast.net>
|
# Copyright (C) 2006 Lukas Sabota <punkrockguy318@comcast.net>
|
||||||
##
|
##
|
||||||
"""
|
"""
|
||||||
|
@ -225,7 +225,7 @@ def set_options():
|
||||||
|
|
||||||
|
|
||||||
def launch(passed, local=False):
|
def launch(passed, local=False):
|
||||||
global xml, options, fceu_server_binary, fceu_binary
|
global xml, options, fceu_server_binary, fceu_binary, aoss_binary
|
||||||
set_options()
|
set_options()
|
||||||
|
|
||||||
if options.sound_check:
|
if options.sound_check:
|
||||||
|
@ -265,7 +265,7 @@ def launch(passed, local=False):
|
||||||
else:
|
else:
|
||||||
opengl = '-opengl 0 '
|
opengl = '-opengl 0 '
|
||||||
|
|
||||||
command = fceu_binary +' '+ sound + fullscreen +\
|
command = aoss_binary + ' ' + fceu_binary +' '+ sound + fullscreen +\
|
||||||
network + opengl + options.extra_entry + ' '+ passed
|
network + opengl + options.extra_entry + ' '+ passed
|
||||||
gfceu_message('Command: ' + command)
|
gfceu_message('Command: ' + command)
|
||||||
|
|
||||||
|
@ -487,6 +487,7 @@ appconfigdir = os.getenv('HOME') + '/.gfceu'
|
||||||
old_optionsfile = os.getenv('HOME')+'/.gfceu_options'
|
old_optionsfile = os.getenv('HOME')+'/.gfceu_options'
|
||||||
optionsfile = appconfigdir + 'gfceu_options.dat'
|
optionsfile = appconfigdir + 'gfceu_options.dat'
|
||||||
fceu_binary = None
|
fceu_binary = None
|
||||||
|
aoss_binary = None
|
||||||
fceu_server_binary = None
|
fceu_server_binary = None
|
||||||
#version is defined earlier in the code
|
#version is defined earlier in the code
|
||||||
#have_vfs is defined earlier in the code
|
#have_vfs is defined earlier in the code
|
||||||
|
@ -528,6 +529,12 @@ if __name__ == '__main__':
|
||||||
sudo apt-get install fceu', 4, True)
|
sudo apt-get install fceu', 4, True)
|
||||||
else:
|
else:
|
||||||
gfceu_message('Using: '+fceu_binary)
|
gfceu_message('Using: '+fceu_binary)
|
||||||
|
aoss_binary = find_binary('aoss')
|
||||||
|
if aoss_binary == None:
|
||||||
|
gfceu_error('Could not find the the ALSA OSS wrapper.\n\
|
||||||
|
GFCEU will not be able to share the sound device with other applications.\n\
|
||||||
|
On Debian based systems (like Ubuntu), try the following command:\n\
|
||||||
|
sudo apt-get install alsa-oss', 76, True, False)
|
||||||
|
|
||||||
widgets = WidgetsWrapper()
|
widgets = WidgetsWrapper()
|
||||||
widgets['main_window'].show_all()
|
widgets['main_window'].show_all()
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name="gfceu",
|
setup(name="gfceu",
|
||||||
version="0.5.2",
|
version="0.6.0",
|
||||||
scripts = ['gfceu'],
|
scripts = ['gfceu'],
|
||||||
data_files=[('share/gfceu/',['gfceu.glade', 'gfceu_big.png', 'gfceu.png']),
|
data_files=[('share/gfceu/',['gfceu.glade', 'gfceu_big.png', 'gfceu.png']),
|
||||||
('share/pixmaps/', ['gfceu.png']),
|
('share/pixmaps/', ['gfceu.png']),
|
||||||
|
|
Loading…
Reference in New Issue