version bump and moved options into new fceux dir (.fceux)

This commit is contained in:
punkrockguy318 2008-11-10 05:01:58 +00:00
parent addf44fd11
commit 9da46b197c
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
* Moved gfceu options data file into .fceux instead of .fceultra
================= version 2.0.3 =================================
* Updated UI slightly. Moved sound and advanced tabs; made autoscaling
configuration a bit more intuitive; rearranged some items; made some
text more clear

4
gfceux
View File

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