No, they are not. Changes are required to a few screens that the button names changed. For example few screens used a button named "cancel" and this changed to "key_red".
If you want to automate your code and not have to think about buttons again, you can use the new feature. Look here how to use it: https://github.com/l...mplates.xml#L87
If you don't use png icons for your buttons, you can just put something like the following into your skin templates, and remove all buttons from each screen you have.
<screen name="Buttons">
<widget objectTypes="key_red,Button,Label" name="key_red" position="0,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
<widget objectTypes="key_green,Label,Button" name="key_green" position="320,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
<widget objectTypes="key_yellow,Label,Button" name="key_yellow" position="640,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
<widget objectTypes="key_blue,Label,Button" name="key_blue" position="960,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
<widget objectTypes="key_red,StaticText" source="key_red" render="Label" position="0,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
<widget objectTypes="key_green,StaticText" source="key_green" render="Label" position="320,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
<widget objectTypes="key_yellow,StaticText" source="key_yellow" render="Label" position="640,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
<widget objectTypes="key_blue,StaticText" source="key_blue" render="Label" position="960,810" size="320,70" backgroundColor="transpBA" font="Button" halign="center" valign="center" zPosition="1" transparent="1"/>
</screen>
Edited by nautilus, 1 February 2018 - 00:37.