Ticket #12442: proto_token.patch

File proto_token.patch, 2.2 KB (added by Bill Meek <keemllib@…>, 9 years ago)
  • mythtv/bindings/perl/MythTV.pm

    diff --git a/mythtv/bindings/perl/MythTV.pm b/mythtv/bindings/perl/MythTV.pm
    index b99d529..9288116 100644
    a b package MythTV; 
    108108# versions of the form "58a".  This will get used if protocol versions are
    109109# changed on a fixes branch ongoing.
    110110    our $PROTO_VERSION = "86";
    111     our $PROTO_TOKEN = "(ノಠ益ಠ)ノ圡┻━┻";
     111    our $PROTO_TOKEN = "AbhorrentBehavior;
    112112
    113113# currentDatabaseVersion is defined in libmythtv in
    114114# mythtv/libs/libmythtv/dbcheck.cpp and should be the current MythTV core
  • mythtv/bindings/php/MythBackend.php

    diff --git a/mythtv/bindings/php/MythBackend.php b/mythtv/bindings/php/MythBackend.php
    index 459be1d..be242f0 100644
    a b class MythBackend { 
    1212// MYTH_PROTO_VERSION is defined in libmyth in mythtv/libs/libmyth/mythcontext.h
    1313// and should be the current MythTV protocol version.
    1414    static $protocol_version        = '86';
    15     static $protocol_token          = '(ノಠ益ಠ)ノ圡┻━┻';
     15    static $protocol_token          = 'AbhorrentBehavior';
    1616
    1717// The character string used by the backend to separate records
    1818    static $backend_separator       = '[]:[]';
  • mythtv/bindings/python/MythTV/static.py

    diff --git a/mythtv/bindings/python/MythTV/static.py b/mythtv/bindings/python/MythTV/static.py
    index e62c8ec..fe52ea9 100644
    a b SCHEMA_VERSION = 1339 
    99NVSCHEMA_VERSION = 1007
    1010MUSICSCHEMA_VERSION = 1018
    1111PROTO_VERSION = '85'
    12 PROTO_TOKEN = '(ノಠ益ಠ)ノ圡┻━┻'
     12PROTO_TOKEN = 'AbhorrentBehavior'
    1313BACKEND_SEP = '[]:[]'
    1414INSTALL_PREFIX = '/usr/local'
    1515
  • mythtv/libs/libmythbase/mythversion.h

    diff --git a/mythtv/libs/libmythbase/mythversion.h b/mythtv/libs/libmythbase/mythversion.h
    index 9318e55..01311e1 100644
    a b  
    4444 *       http://www.mythtv.org/wiki/Category:Myth_Protocol
    4545 */
    4646#define MYTH_PROTO_VERSION "86"
    47 #define MYTH_PROTO_TOKEN "(ノಠ益ಠ)ノ圡┻━┻"
     47#define MYTH_PROTO_TOKEN "AbhorrentBehavior"
    4848
    4949/** \brief Increment this whenever the MythTV core database schema changes.
    5050 *