Skip to content

Commit 2a000c5

Browse files
committed
New names, numbers.
1 parent 4e39602 commit 2a000c5

4 files changed

Lines changed: 16 additions & 15 deletions

File tree

README

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
This is Multicast DNS Service Discovery for Python v0.13-wmcbrine
1+
This is Multicast DNS Service Discovery for Python v0.14-wmcbrine
22
Originally by Paul Scott-Murphy, modified by William McBrine.
33

4-
Zeroconf.py is the implementation file, look at the end for examples of
5-
basic use. You can also view Browser.py to see how to browse for services.
4+
zeroconf.py is the implementation file, look at the end for examples of
5+
basic use. You can also view zwebbrowse.py to see how to browse for
6+
services.
67

78
This fork is used in all of my TiVo-related projects: HME for Python
8-
(and therefore HME/VLC), Network Remote, and pyTivo. Until now, I was
9-
tracking the changes for Zeroconf.py in three separate repos. I figured
10-
I should have an authoritative source.
9+
(and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo.
10+
Before this, I was tracking the changes for zeroconf.py in three
11+
separate repos. I figured I should have an authoritative source.
1112

1213
Although I make changes based on my experience with TiVos, I expect that
1314
they're generally applicable. This version also includes patches found

zeroconf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
""" Multicast DNS Service Discovery for Python, v0.13-wmcbrine
2-
Copyright 2003 Paul Scott-Murphy, 2013 William McBrine
1+
""" Multicast DNS Service Discovery for Python, v0.14-wmcbrine
2+
Copyright 2003 Paul Scott-Murphy, 2014 William McBrine
33
44
This module provides a framework for the use of DNS Service Discovery
55
using IP multicast.
@@ -23,7 +23,7 @@
2323

2424
__author__ = 'Paul Scott-Murphy'
2525
__maintainer__ = 'William McBrine <wmcbrine@gmail.com>'
26-
__version__ = '0.13-wmcbrine'
26+
__version__ = '0.14-wmcbrine'
2727
__license__ = 'LGPL'
2828

2929
import time

zunittest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
""" Multicast DNS Service Discovery for Python, v0.13-wmcbrine
2-
Copyright 2003 Paul Scott-Murphy, 2013 William McBrine
1+
""" Multicast DNS Service Discovery for Python, v0.14-wmcbrine
2+
Copyright 2003 Paul Scott-Murphy, 2014 William McBrine
33
44
This module provides a unit test suite for the Multicast DNS
55
Service Discovery for Python module.
@@ -23,7 +23,7 @@
2323

2424
__author__ = 'Paul Scott-Murphy'
2525
__maintainer__ = 'William McBrine <wmcbrine@gmail.com>'
26-
__version__ = '0.13-wmcbrine'
26+
__version__ = '0.14-wmcbrine'
2727
__license__ = 'LGPL'
2828

2929
import zeroconf as r

zwebtest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
""" Multicast DNS Service Discovery for Python, v0.13-wmcbrine
2-
Copyright 2003 Paul Scott-Murphy, 2013 William McBrine
1+
""" Multicast DNS Service Discovery for Python, v0.14-wmcbrine
2+
Copyright 2003 Paul Scott-Murphy, 2014 William McBrine
33
44
This module provides a unit test suite for the Multicast DNS
55
Service Discovery for Python module.
@@ -23,7 +23,7 @@
2323

2424
__author__ = 'Paul Scott-Murphy'
2525
__maintainer__ = 'William McBrine <wmcbrine@gmail.com>'
26-
__version__ = '0.13-wmcbrine'
26+
__version__ = '0.14-wmcbrine'
2727
__license__ = 'LGPL'
2828

2929
from zeroconf import *

0 commit comments

Comments
 (0)