From 95e8e6b8e7af82bcd88cac631459ffc28d448ffa Mon Sep 17 00:00:00 2001 From: Milan Nikolic Date: Thu, 9 Jan 2014 04:35:30 +0100 Subject: [PATCH] prepare new release --- ChangeLog | 6 ++++++ dist/debian/changelog | 8 ++++++++ setup.py | 2 +- src/m64py/core/defs.py | 2 +- 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 602bc7b..4562fed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +v0.1.8 Jan 09, 2014: + + * translations support + * enable configuration for rsp plugins + * bug fixes + v0.1.7 Dec 15, 2013: * log viewer dialog diff --git a/dist/debian/changelog b/dist/debian/changelog index 50f772b..d452c80 100644 --- a/dist/debian/changelog +++ b/dist/debian/changelog @@ -1,3 +1,11 @@ +m64py (0.1.8-1) unstable; urgency=low + + * translations support + * enable configuration for rsp plugins + * bug fixes + + -- Milan Nikolic Thu, 09 Jan 2014 04:33:42 +0100 + m64py (0.1.7-1) unstable; urgency=low * log viewer dialog diff --git a/setup.py b/setup.py index 17dd605..94f9177 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ class build_qt(Command): uic.compileUi(ui_file, fp) fp.close() except Exception, err: - self.warn('Unable to compile ui %s: %s' % (ui_file, err)) + self.warn('Unable to compile ui file %s: %s' % (ui_file, err)) if not os.path.exists(py_file): sys.exit(1) return diff --git a/src/m64py/core/defs.py b/src/m64py/core/defs.py index 7807580..b403b4f 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.7" +FRONTEND_VERSION = "0.1.8" SIZE_1X = (320, 240) SIZE_2X = (640, 480)