Bump version to 0.2.8

This commit is contained in:
Mathieu Comandon 2013-02-04 15:06:12 +01:00
parent d6db7ca4ac
commit 008539866b
8 changed files with 17 additions and 5 deletions

View file

@ -14,7 +14,7 @@
<property name="skip_taskbar_hint">True</property>
<property name="skip_pager_hint">True</property>
<property name="program_name">Lutris</property>
<property name="version">0.2.7</property>
<property name="version">0.2.8</property>
<property name="copyright" translatable="yes">© 2010, 2012 Mathieu Comandon</property>
<property name="comments" translatable="yes">Open Source Gaming Platform</property>
<property name="website">http://lutris.net</property>

9
debian/changelog vendored
View file

@ -1,3 +1,12 @@
lutris (0.2.8) quantal; urgency=low
* Bump version to 0.2.8
* Save window size and view type
* Let user choose which Web browser to use for Browser runner
* Fix search in icon view
-- Mathieu Comandon <strider@strycore.com> Mon, 04 Feb 2013 15:02:47 +0100
lutris (0.2.7ubuntu0) quantal; urgency=low
* Updated to version 0.2.7

View file

@ -1,5 +1,5 @@
[Desktop Entry]
Version=0.2.7
Version=0.2.8
Name=Lutris
Comment=Lutris application
Categories=Game;

View file

@ -1,5 +1,5 @@
[Desktop Entry]
Version=0.2.1
Version=0.2.8
Name=Lutris
Comment=Lutris application
Categories=Game;

View file

@ -33,6 +33,7 @@ from lutris.gui.runnerconfigvbox import RunnerConfigVBox
from lutris.gui.systemconfigvbox import SystemConfigVBox
class AddGameDialog(Gtk.Dialog):
""" Add game dialog class"""
def __init__(self, parent):

View file

@ -5,6 +5,7 @@ from lutris.config import LutrisConfig
from lutris.gui.systemconfigvbox import SystemConfigVBox
class SystemConfigDialog(Gtk.Dialog):
def __init__(self):
super(SystemConfigDialog, self).__init__()
@ -23,6 +24,7 @@ class SystemConfigDialog(Gtk.Dialog):
cancel_button.connect("clicked", self.close)
add_button.connect("clicked", self.save_config)
self.show_all()
def save_config(self, widget):

View file

@ -5,7 +5,7 @@ import sys
from xdg import BaseDirectory
PROJECT = "Lutris"
VERSION = "0.2.7"
VERSION = "0.2.8"
WEBSITE = "http://lutris.net"
COPYRIGHT = "(c) 2010 Lutris Gaming Platform"
AUTHORS = ["Mathieu Comandon <strycore@gmail.com>"]

View file

@ -80,7 +80,7 @@ data_files.append(('share/applications', ['lutris.desktop']))
setup(
name='lutris',
version='0.2.7',
version='0.2.8',
license='GPL-3',
author='Mathieu Comandon',
author_email='strider@strycore.com',