1
0
mirror of https://github.com/lutris/lutris synced 2024-07-03 07:28:41 +00:00

OBS hates dashes in version names too

This commit is contained in:
Mathieu Comandon 2015-11-28 13:01:31 -08:00
parent 7fef172d28
commit 5fe0a166a1
4 changed files with 5 additions and 20 deletions

View File

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

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.7-rc1
Version: 0.3.7
Release: 3%{?dist}
Summary: Install and play any video game easily
@ -95,8 +95,8 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%changelog
* Fri Nov 27 2015 Mathieu Comandon <strycore@gmail.com> - 0.3.7-rc1
- Bump to version 0.3.7-rc1
* Fri Nov 27 2015 Mathieu Comandon <strycore@gmail.com> - 0.3.7
- Bump to version 0.3.7
* Thu Oct 30 2014 Mathieu Comandon <strycore@gmail.com> - 0.3.6-1
- Bump to version 0.3.6

View File

@ -1,18 +1,3 @@
#!/usr/bin/python
# -*- coding:Utf-8 -*-
#
# 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 warranty of
# MERCHANTABILITY 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/>.
#
"""Handle the game, runner and global system configurations."""
import os

View File

@ -5,7 +5,7 @@ from gi.repository import GLib
from lutris.util.settings import SettingsIO
PROJECT = "Lutris"
VERSION = "0.3.7-rc1"
VERSION = "0.3.7"
COPYRIGHT = "(c) 2010-2015 Lutris Gaming Platform"
AUTHORS = ["Mathieu Comandon <strycore@gmail.com>",
"Pascal Reinhard (Xodetaetl) <dev@xod.me"]