Posts by Fjr74

    Tested on AIO image

    No FootOnSat ist installed

    Friend, you must install enigma2-plugin-extensions-footonsat_1.9-r0_all.deb that friend Kalkan99 attached

    Version 1.9

    use New api


    wget --no-check-certificate https://raw.githubusercontent.com/MOHAMED19OS/Enigma2_Store/main/FootOnsat/installer.py -qO - | python

    Many tks friend. Works well in Openpli8.3.

    Tks again.

    Trying to install Footonsat on Vu+ Solo4K OBH v5.3.016 and giving me error 'no module named 'sqlite3'. Tried different versions of Footonsat, but always same error. No problem installing other plugins on this Solo 4K. Any help will be appreciated.

    You must install this comand: opkg install python3-sqlite3

    Dar friends today i get This error MSG:


    "An unexpected http error occurred during the API request"


    Anyone same problem? Tks

    I have a question... why can't you select selected matches with a green ball on the left to add it to notifications, is it related to the fact that it is impossible to mark when, for example, two matches are at the same time ?

    I'm repeating my question, which no one answered me, why you can't mark, for example, 2 matches that start at the same time... unless the plugin is not something to notify about the result during the match (e.g. like FlashScore) it only reminds about the starting match, and of course, because, let's say, you can't watch one or more matches at the same time... because I don't know how to understand it differently... !?

    Do you also have a problem with this... ?

    Its not possible to do that...you can ONLY select one game on same hour

    Next try:

    does anyone know where you can change the display duration of the window?IMG_1959.jpeg

    Yes friend, i change mine to 15m in here:


    def setFirstNotifTime(self, dt):

    dt_obj = datetime.strptime(dt, "%H:%M - %Y-%m-%d")

    now = datetime.now()

    duration = dt_obj - now

    duration_in_s = duration.total_seconds()

    minutes = divmod(duration_in_s, 60)[0]

    if minutes < 15:

    first_notif = (dt_obj - timedelta(minutes=minutes/2)).strftime("%H:%M - %Y-%m-%d")

    message = "Kick-off in {} minutes".format(int(minutes/2))

    else:

    first_notif = (dt_obj - timedelta(minutes=15)).strftime("%H:%M - %Y-%m-%d")

    message = "Kick-off in 15 minutes"

    return [first_notif, message]