Jump to content


technic

Member Since 1 Jun 2012
Offline Last Active 04 Oct 2021 13:01
-----

Posts I've Made

In Topic: Openpli 8.0 ffmpeg problem

15 May 2021 - 13:01

But on Openpli now the exteplayer3 repo has been changed to technic: https://github.com/O...74ca7f1aa89304a

Whoa... this is a fork which I did as a backup, when samsamsam announced he closes the project. No plans for improvements :D


In Topic: Enigma2 plugins development in VS Code with Docker

3 April 2021 - 14:27

@Opvolger. If you want to have plugin under F4 button use the following example code

from Plugins.Plugin import PluginDescriptor
from Screens.MessageBox import MessageBox


def start(session):
    session.open(MessageBox, "Hello World!")


def Plugins(path, **kwargs):
    return [
        PluginDescriptor(name="Example", where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=start)
    ]

It's a bug in enigma2 that it crashes when extensions list is empty. Maybe I have to update it.


In Topic: Enigma2 plugins development in VS Code with Docker

25 March 2021 - 10:45

Hi, your last commit fixed this problem. Thanks

Great


In Topic: e2designer (alpha)

27 January 2021 - 21:23

Also one more Big issue ....

Hi, I don't develop it actively now. It suits my needs in a way it is now, but you are welcome to send patches.

The code is quite shitty since it was my first try with QGraphicsScene.


In Topic: e2designer (alpha)

24 September 2020 - 18:07

I added preliminary support for TemplatedMultiContent, with help of a toy python parser.