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). """ """ 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) # 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 # Get any application-specific preferences from the configuration file
config = ConfigParser.ConfigParser() config = ConfigParser.ConfigParser()
@ -113,7 +113,7 @@ class PyQSO(Gtk.Window):
about.set_modal(True) about.set_modal(True)
about.set_transient_for(parent=self) about.set_transient_for(parent=self)
about.set_program_name("PyQSO") about.set_program_name("PyQSO")
about.set_version("0.1a") about.set_version("0.1b")
about.set_authors(["Christian Jacobs"]) about.set_authors(["Christian Jacobs"])
about.set_license("""This program is free software: you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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