Bump to version 0.3.6.3

This commit is contained in:
Mathieu Comandon 2014-11-13 00:05:19 +01:00
parent 4b4ec3a773
commit c4f0b4c50b
5 changed files with 8 additions and 4 deletions

View file

@ -1,4 +1,4 @@
VERSION="0.3.6.2"
VERSION="0.3.6.3"
cover:
rm tests/fixtures/pga.db -f

View file

@ -13,7 +13,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.3.6.2</property>
<property name="version"></property>
<property name="copyright" translatable="yes">© 2010, 2014 Mathieu Comandon</property>
<property name="comments" translatable="yes">Open Source Gaming Platform</property>
<property name="website">http://lutris.net</property>

View file

@ -1,7 +1,7 @@
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Name: lutris
Version: 0.3.6.1
Version: 0.3.6.3
Release: 3%{?dist}
Summary: Install and play any video game easily

View file

@ -3,6 +3,7 @@
import os
from gi.repository import Gtk, GObject
from lutris import settings
from lutris.gui.widgets import DownloadProgressBox
from lutris.util import datapath
from lutris import pga
@ -36,6 +37,9 @@ class AboutDialog(GtkBuilderDialog):
glade_file = 'about-dialog.ui'
dialog_object = "about_dialog"
def initialize(self):
self.dialog.set_version(settings.VERSION)
class NoticeDialog(Gtk.MessageDialog):
""" Displays a message to the user. """

View file

@ -5,7 +5,7 @@ from xdg import BaseDirectory
from lutris.util.settings import SettingsIO
PROJECT = "Lutris"
VERSION = "0.3.6.2"
VERSION = "0.3.6.3"
COPYRIGHT = "(c) 2010-2014 Lutris Gaming Platform"
AUTHORS = ["Mathieu Comandon <strycore@gmail.com>"]
ARTISTS = ["Ludovic Soulié <contact@ludal.net>"]