Skip to content

Commit

Permalink
Increment myth proto and services versions.
Browse files Browse the repository at this point in the history
We now return the localtime and not the UTC time for the timezone queries.
  • Loading branch information
daniel-kristjansson committed May 30, 2012
1 parent 7e450b9 commit 1f8c590
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 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 = "74";
our $PROTO_TOKEN = "SingingPotato";
our $PROTO_VERSION = "75";
our $PROTO_TOKEN = "SweetRock";

# 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 = '74';
static $protocol_token = 'SingingPotato';
static $protocol_version = '75';
static $protocol_token = 'SweetRock';

// 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 = 1303
NVSCHEMA_VERSION = 1007
MUSICSCHEMA_VERSION = 1018
PROTO_VERSION = '74'
PROTO_TOKEN = 'SingingPotato'
PROTO_VERSION = '75'
PROTO_TOKEN = 'SweetRock'
BACKEND_SEP = '[]:[]'
INSTALL_PREFIX = '/usr/local'

Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/exitcodes.h
Expand Up @@ -19,7 +19,7 @@
#define GENERIC_EXIT_PERMISSIONS_ERROR 136 ///< File permissions error
#define GENERIC_EXIT_CONNECT_ERROR 137 ///< Can't connect to master backend
#define GENERIC_EXIT_SETUP_ERROR 138 ///< Incorrectly setup system
#define GENERIC_EXIT_INVALID_TIMEZONE 139 ///< Invalid timezone
#define GENERIC_EXIT_INVALID_TIME 139 ///< Invalid time
#define GENERIC_EXIT_KILLED 140 ///< Process killed or stopped
#define GENERIC_EXIT_TIMEOUT 141 ///< Process timed out
#define GENERIC_EXIT_RUNNING 142 ///< Process is running
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 "74"
#define MYTH_PROTO_TOKEN "SingingPotato"
#define MYTH_PROTO_VERSION "75"
#define MYTH_PROTO_TOKEN "SweetRock"

/** \brief Increment this whenever the MythTV core database schema changes.
*
Expand Down
Expand Up @@ -42,7 +42,7 @@
class SERVICE_PUBLIC MythServices : public Service //, public QScriptable ???
{
Q_OBJECT
Q_CLASSINFO( "version" , "1.04" );
Q_CLASSINFO( "version" , "2.0" );
Q_CLASSINFO( "PutSetting_Method", "POST" )
Q_CLASSINFO( "AddStorageGroupDir_Method", "POST" )
Q_CLASSINFO( "RemoveStorageGroupDir_Method", "POST" )
Expand Down

0 comments on commit 1f8c590

Please sign in to comment.