[mythtv-commits] mythtv branch master updated by pbennett. v29-pre-385-g65f9928

Git Repo Owner noreply at mythtv.org
Tue Apr 11 18:50:07 UTC 2017


The branch, master has been updated on the
mythtv repository by gitolite user pbennett.
       via  65f99284fc68da0446dbdf711b6ee9bee6fd4ddf (commit)
       via  ed3b8d4be9c34ff878b4c68d746e8f119a6fe3c8 (commit)
       via  4920cb2c590e609564524f684f67acebb370f9fe (commit)
       via  f96871d2a216d7775249bfea96cac0c221ec0b04 (commit)
       via  e6f11ce287d467053de719402fbcad5f6fb8047c (commit)
      from  83c67a0c7b5eec295e9cad757ff6edc1438078ff (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 65f99284fc68da0446dbdf711b6ee9bee6fd4ddf
Author:    Peter Bennett <pbennett at mythtv.org> at Tue, 11 Apr 2017 14:34:30 -0400
Committer: Peter Bennett <pbennett at mythtv.org> at Tue, 11 Apr 2017 14:49:20 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=65f99284fc68da0446dbdf711b6ee9bee6fd4ddf

Fix Channel editor missing setting
Add the Freqid setting to the common settings of channel editor
because this is required for Firewire, Ceton, HD Homerun Prime,
and maybe others.

Fixes #10994



commit ed3b8d4be9c34ff878b4c68d746e8f119a6fe3c8
Author:    Peter Bennett <pbennett at mythtv.org> at Tue, 11 Apr 2017 14:33:12 -0400
Committer: Peter Bennett <pbennett at mythtv.org> at Tue, 11 Apr 2017 14:48:48 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=ed3b8d4be9c34ff878b4c68d746e8f119a6fe3c8

Frontend reset socket connections after resuming from suspend
Fixes #12229



commit 4920cb2c590e609564524f684f67acebb370f9fe
Author:    Peter Bennett <pbennett at mythtv.org> at Sat, 8 Apr 2017 14:11:19 -0400
Committer: Peter Bennett <pbennett at mythtv.org> at Tue, 11 Apr 2017 14:48:05 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=4920cb2c590e609564524f684f67acebb370f9fe

Add "Watch This Channel" to guide select menu when appropriate.
Fixes #13021



commit f96871d2a216d7775249bfea96cac0c221ec0b04
Author:    Peter Bennett <pbennett at mythtv.org> at Tue, 4 Apr 2017 15:29:49 -0400
Committer: Peter Bennett <pbennett at mythtv.org> at Tue, 11 Apr 2017 14:46:39 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=f96871d2a216d7775249bfea96cac0c221ec0b04

Removed checks for QT_NO_IPV6.
Refs #13024



commit e6f11ce287d467053de719402fbcad5f6fb8047c
Author:    Peter Bennett <pbennett at mythtv.org> at Tue, 4 Apr 2017 15:08:29 -0400
Committer: Peter Bennett <pbennett at mythtv.org> at Tue, 11 Apr 2017 14:45:19 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=e6f11ce287d467053de719402fbcad5f6fb8047c

Networking improvements
- Improved reliability by listening on all ip addresses, so that if an interface starts after mythtv, it will listen on that interface as well.
- Improved security by rejecting messages from outside your subnets.
- Above improvements can be overridden if desired.
- Simplified backend setup, only need to select one ip address or dns name instead of three.

Fixes #13024



-----------------------------------------------------------------------

Summary of changes:
 mythtv/bindings/perl/MythTV.pm                     |    7 +-
 mythtv/bindings/php/MythBackend.php                |    7 +-
 mythtv/bindings/python/MythTV/static.py            |    2 +-
 mythtv/libs/libmyth/mythcontext.cpp                |    8 +-
 mythtv/libs/libmyth/mythmediamonitor.cpp           |   15 +
 mythtv/libs/libmyth/mythmediamonitor.h             |    2 +
 mythtv/libs/libmythbase/mythcorecontext.cpp        |  186 +++++++++----
 mythtv/libs/libmythbase/mythcorecontext.h          |    4 +
 mythtv/libs/libmythbase/mythmiscutil.cpp           |    4 -
 mythtv/libs/libmythbase/mythsocket.cpp             |   34 ++-
 mythtv/libs/libmythbase/mythversion.h              |    2 +-
 mythtv/libs/libmythbase/serverpool.cpp             |   33 +-
 .../libs/libmythprotoserver/mythsocketmanager.cpp  |    6 +-
 .../requesthandler/fileserverhandler.cpp           |   32 +--
 mythtv/libs/libmythtv/cardutil.cpp                 |   30 ++
 mythtv/libs/libmythtv/cardutil.h                   |    1 +
 mythtv/libs/libmythtv/channelsettings.cpp          |   32 ++-
 mythtv/libs/libmythtv/channelsettings.h            |    6 +-
 mythtv/libs/libmythtv/dbcheck.cpp                  |   54 ++++
 mythtv/libs/libmythupnp/httpserver.cpp             |   10 +-
 mythtv/libs/libmythupnp/msocketdevice_unix.cpp     |   54 ----
 mythtv/libs/libmythupnp/upnp.cpp                   |   10 +-
 mythtv/libs/libmythupnp/upnpdevice.cpp             |    2 -
 mythtv/libs/libmythupnp/upnptasksearch.cpp         |    6 +-
 mythtv/libs/libmythupnp/websocket.cpp              |   10 +-
 mythtv/programs/mythbackend/mainserver.cpp         |  105 +++----
 mythtv/programs/mythbackend/mediaserver.cpp        |    8 +
 mythtv/programs/mythbackend/services/myth.cpp      |    6 +-
 mythtv/programs/mythbackend/upnpcdsmusic.cpp       |    2 +-
 mythtv/programs/mythbackend/upnpcdstv.cpp          |    4 +-
 mythtv/programs/mythbackend/upnpcdsvideo.cpp       |    6 +-
 mythtv/programs/mythfrontend/guidegrid.cpp         |   33 ++-
 mythtv/programs/mythfrontend/schedulecommon.cpp    |    5 +-
 mythtv/programs/mythfrontend/schedulecommon.h      |    2 +-
 mythtv/programs/mythtv-setup/backendsettings.cpp   |  311 +++++++++++++++++---
 mythtv/programs/mythtv-setup/backendsettings.h     |   25 ++-
 mythtv/programs/mythtv-setup/channeleditor.cpp     |   19 +-
 37 files changed, 750 insertions(+), 333 deletions(-)

-- 



More information about the mythtv-commits mailing list