Moving PyQSO from version 0.1a to version 0.1b.

pull/17/head
Christian Jacobs 2013-10-04 20:03:05 +01:00
rodzic 0310984f56
commit bb177677df
4 zmienionych plików z 6 dodań i 6 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.1a")
Gtk.Window.__init__(self, title="PyQSO 0.1b")
# 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.1a")
about.set_version("0.1b")
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.1a}
\LARGE{Version 0.1b}
\end{center}
\end{titlepage}

Wyświetl plik

@ -201,7 +201,7 @@ class ADIF:
<adif_ver:5>%s
<programid:5>PyQSO
<programversion:4>0.1a
<programversion:4>0.1b
<eoh>\n""" % (dt, len(records), ADIF_VERSION))
# Then write each log to the file.
@ -417,7 +417,7 @@ class TestADIF(unittest.TestCase):
assert("""
<adif_ver:5>1.0
<programid:5>PyQSO
<programversion:4>0.1a
<programversion:4>0.1b
<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.1a',
version='0.1b',
description='A contact logging tool for amateur radio operators.',
author='Christian Jacobs',
url='https://github.com/ctjacobs/pyqso',