Hi,
I am trying to add some boolean preferences to my v2 plugin (https://github.com/chhitz/teleboyPlugin). I have added the following to the DefaultPrefs.json:
[<br />
{<br />
"id": "channels_de",<br />
"label": "German channels",<br />
"type": "boolean",<br />
"default": "true"<br />
},<br />
{<br />
"id": "channels_fr",<br />
"label": "French channels",<br />
"type": "boolean",<br />
"default": "false"<br />
},<br />
{<br />
"id": "channels_it",<br />
"label": "Italien channels",<br />
"type": "boolean",<br />
"default": "false"<br />
},<br />
{<br />
"id": "channels_en",<br />
"label": "English channels",<br />
"type": "boolean",<br />
"default": "false"<br />
}<br />
]
The JSON parses fine (no errors in the log). Also the other (non boolean) preferences work fine. Only the booleans do not appear in the preferences dialog.
Do you have any pointers or suggestions?
Thanks.