Move to version 0.2a-dev.

pull/17/head
Christian Jacobs 2014-03-22 22:05:08 +00:00
rodzic fc22b91c63
commit 2913b813d5
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -47,7 +47,7 @@ class PyQSO(Gtk.Window):
""" Set up the main (root) window, start the event loop, and open a logbook (if the logbook's path is specified by the user in the command line). """
# Call the constructor of the super class (Gtk.Window)
Gtk.Window.__init__(self, title="PyQSO 0.1")
Gtk.Window.__init__(self, title="PyQSO 0.2a-dev")
# Get any application-specific preferences from the configuration file
config = ConfigParser.ConfigParser()
@ -113,7 +113,7 @@ class PyQSO(Gtk.Window):
about.set_modal(True)
about.set_transient_for(parent=self)
about.set_program_name("PyQSO")
about.set_version("0.1")
about.set_version("0.2a-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

@ -34,7 +34,7 @@
\begin{center}
\vspace*{5cm}
\huge{PyQSO User Manual}\\\vspace*{5cm}
\LARGE{Version 0.1}
\LARGE{Version 0.2a-dev}
\end{center}
\end{titlepage}

Wyświetl plik

@ -201,7 +201,7 @@ class ADIF:
<adif_ver:%d>%s
<programid:5>PyQSO
<programversion:3>0.1
<programversion:8>0.2a-dev
<eoh>\n""" % (dt, len(records), len(str(ADIF_VERSION)), ADIF_VERSION))
# Then write each log to the file.
@ -417,7 +417,7 @@ class TestADIF(unittest.TestCase):
assert("""
<adif_ver:3>1.0
<programid:5>PyQSO
<programversion:3>0.1
<programversion:8>0.2a-dev
<eoh>
<call:7>TEST123
<qso_date:8>20120402
@ -456,7 +456,7 @@ class TestADIF(unittest.TestCase):
assert("""
<adif_ver:3>1.0
<programid:5>PyQSO
<programversion:3>0.1
<programversion:8>0.2a-dev
<eoh>
<call:7>TEST123
<qso_date:8>20120402

Wyświetl plik

@ -21,7 +21,7 @@
from distutils.core import setup
setup(name='PyQSO',
version='0.1',
version='0.2a-dev',
description='A contact logging tool for amateur radio operators.',
author='Christian Jacobs',
url='https://github.com/ctjacobs/pyqso',