|
15 | 15 |
|
16 | 16 | NAME = 'WebTools'
|
17 | 17 | ICON = 'WebTools.png'
|
18 |
| -VERSION = '2.1' |
| 18 | +VERSION = '2.2' |
19 | 19 | AUTHTOKEN = ''
|
20 | 20 | SECRETKEY = ''
|
| 21 | +DEBUGMODE = False |
21 | 22 |
|
22 | 23 |
|
23 | 24 | #********** Imports needed *********
|
|
33 | 34 | #********** Initialize *********
|
34 | 35 | def Start():
|
35 | 36 | global SECRETKEY
|
36 |
| - PLUGIN_VERSION = VERSION |
37 |
| - print("******** Started %s on %s **********" %(NAME + ' V' + PLUGIN_VERSION, Platform.OS)) |
38 |
| - Log.Debug("******* Started %s on %s ***********" %(NAME + ' V' + PLUGIN_VERSION, Platform.OS)) |
| 37 | + global VERSION |
| 38 | + global DEBUGMODE |
| 39 | + # Switch to debug mode if needed |
| 40 | + debugFile = Core.storage.join_path(Core.app_support_path, Core.config.bundles_dir_name, NAME + '.bundle', 'debug') |
| 41 | + DEBUGMODE = os.path.isfile(debugFile) |
| 42 | + if DEBUGMODE: |
| 43 | + VERSION = VERSION + ' ****** WARNING Debug mode on *********' |
| 44 | + print("******** Started %s on %s **********" %(NAME + ' V' + VERSION, Platform.OS)) |
| 45 | + Log.Debug("******* Started %s on %s ***********" %(NAME + ' V' + VERSION, Platform.OS)) |
39 | 46 | HTTP.CacheTime = 0
|
40 | 47 | DirectoryObject.thumb = R(ICON)
|
41 |
| - ObjectContainer.title1 = NAME + ' V' + PLUGIN_VERSION |
| 48 | + ObjectContainer.title1 = NAME + ' V' + VERSION |
42 | 49 | Plugin.AddViewGroup('List', viewMode='List', mediaType='items')
|
43 | 50 | ObjectContainer.view_group = 'List'
|
44 | 51 | makeSettings()
|
45 | 52 |
|
46 | 53 | # Get the secret key used to access the PMS framework ********** FUTURE USE ***************
|
47 | 54 | SECRETKEY = genSecretKeyAsStr()
|
48 |
| - startWeb(SECRETKEY) |
| 55 | + startWeb(SECRETKEY, VERSION, DEBUGMODE) |
49 | 56 |
|
50 | 57 | ####################################################################################################
|
51 | 58 | # Generate secret key
|
@@ -89,6 +96,12 @@ def makeSettings():
|
89 | 96 | # Create the pwdset entry
|
90 | 97 | if Dict['pwdset'] == None:
|
91 | 98 | Dict['pwdset'] = False
|
| 99 | + # Init the installed dict |
| 100 | + if Dict['installed'] == None: |
| 101 | + Dict['installed'] = {} |
| 102 | + # Init the allBundle Dict |
| 103 | + if Dict['PMS-AllBundleInfo'] == None: |
| 104 | + Dict['PMS-AllBundleInfo'] = {} |
92 | 105 | return
|
93 | 106 |
|
94 | 107 | ####################################################################################################
|
|
0 commit comments