Jump to content


Photo

HD Glass 17 - problem with crash


  • Please log in to reply
11 replies to this topic

#1 robi4o2

  • New Member
  • 4 posts

0
Neutral

Posted 5 April 2024 - 13:53

Hi everyone

 

tuner VU+ Ultimo 4k
system OpenPli9
skin HD Glass 17 v9.17

I've been using OpenPli forever and I've always used the HD Glass 17 skin. I know, Apparently the author adapted the skin for Phyton 3, but it doesn't works for me. It's a pity because it's a very good skin and I like it very much.
It worked fine with OpenPLI8, but since I installed OpenPLI9 I have problems.
Right now I have three problems:
- crash_1711702987 - crash after changing video outpu resolution from 1080p to 2160p
- crash_1711703062 - crash after changing network settings
- 1711703095 - crash after push start recording at main screen
It does not matter whether HD Glass is installed on a fresh installation or on a previously configured OpenPli system.

Is anyone able to help me?

 

 

Attached Files



Re: HD Glass 17 - problem with crash #2 littlesat

  • PLi® Core member
  • 56,905 posts

+695
Excellent

Posted 5 April 2024 - 14:02

Looks like the skin and skin's plugin is not compatible anymore ..I'm afraid you need to ask the author of this as far I remember closed source skin... I'm afraid 'the glass is broken'....

Traceback (most recent call last):
  File "/usr/lib/enigma2/python/Components/ActionMap.py", line 57, in action
  File "/usr/lib/enigma2/python/Plugins/SystemPlugins/Videomode/plugin.py", line 193, in apply
  File "/usr/lib/enigma2/python/StartEnigma.py", line 302, in openWithCallback
    dlg = self.open(screen, *arguments, **kwargs)
  File "/usr/lib/enigma2/python/StartEnigma.py", line 312, in open
    dlg = self.current_dialog = self.instantiateDialog(screen, *arguments, **kwargs)
  File "/usr/lib/enigma2/python/StartEnigma.py", line 255, in instantiateDialog
    return self.doInstantiateDialog(screen, arguments, kwargs, self.desktop)
  File "/usr/lib/enigma2/python/StartEnigma.py", line 279, in doInstantiateDialog
    dlg.applySkin()
  File "/usr/lib/enigma2/python/Screens/Screen.py", line 240, in applySkin
  File "/usr/lib/enigma2/python/Screens/Screen.py", line 269, in createGUIScreen
  File "skin applet", line 55, in <module>
  File "/usr/lib/enigma2/python/enigma.py", line 1249, in __init__
TypeError: in method 'new_ePoint', argument 1 of type 'int'
[ePyObject] (CallObject(<bound method ActionMap.action of <Components.ActionMap.ActionMap object at 0xb148b868>>,('SetupActions', 'save')) failed)

Edited by littlesat, 5 April 2024 - 14:05.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: HD Glass 17 - problem with crash #3 robi4o2

  • New Member
  • 4 posts

0
Neutral

Posted 5 April 2024 - 14:10

Hi, thank you, it's a pity because I really like this skin.
I will try to contact the author.



Re: HD Glass 17 - problem with crash #4 WanWizard

  • PLi® Core member
  • 69,793 posts

+1,780
Excellent

Posted 5 April 2024 - 14:13

The error suggests he needs to change some calculations to integer divisions, that typeerror suggests a float is being passed, instead of an int.

 

This is a change that is typical for a python2 -> python3 move.

 

So the author hasn't tested his conversion properly.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: HD Glass 17 - problem with crash #5 littlesat

  • PLi® Core member
  • 56,905 posts

+695
Excellent

Posted 5 April 2024 - 14:22

Indeed most likely a py 2->py 3 topic... Where did you get the ipk from.... I hope for you it includes sources because as far I remember this good looking skin was under the hood not looking that good as it was closed source.... (and this was exactly the reason why I should avoid using it)....

I hope for you sources are available.

 

As it is related to ePoints I suggest a calculation is done by division and in python 2 you could do an odd number deviced by 2 e.g. 11 / 2 = 5... as integer... in python 3 it becomes 11 / 2 is 5.5 then this is not an integer anymore..... in the code you need to replace the division by twice / so //... so it becomes 11 // 5 == 5 (so an integer is forced then). So when the are sources, so py files, you can find that line/calculation and adapt the division by a double //... and then thumbs crossed if this is all you need to adapt.

 

Please note that our standard skin is also nice and it is still maintained and in Develop we have now a brand new skin OSE2 with a lot of new features...


Edited by littlesat, 5 April 2024 - 14:25.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: HD Glass 17 - problem with crash #6 WanWizard

  • PLi® Core member
  • 69,793 posts

+1,780
Excellent

Posted 5 April 2024 - 14:23

The one I downloaded to look at contained py files.

 

But as I couldn't find a repo, it is not possible to contribute fixes. The authors' choice...


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: HD Glass 17 - problem with crash #7 littlesat

  • PLi® Core member
  • 56,905 posts

+695
Excellent

Posted 5 April 2024 - 14:27


The one I downloaded to look at contained py files.

 

Sounds we need someone with a lot of free time that is willing to adapt... and maybe you found a 'de-compliled' IPK as I remember from a long time ago it was closed sourced... my I can make a mistake...

Maybe the initiated of this request can find the division and replace the / by // manually and check if that resolved it... And then offer a new IPK.


Edited by littlesat, 5 April 2024 - 14:28.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: HD Glass 17 - problem with crash #8 WanWizard

  • PLi® Core member
  • 69,793 posts

+1,780
Excellent

Posted 5 April 2024 - 14:33

Yes. The author.

 

A decision not to publish sources in an open source matter implies no one can contribute, which in turn implies the author has to do it all himself.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: HD Glass 17 - problem with crash #9 littlesat

  • PLi® Core member
  • 56,905 posts

+695
Excellent

Posted 5 April 2024 - 14:39

I agree,,, and for me this is a reason not to use it... because when you get used to it and it breaks it is not an easy fix, unless you do it yourself...

But I suggest we already sufficiently helped here and gave directions how it can be resolved... so I hope once it is resolved something may popup...


Edited by littlesat, 5 April 2024 - 14:41.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: HD Glass 17 - problem with crash #10 robi4o2

  • New Member
  • 4 posts

0
Neutral

Posted 5 April 2024 - 15:21

Thank you for yours interest and suggestions regarding adapting the HD Glass 17 skin to the current version of OpenPLi.
I sent an e-mail to author, I just have to wait for a response.



Re: HD Glass 17 - problem with crash #11 Robertooo

  • Senior Member
  • 287 posts

0
Neutral

Posted 15 May 2024 - 09:17

Do you have any new information from the author of the HD Glass skin?



Re: HD Glass 17 - problem with crash #12 Robertooo

  • Senior Member
  • 287 posts

0
Neutral

Posted 28 May 2024 - 08:17

There's a new version (9.20) from HD glass. I don't know it's working with Open Pli 9 or not.




2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users