diff --git a/debian/changelog b/debian/changelog index b5fd37cc6..13f731345 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +lutris (0.4.7) yakkety; urgency=medium + + * Add support for more libretro cores + * Revert main view to IconView instead of Flowbox, improving performance + * Persist game platforms to the database, improving performance + * Fix argument parsing for msi installers + * Use gzdoom instead of zdoom + * Misc bugfixes + + -- Mathieu Comandon Sun, 09 Apr 2017 13:40:50 -0700 + lutris (0.4.6) yakkety; urgency=medium * Various UI fixes diff --git a/lutris.spec b/lutris.spec index 6e5679700..bbc3471e8 100644 --- a/lutris.spec +++ b/lutris.spec @@ -4,7 +4,7 @@ %{!?py3_install: %global py3_install %{__python3} setup.py install --skip-build --root %{buildroot}} Name: lutris -Version: 0.4.6 +Version: 0.4.7 Release: 2%{?dist} Summary: Install and play any video game easily diff --git a/lutris/gui/gameviews.py b/lutris/gui/gameviews.py index 5b48e8c54..049f185ab 100644 --- a/lutris/gui/gameviews.py +++ b/lutris/gui/gameviews.py @@ -391,7 +391,6 @@ class GameListView(Gtk.TreeView, GameView): class GameGridView(Gtk.IconView, GameView): - """DEPRECATED: Remove in Lutris 0.4.1""" __gsignals__ = GameView.__gsignals__ def __init__(self, store): diff --git a/lutris/settings.py b/lutris/settings.py index 7601e6bbb..f419deca1 100644 --- a/lutris/settings.py +++ b/lutris/settings.py @@ -5,7 +5,7 @@ from gi.repository import GLib from lutris.util.settings import SettingsIO PROJECT = "Lutris" -VERSION = "0.4.6" +VERSION = "0.4.7" COPYRIGHT = "(c) 2010-2017 Lutris Gaming Platform" AUTHORS = ["Mathieu Comandon ", "Pascal Reinhard (Xodetaetl)