Changed the version number to 0.1a.dev.

pull/17/head
Christian Jacobs 2013-03-30 21:38:11 +00:00
rodzic 71bdffcb02
commit 75a7bcce09
3 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -41,7 +41,7 @@ class PyQSO(Gtk.Window):
def __init__(self):
# Call the constructor of the super class (Gtk.Window)
Gtk.Window.__init__(self, title="PyQSO (development version)")
Gtk.Window.__init__(self, title="PyQSO 0.1a.dev")
self.set_size_request(500, 300)
self.set_position(Gtk.WindowPosition.CENTER)
@ -83,7 +83,7 @@ class PyQSO(Gtk.Window):
def show_about(self, widget):
about = Gtk.AboutDialog()
about.set_program_name("PyQSO")
about.set_version("Development version")
about.set_version("0.1a.dev")
about.set_authors(["Christian Jacobs"])
about.set_license('''This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

Wyświetl plik

@ -133,7 +133,7 @@ Generated on %s. Contains %d record(s).
<adif_ver:5>3.0.2
<programid:5>PyQSO
<programversion:11>Development
<programversion:8>0.1a.dev
<eoh>\n''' % (dt, len(records)))

Wyświetl plik

@ -3,11 +3,13 @@
from distutils.core import setup
setup(name='PyQSO',
version='Development',
version='0.1a.dev',
description='A Python-based QSO logging tool',
author='Christian Jacobs',
author_email='',
url='https://launchpad.net/pyqso',
packages=['pyqso'],
package_dir = {'pyqso': 'pyqso'},
scripts=["bin/pyqso"]
)