diff --git a/ChangeLog b/ChangeLog index 2fa8f80..602bc7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +v0.1.7 Dec 15, 2013: + + * log viewer dialog + * bug fixes + v0.1.6 Sep 28, 2013: * SDL2 support diff --git a/dist/debian/changelog b/dist/debian/changelog index ed8ea1d..50f772b 100644 --- a/dist/debian/changelog +++ b/dist/debian/changelog @@ -1,3 +1,10 @@ +m64py (0.1.7-1) unstable; urgency=low + + * log viewer dialog + * bug fixes + + -- Milan Nikolic Sun, 15 Dec 2013 18:14:09 +0100 + m64py (0.1.6-1) unstable; urgency=low * SDL2 support diff --git a/dist/gentoo/m64py.0.1.6.ebuild b/dist/gentoo/m64py.0.1.6.ebuild deleted file mode 100644 index 969b07a..0000000 --- a/dist/gentoo/m64py.0.1.6.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: Exp $ -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -DESCRIPTION="A frontend for Mupen64Plus" -HOMEPAGE="http://m64py.sourceforge.net/" -SRC_URI="mirror://sourceforge/m64py/${P}-bundle.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="7zip rar" - -RDEPEND="media-libs/libsdl - dev-python/PyQt4[opengl,${PYTHON_USEDEP}] - >=games-emulation/mupen64plus-2.0 - 7zip? ( || ( dev-python/pylzma app-arch/p7zip ) ) - rar? ( || ( app-arch/unrar app-arch/rar ) )" - -DOCS=( AUTHORS ChangeLog README ) diff --git a/src/m64py/core/core.py b/src/m64py/core/core.py index af4cb6f..531ffd8 100644 --- a/src/m64py/core/core.py +++ b/src/m64py/core/core.py @@ -114,7 +114,7 @@ class Core: if LDD_CMD: proc = subprocess.Popen(LDD_CMD % self.core_path, shell=True, - preexec_fn=lambda:signal.signal(signal.SIGPIPE, signal.SIG_DFL)) + preexec_fn=lambda: signal.signal(signal.SIGPIPE, signal.SIG_DFL)) proc.communicate() if proc.returncode == 0: self.core_sdl2 = True diff --git a/src/m64py/core/defs.py b/src/m64py/core/defs.py index 2eb0c5d..7807580 100644 --- a/src/m64py/core/defs.py +++ b/src/m64py/core/defs.py @@ -22,7 +22,7 @@ CORE_NAME = "mupen64plus" CORE_API_VERSION = 0x20001 CONFIG_API_VERSION = 0x20000 MINIMUM_CORE_VERSION = 0x016300 -FRONTEND_VERSION = "0.1.6" +FRONTEND_VERSION = "0.1.7" SIZE_1X = (320, 240) SIZE_2X = (640, 480)