Check-in [b49c38af77]
Overview
| Comment: | Fix config defaults registration. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
b49c38af77a621419582120c9cb37ef7 |
| User & Date: | mario on 2015-04-02 15:27:01 |
| Other Links: | manifest | tags |
Context
|
2015-04-02
| ||
| 15:28 | Changed plugin config: options default registration to use full .meta[] now instead of just config[] list. Thus plugins can be enabled/disabled right away based on priority: field. (On first startup all channels will show up however.) check-in: a05da9d33d user: mario tags: trunk | |
| 15:27 | Fix config defaults registration. check-in: b49c38af77 user: mario tags: trunk | |
| 15:26 | Updated punkcast to display again, also show banners now instead of empty columns, and embedded favicon/png. check-in: 8130cc2cdc user: mario tags: trunk | |
Changes
Modified channels/global_key.py from [cc1be2e9de] to [b551af8b08].
| ︙ | ︙ | |||
34 35 36 37 38 39 40 |
meta = plugin_meta()
last = 0
# register
def __init__(self, parent):
self.parent = parent
| | | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
meta = plugin_meta()
last = 0
# register
def __init__(self, parent):
self.parent = parent
conf.add_plugin_defaults(self.meta, self.module)
try:
for i,keyname in enumerate(conf.switch_key.split(",")): # allow multiple keys
keybinder.bind(keyname, self.switch, ((-1 if i else +1))) # forward +1 or backward -1
except:
__print__(dbg.ERR, "plugin global_key: Key `%s` could not be registered" % conf.switch_key)
|
| ︙ | ︙ |