Bump to version 0.3.2

This commit is contained in:
Mathieu Comandon 2013-12-15 17:56:28 +01:00
parent d68fc82e48
commit 928bc5a212
7 changed files with 22 additions and 12 deletions

View file

@ -17,10 +17,10 @@ changelog-edit:
dch -e
upload-ppa:
dput ppa:strycore/ppa ../lutris_0.3.1_i386.changes
dput ppa:strycore/ppa ../lutris_0.3.2_i386.changes
rpm:
cd build && sudo alien lutris_0.3.1_all.deb --scripts --to-rpm
cd build && sudo alien lutris_0.3.2_all.deb --scripts --to-rpm
clean:
debclean
@ -28,6 +28,6 @@ clean:
build-all: deb rpm
upload:
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/
scp build/lutris_0.3.2_all.deb strycore.com:/srv/releases/lutris/
scp build/lutris_0.3.2.tar.gz strycore.com:/srv/releases/lutris/
scp build/lutris-0.3.2-2.noarch.rpm strycore.com:/srv/releases/lutris/

View file

@ -14,8 +14,8 @@
<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.1</property>
<property name="copyright" translatable="yes">© 2010, 2012 Mathieu Comandon</property>
<property name="version">0.3.2</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>
<property name="website_label" translatable="yes">http://lutris.net</property>

10
debian/changelog vendored
View file

@ -1,3 +1,13 @@
lutris (0.3.2) quantal; urgency=low
* Support for Steam for Linux
* Allow switching from Steam for Linux <-> Wine
* Option to show only installed games in UI
* Ability to automatically migrate local database
* Misc bugfixes
-- Mathieu Comandon <strycore@gmail.com> Sun, 15 Dec 2013 17:51:00 +0200
lutris (0.3.1) quantal; urgency=low
* Support for Wine installers

View file

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

View file

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

View file

@ -6,8 +6,8 @@ import ConfigParser
from xdg import BaseDirectory
PROJECT = "Lutris"
VERSION = "0.3.1"
COPYRIGHT = "(c) 2010-2013 Lutris Gaming Platform"
VERSION = "0.3.2"
COPYRIGHT = "(c) 2010-2014 Lutris Gaming Platform"
AUTHORS = ["Mathieu Comandon <strycore@gmail.com>"]
ARTISTS = ["Ludovic Soulié <contact@ludal.net>"]

View file

@ -91,7 +91,7 @@ data_files.append((
setup(
name='lutris',
version='0.3.1',
version='0.3.2',
license='GPL-3',
author='Mathieu Comandon',
author_email='strider@strycore.com',