Skip to content

Commit

Permalink
Change the backend protocol version to '23056' to signify that
Browse files Browse the repository at this point in the history
this is different than 56 in -fixes and -trunk.  We have already
used '57' in trunk, so we don't want to use 57 here as set by
[25364].

The internal value is stored as a string, but MythWeb and the
bindings treat this as an int, so we couldn't just put '56b'
or some other non-numeric string.



git-svn-id: http://svn.mythtv.org/svn/branches/release-0-23-fixes@25366 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
cpinkham committed Jul 17, 2010
1 parent 40012a4 commit feafbbc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mythtv/bindings/perl/MythTV.pm
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ package MythTV;

# MYTH_PROTO_VERSION is defined in libmyth in mythtv/libs/libmyth/mythcontext.h
# and should be the current MythTV protocol version.
our $PROTO_VERSION = 56;
our $PROTO_VERSION = 23056;

# NUMPROGRAMLINES is defined in mythtv/libs/libmythtv/programinfo.h and is
# the number of items in a ProgramInfo QStringList group used by
Expand Down
2 changes: 1 addition & 1 deletion mythtv/bindings/python/MythTV/MythStatic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
SCHEMA_VERSION = 1254
MVSCHEMA_VERSION = 1032
NVSCHEMA_VERSION = 1004
PROTO_VERSION = 56
PROTO_VERSION = 23056
PROGRAM_FIELDS = 47
BACKEND_SEP = '[]:[]'
6 changes: 3 additions & 3 deletions mythtv/libs/libmythdb/mythversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
* mythtv/bindings/perl/MythTV/Program.pm (layout)
*
* MythTV Python Bindings
* mythtv/bindings/python/MythTV/MythTV.py (version number)
* mythtv/bindings/python/MythTV/MythTV.py (layout)
* mythtv/bindings/python/MythTV/MythStatic.py (version number)
* mythtv/bindings/python/MythTV/MythData.py (layout)
*/
#define MYTH_PROTO_VERSION "57"
#define MYTH_PROTO_VERSION "23056"

MPUBLIC const char *GetMythSourceVersion();

Expand Down

0 comments on commit feafbbc

Please sign in to comment.