diff --git a/AUTHORS b/AUTHORS index 9686019f7..eec3f4cc1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -Copyright (C) 2010-2012 Mathieu Comandon +Copyright (C) 2010-2013 Mathieu Comandon Contributors: diff --git a/Makefile b/Makefile index 496950b78..70dce5a93 100644 --- a/Makefile +++ b/Makefile @@ -17,10 +17,10 @@ changelog-edit: dch -e upload-ppa: - dput ppa:strycore/ppa ../lutris_0.3.0_i386.changes + dput ppa:strycore/ppa ../lutris_0.3.1_i386.changes rpm: - cd build && sudo alien lutris_0.3.0_all.deb --scripts --to-rpm + cd build && sudo alien lutris_0.3.1_all.deb --scripts --to-rpm clean: debclean @@ -28,6 +28,6 @@ clean: build-all: deb rpm upload: - scp build/lutris_0.3.0_all.deb strycore.com:/srv/releases/lutris/ - scp build/lutris_0.3.0.tar.gz strycore.com:/srv/releases/lutris/ - scp build/lutris-0.3.0-2.noarch.rpm strycore.com:/srv/releases/lutris/ + scp build/lutris_0.3.1_all.deb strycore.com:/srv/releases/lutris/ + scp build/lutris_0.3.1.tar.gz strycore.com:/srv/releases/lutris/ + scp build/lutris-0.3.1-2.noarch.rpm strycore.com:/srv/releases/lutris/ diff --git a/data/ui/AboutDialog.ui b/data/ui/AboutDialog.ui index fed8c2d7a..bbf00a394 100644 --- a/data/ui/AboutDialog.ui +++ b/data/ui/AboutDialog.ui @@ -14,7 +14,7 @@ True True Lutris - 0.2.8 + 0.3.1 © 2010, 2012 Mathieu Comandon Open Source Gaming Platform http://lutris.net diff --git a/data/ui/AboutLutrisDialog.ui b/data/ui/AboutLutrisDialog.ui deleted file mode 100644 index 0bc67d013..000000000 --- a/data/ui/AboutLutrisDialog.ui +++ /dev/null @@ -1,42 +0,0 @@ - - - - 0.2-public5# Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com> -# This program is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License version 3, as published -# by the Free Software Foundation. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranties of -# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR -# PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program. If not, see <http://www.gnu.org/licenses/>. -Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>5 - normal - False - Lutris - - - True - vertical - 2 - - - - - - True - end - - - False - end - 0 - - - - - - diff --git a/debian/changelog b/debian/changelog index f0b444d3b..093d6ca4e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,12 @@ -lutris (0.3.0) precise; urgency=low +lutris (0.3.1) quantal; urgency=low + + * Support for Wine installers + * Library sync with Lutris.net + * Misc bugfixes + + -- Mathieu Comandon Sat, 20 Jul 2013 21:55:37 +0200 + +lutris (0.3.0) quantal; urgency=low * Initial release of Lutris 0.3 * Support for game installers diff --git a/lutris/settings.py b/lutris/settings.py index 512a572b8..3cd536b20 100644 --- a/lutris/settings.py +++ b/lutris/settings.py @@ -5,7 +5,7 @@ import sys from xdg import BaseDirectory PROJECT = "Lutris" -VERSION = "0.3.0" +VERSION = "0.3.1" WEBSITE = "http://lutris.net" COPYRIGHT = "(c) 2010-2013 Lutris Gaming Platform" AUTHORS = ["Mathieu Comandon "] diff --git a/setup.py b/setup.py index 48b7d086d..9c6fb87e9 100644 --- a/setup.py +++ b/setup.py @@ -91,7 +91,7 @@ data_files.append(( setup( name='lutris', - version='0.3.0', + version='0.3.1', license='GPL-3', author='Mathieu Comandon', author_email='strider@strycore.com',