ZZPicon RJ

jenseneverest

Registered
Messages
178
Sorry to this to you mate....
It would appear the image makers are changing the way images find picons from service reference to service name...
It has already been included in latest openvix builds...

The commit is below. It is opensource and other image makers are free to adopt this.
https://github.com/OpenViX/enigma2/c...382e525031966e




# picon by channel name


name = unicodedata.normalize('NFKD', unicode(name, 'utf_8')).encode('ASCII', 'ignore')
excludeChars = ['/', '\\', '\'', '"', '`', '?', ' ', '(', ')', ':', '<', '>', '|', '.', '\n']


name = name.replace('&', 'and')
name = name.replace('+', 'plus')
name = name.replace('*', 'star')
name = name.lower()


Hypothetical channel "DDC One London +1" will require a picon called "ddconelondonplus1.png"

Have you got a list with picons named rather than referenced ??

Thanks
 
Top