mirror of
https://github.com/mupen64plus/mupen64plus-ui-python.git
synced 2025-04-02 10:51:53 -04:00
prepare new release
This commit is contained in:
parent
1a55ca8194
commit
9622bf234d
5 changed files with 14 additions and 27 deletions
|
@ -1,3 +1,8 @@
|
|||
v0.1.7 Dec 15, 2013:
|
||||
|
||||
* log viewer dialog
|
||||
* bug fixes
|
||||
|
||||
v0.1.6 Sep 28, 2013:
|
||||
|
||||
* SDL2 support
|
||||
|
|
7
dist/debian/changelog
vendored
7
dist/debian/changelog
vendored
|
@ -1,3 +1,10 @@
|
|||
m64py (0.1.7-1) unstable; urgency=low
|
||||
|
||||
* log viewer dialog
|
||||
* bug fixes
|
||||
|
||||
-- Milan Nikolic <gen2brain@gmail.com> Sun, 15 Dec 2013 18:14:09 +0100
|
||||
|
||||
m64py (0.1.6-1) unstable; urgency=low
|
||||
|
||||
* SDL2 support
|
||||
|
|
25
dist/gentoo/m64py.0.1.6.ebuild
vendored
25
dist/gentoo/m64py.0.1.6.ebuild
vendored
|
@ -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 )
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue