Numerious bugfixes and improvements, see changelogs for details

[[Split portion of a mixed commit.]]
This commit is contained in:
punkrockguy318 2008-08-10 10:56:55 +00:00
parent 8495f6d77a
commit 63c939c8f5
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
================== version 2.0.2 ================================
* Now stores config file in .fceultra
================== version 2.0.0 ================================ ================== version 2.0.0 ================================
* Supports movie playback * Supports movie playback
* Support lua script loading * Support lua script loading

4
gfceux
View File

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# gfceux - Graphical launcher for fceux. # gfceux - Graphical launcher for fceux.
# Designed on Ubuntu, with platfrom independence in mind. # Designed on Ubuntu, with platfrom independence in mind.
version = "2.0.0" version = "2.0.2"
title = "gfceux" title = "gfceux"
# Copyright (C) 2008 Lukas Sabota <ltsmooth42 _at_ gmail.com> # Copyright (C) 2008 Lukas Sabota <ltsmooth42 _at_ gmail.com>
## ##
@ -205,7 +205,7 @@ def find_binary(file):
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Globals # Globals
options = None options = None
optionsfile = os.getenv('HOME') + '/.gfceux_options.dat' optionsfile = os.getenv('HOME') + '/.fceultra/gfceux_options.dat'
widgets = None widgets = None
class GfceuApp: class GfceuApp: