Rev3135, Add fileNeed command compatibility to merger sites
This commit is contained in:
parent
4483180569
commit
9d09890457
2 changed files with 4 additions and 1 deletions
|
@ -158,6 +158,9 @@ class UiWebsocketPlugin(object):
|
|||
def actionFileRules(self, to, inner_path, *args, **kwargs):
|
||||
return self.mergerFuncWrapper("actionFileRules", to, inner_path, *args, **kwargs)
|
||||
|
||||
def actionFileNeed(self, to, inner_path, *args, **kwargs):
|
||||
return self.mergerFuncWrapper("actionFileNeed", to, inner_path, *args, **kwargs)
|
||||
|
||||
def actionOptionalFileInfo(self, to, inner_path, *args, **kwargs):
|
||||
return self.mergerFuncWrapper("actionOptionalFileInfo", to, inner_path, *args, **kwargs)
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ class Config(object):
|
|||
|
||||
def __init__(self, argv):
|
||||
self.version = "0.6.0"
|
||||
self.rev = 3134
|
||||
self.rev = 3135
|
||||
self.argv = argv
|
||||
self.action = None
|
||||
self.config_file = "zeronet.conf"
|
||||
|
|
Loading…
Reference in a new issue