Move to version 0.1.

The main changes since v0.1b are:
- The ADIF export functionality has been fixed. Previously, only markers were being written and the actual record data was being skipped.
- The BEL character has been removed from the data received from the DX cluster.
- The 'Notes' column is no longer automatically resized.
- QSOs can now be sorted in the correct chronological order.
pull/17/head
Christian Jacobs 2014-03-22 21:07:35 +00:00
rodzic 54b3953ac7
commit 8df7019ad9
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.1b")
Gtk.Window.__init__(self, title="PyQSO 0.1")
# 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.1b")
about.set_version("0.1")
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.1b}
\LARGE{Version 0.1}
\end{center}
\end{titlepage}

Wyświetl plik

@ -201,7 +201,7 @@ class ADIF:
<adif_ver:%d>%s
<programid:5>PyQSO
<programversion:4>0.1b
<programversion:4>0.1
<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:4>0.1b
<programversion:4>0.1
<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:4>0.1b
<programversion:4>0.1
<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.1b',
version='0.1',
description='A contact logging tool for amateur radio operators.',
author='Christian Jacobs',
url='https://github.com/ctjacobs/pyqso',