Skip to content

Commit

Permalink
Bump protocol number
Browse files Browse the repository at this point in the history
Fixes #6256
  • Loading branch information
Beirdo committed May 27, 2011
1 parent c7de5d7 commit 64d448a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions mythtv/bindings/perl/MythTV.pm
Expand Up @@ -106,8 +106,8 @@ package MythTV;
# Note: as of July 21, 2010, this is actually a string, to account for proto
# versions of the form "58a". This will get used if protocol versions are
# changed on a fixes branch ongoing.
our $PROTO_VERSION = "65";
our $PROTO_TOKEN = "D2BB94C2";
our $PROTO_VERSION = "66";
our $PROTO_TOKEN = "0C0FFEE0";

# currentDatabaseVersion is defined in libmythtv in
# mythtv/libs/libmythtv/dbcheck.cpp and should be the current MythTV core
Expand Down
4 changes: 2 additions & 2 deletions mythtv/bindings/php/MythBackend.php
Expand Up @@ -11,8 +11,8 @@ class MythBackend {

// MYTH_PROTO_VERSION is defined in libmyth in mythtv/libs/libmyth/mythcontext.h
// and should be the current MythTV protocol version.
static $protocol_version = '65';
static $protocol_token = 'D2BB94C2';
static $protocol_version = '66';
static $protocol_token = '0C0FFEE0';

// The character string used by the backend to separate records
static $backend_separator = '[]:[]';
Expand Down
4 changes: 2 additions & 2 deletions mythtv/bindings/python/MythTV/static.py
Expand Up @@ -8,8 +8,8 @@
SCHEMA_VERSION = 1275
NVSCHEMA_VERSION = 1007
MUSICSCHEMA_VERSION = 1018
PROTO_VERSION = '65'
PROTO_TOKEN = 'D2BB94C2'
PROTO_VERSION = '66'
PROTO_TOKEN = '0C0FFEE0'
BACKEND_SEP = '[]:[]'
INSTALL_PREFIX = '/usr/local'

Expand Down
4 changes: 2 additions & 2 deletions mythtv/libs/libmythbase/mythversion.h
Expand Up @@ -35,8 +35,8 @@
* mythtv/bindings/python/MythTV/static.py (version number)
* mythtv/bindings/python/MythTV/mythproto.py (layout)
*/
#define MYTH_PROTO_VERSION "65"
#define MYTH_PROTO_TOKEN "D2BB94C2"
#define MYTH_PROTO_VERSION "66"
#define MYTH_PROTO_TOKEN "0C0FFEE0"

MBASE_PUBLIC const char *GetMythSourceVersion();

Expand Down

0 comments on commit 64d448a

Please sign in to comment.