[hamradio-commits] [pyqso] branch master updated (1f433e9 -> 5e7d239)

Iain R. Learmonth irl at moszumanska.debian.org
Sun Aug 6 17:09:58 UTC 2017


This is an automated email from the git hooks/post-receive script.

irl pushed a change to branch master
in repository pyqso.

      from  1f433e9   Imported Debian patch 0.3-1.1
       new  6c9c422   New upstream version 1.0.0
       new  9861630   Merge tag 'upstream/1.0.0'
       new  5953c79   Updates for new version
       new  5e7d239   Updated changelog for release

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                      |    1 -
 .travis.yml                                     |    4 +-
 CHANGELOG.md                                    |   34 +-
 Makefile                                        |    8 +-
 README.md                                       |   35 +-
 bin/pyqso                                       |  145 +-
 debian/changelog                                |   17 +
 debian/control                                  |   13 +-
 debian/install                                  |    1 +
 debian/patches/fix_icon_path.patch              |   24 -
 debian/patches/series                           |    1 -
 debian/rules                                    |   11 +-
 docs/source/conf.py                             |   12 +-
 docs/source/getting_started.rst                 |   27 +-
 docs/source/images/awards.png                   |  Bin 11055 -> 10218 bytes
 docs/source/images/dx_cluster.png               |  Bin 39147 -> 62052 bytes
 docs/source/images/edit_record.png              |  Bin 47239 -> 46054 bytes
 docs/source/images/grey_line.png                |  Bin 65869 -> 63835 bytes
 docs/source/images/logbook.png                  |  Bin 125221 -> 99535 bytes
 docs/source/images/summary.png                  |  Bin 52682 -> 50916 bytes
 docs/source/introduction.rst                    |   24 +-
 docs/source/log_management.rst                  |   31 +-
 docs/source/preferences.rst                     |   44 +-
 docs/source/pyqso.rst                           |   56 +
 docs/source/record_management.rst               |    5 +-
 docs/source/shortcuts.rst                       |    2 +-
 docs/source/toolbox.rst                         |    8 +-
 pyqso/adif.py                                   |  270 +-
 pyqso/auxiliary_dialogs.py                      |   12 +-
 pyqso/awards.py                                 |   67 +-
 pyqso/blank.py                                  |   62 +
 pyqso/cabrillo.py                               |  105 +
 pyqso/cabrillo_export_dialog.py                 |   70 +
 pyqso/calendar_dialog.py                        |   60 +
 pyqso/callsign_lookup.py                        |  312 +-
 pyqso/compare.py                                |   73 +
 pyqso/dx_cluster.py                             |  256 +-
 pyqso/grey_line.py                              |   63 +-
 pyqso/log.py                                    |  376 +-
 pyqso/log_name_dialog.py                        |   43 +-
 pyqso/logbook.py                                | 1081 +++---
 pyqso/menu.py                                   |  275 +-
 pyqso/preferences_dialog.py                     |  645 ++--
 pyqso/printer.py                                |  132 +
 pyqso/record_dialog.py                          |  545 ++-
 {icons => pyqso/res}/log_1024x1024.xcf          |  Bin
 {icons => pyqso/res}/log_14x14.png              |  Bin
 {icons => pyqso/res}/log_192x192.png            |  Bin
 {icons => pyqso/res}/log_64x64.png              |  Bin
 pyqso/res/pyqso.glade                           | 4429 +++++++++++++++++++++++
 pyqso/summary.py                                |  238 ++
 pyqso/telnet_connection_dialog.py               |  125 +-
 pyqso/toolbar.py                                |   97 +-
 pyqso/toolbox.py                                |   50 +-
 setup.py                                        |   39 +-
 tests/res/ADIF.test_read.adi                    |    4 +
 tests/res/ADIF.test_read_alphabet.adi           |    2 +
 tests/res/ADIF.test_read_capitalisation.adi     |    2 +
 tests/res/ADIF.test_read_header_only.adi        |    1 +
 tests/res/ADIF.test_read_multiple.adi           |    9 +
 tests/res/ADIF.test_read_no_header.adi          |    1 +
 tests/res/invalid.db                            |    1 +
 {pyqso/unittest_resources => tests/res}/test.db |  Bin 3072 -> 4096 bytes
 tests/test_adif.py                              |  200 +
 tests/test_awards.py                            |   54 +
 tests/test_cabrillo.py                          |   61 +
 tests/test_calendar_dialog.py                   |   45 +
 tests/test_callsign_lookup.py                   |  141 +
 tests/test_compare.py                           |   85 +
 tests/test_dx_cluster.py                        |   49 +
 tests/test_log.py                               |  227 ++
 tests/test_logbook.py                           |  144 +
 tests/test_printer.py                           |   52 +
 tests/test_record_dialog.py                     |  111 +
 tests/test_summary.py                           |   72 +
 75 files changed, 8385 insertions(+), 2804 deletions(-)
 delete mode 100644 debian/patches/fix_icon_path.patch
 create mode 100644 pyqso/blank.py
 create mode 100644 pyqso/cabrillo.py
 create mode 100644 pyqso/cabrillo_export_dialog.py
 create mode 100644 pyqso/calendar_dialog.py
 create mode 100644 pyqso/compare.py
 create mode 100644 pyqso/printer.py
 rename {icons => pyqso/res}/log_1024x1024.xcf (100%)
 rename {icons => pyqso/res}/log_14x14.png (100%)
 rename {icons => pyqso/res}/log_192x192.png (100%)
 rename {icons => pyqso/res}/log_64x64.png (100%)
 create mode 100644 pyqso/res/pyqso.glade
 create mode 100644 pyqso/summary.py
 create mode 100644 tests/res/ADIF.test_read.adi
 create mode 100644 tests/res/ADIF.test_read_alphabet.adi
 create mode 100644 tests/res/ADIF.test_read_capitalisation.adi
 create mode 100644 tests/res/ADIF.test_read_header_only.adi
 create mode 100644 tests/res/ADIF.test_read_multiple.adi
 create mode 100644 tests/res/ADIF.test_read_no_header.adi
 create mode 100644 tests/res/invalid.db
 rename {pyqso/unittest_resources => tests/res}/test.db (54%)
 create mode 100644 tests/test_adif.py
 create mode 100644 tests/test_awards.py
 create mode 100644 tests/test_cabrillo.py
 create mode 100644 tests/test_calendar_dialog.py
 create mode 100644 tests/test_callsign_lookup.py
 create mode 100644 tests/test_compare.py
 create mode 100644 tests/test_dx_cluster.py
 create mode 100644 tests/test_log.py
 create mode 100644 tests/test_logbook.py
 create mode 100644 tests/test_printer.py
 create mode 100644 tests/test_record_dialog.py
 create mode 100644 tests/test_summary.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/pyqso.git



More information about the pkg-hamradio-commits mailing list