mirror of
https://github.com/nextcloud/android.git
synced 2024-12-18 15:01:57 +03:00
19 lines
474 B
Python
19 lines
474 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Copyright (C) 2010 by Indifex (www.indifex.com), see AUTHORS.
|
|
License: BSD, see LICENSE for details.
|
|
|
|
For further information visit http://code.indifex.com/transifex-client
|
|
"""
|
|
|
|
|
|
VERSION = (0, 9, 0, 'devel')
|
|
|
|
def get_version():
|
|
version = '%s.%s' % (VERSION[0], VERSION[1])
|
|
if VERSION[2]:
|
|
version = '%s.%s' % (version, VERSION[2])
|
|
if VERSION[3] != 'final':
|
|
version = '%s %s' % (version, VERSION[3])
|
|
return version
|