[hamradio-commits] [linpsk] branch upstream updated (799f6ad -> 40fc6e3)

Iain R. Learmonth irl at moszumanska.debian.org
Fri Apr 15 14:02:39 UTC 2016


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

irl pushed a change to branch upstream
in repository linpsk.

     omits  799f6ad   Imported Upstream version 1.2
     omits  c026f86   Imported Upstream version 1.1
       new  f3148b4   Imported Upstream version 0.6.2
       new  7c31763   Imported Upstream version 0.7.1
       new  46b2295   Imported Upstream version 0.8.1
       new  9b6b4c5   Imported Upstream version 1.1
       new  cd0aec9   Imported Upstream version 1.2
       new  40fc6e3   Imported Upstream version 1.2.5~rc1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (799f6ad)
            \
             N -- N -- N   refs/heads/upstream (40fc6e3)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

The 6 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                              |   2 +
 ChangeLog                               |  28 +
 README                                  |  24 +-
 data/linpsk.appdata.xml                 |  31 ++
 data/linpsk.desktop                     |  11 +
 gui/activatemacros.cpp                  | 102 ++++
 gui/{deletemacro.h => activatemacros.h} |  41 +-
 gui/activatemacros.ui                   | 228 ++++++++
 gui/addmacro.cpp                        |   2 +-
 gui/addmacro.h                          |   2 +-
 gui/addrxwindow.cpp                     |   2 +-
 gui/addrxwindow.h                       |   2 +-
 gui/controlpanel.cpp                    |  14 +-
 gui/controlpanel.h                      |   4 +-
 gui/ctxdisplay.cpp                      |  11 +-
 gui/ctxdisplay.h                        |   5 +-
 gui/ctxdisplay.ui                       |   5 +-
 gui/deletemacro.cpp                     |   2 +-
 gui/deletemacro.h                       |   2 +-
 gui/editmacro.cpp                       |  12 +-
 gui/editmacro.h                         |   2 +-
 gui/editmacro.ui                        |  19 +
 gui/generalsettings.cpp                 | 140 +++--
 gui/generalsettings.h                   |   2 +-
 gui/generalsettings.ui                  | 133 +++--
 gui/gui.pro                             |  76 ---
 gui/linpsk.cpp                          |  78 ++-
 gui/linpsk.h                            |   6 +-
 gui/linpsk.ui                           |  87 ++-
 gui/macrocontrol.cpp                    |   2 +-
 gui/modemenu.cpp                        |   2 +-
 gui/modemenu.h                          |   2 +-
 gui/qsodata.cpp                         |  46 +-
 gui/qsodata.h                           |   1 +
 gui/qsodata.ui                          |  35 +-
 gui/renamemacro.cpp                     |   2 +-
 gui/renamemacro.h                       |   2 +-
 gui/spectrumdisplay.cpp                 |  18 +-
 gui/spectrumdisplay.h                   |   1 +
 gui/txwindow.cpp                        |  25 +-
 gui/txwindow.h                          |   6 +-
 images/linpsk_32x32.png                 | Bin 0 -> 1066 bytes
 images/linpsk_48x48.png                 | Bin 0 -> 1309 bytes
 images/linpsk_64x64.png                 | Bin 0 -> 620 bytes
 linpsk.pro                              | 163 +++++-
 src/bpskdemodulator.cpp                 | 132 ++---
 src/cledbutton.cpp                      |  20 +-
 src/cledbutton.h                        |   9 +-
 src/constants.h                         |  10 +-
 src/crxchannel.cpp                      |   1 +
 src/crxwindow.cpp                       |  73 ++-
 src/crxwindow.h                         |  95 ++--
 src/csound.cpp                          |  83 ++-
 src/csound.h                            |   3 +
 src/csquelch.cpp                        |   4 -
 src/ctxbuffer.cpp                       |   4 +-
 src/ctxdisplay.cpp                      | 120 ----
 src/ctxdisplay.h                        |  60 --
 src/mfskdemodulator.cpp                 |   4 +-
 src/mfskmodulator.cpp                   |   2 +-
 src/parameter.cpp                       |   9 +-
 src/parameter.h                         |  26 +-
 src/pskmodulator.cpp                    |  10 +-
 src/qpskdemodulator.cpp                 |   6 +-
 src/spectrumwindow.cpp                  |   2 +
 src/src.pro                             | 120 ----
 src/textinput.cpp                       |   4 +-
 src/viterbi.cpp                         |   4 +-
 src/viterbi.h                           |   8 +-
 src/viterbisoft.cpp                     | 953 --------------------------------
 src/viterbisoft.h                       |  75 ---
 src/waveinput.cpp                       |   9 +-
 72 files changed, 1330 insertions(+), 1894 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 data/linpsk.appdata.xml
 create mode 100644 data/linpsk.desktop
 create mode 100644 gui/activatemacros.cpp
 copy gui/{deletemacro.h => activatemacros.h} (75%)
 create mode 100644 gui/activatemacros.ui
 delete mode 100644 gui/gui.pro
 create mode 100755 images/linpsk_32x32.png
 create mode 100755 images/linpsk_48x48.png
 create mode 100755 images/linpsk_64x64.png
 delete mode 100644 src/ctxdisplay.cpp
 delete mode 100644 src/ctxdisplay.h
 delete mode 100644 src/src.pro
 delete mode 100644 src/viterbisoft.cpp
 delete mode 100644 src/viterbisoft.h

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



More information about the pkg-hamradio-commits mailing list