Jump to content


ims

Member Since 3 Feb 2007
Offline Last Active Yesterday, 18:33
*****

#1626923 Sleeptimer broken

Posted by ims on 16 June 2024 - 11:39

In my opinion, there should be a separate Yellow button for canceling the Sleeptimer (only displayed when the Sleeptimer is activated). The Blue button should be kept only for activating/reactivating the Sleeptimer (displayed only when the option is not "disabled"). It is truly nonsensical for the user to first have to set the option to "disabled" in order to cancel the Sleeptimer with Blue. The user will be able to reactivate the timer with the Blue button and stop the timer at any time with the Yellow button, without having to change the setting option.

 

I will see on it...

 

Edit: PR for it is created

 

 

 

 

 

 
 
 



#1614245 Analog clock (2.0) green screen in open PLi 9.0

Posted by ims on 28 March 2024 - 20:24

	def reloadClock(self):
		if not self.dialogAnalogClock:
			self.isShow = False
-			self.dialogAnalogClock = self.session.instantiateDialog(AnalogClockScreen)
+			self.dialogAnalogClock = self.session and self.session.instantiateDialog(AnalogClockScreen)

That's a solution to the consequence, not the cause. I think I have it sorted out. I need to test it.




#1594672 3 HDD's missmatch

Posted by ims on 30 December 2023 - 19:06

And what about to use UUID for mount in fstab for each disk ?




#1593460 Problem with Nightly development build for VU Ultimo 4K

Posted by ims on 27 December 2023 - 13:35

you must install via telnet enigma-info package

init 4
opkg install enigma-info
init 3

 




#1555852 OpenPLi-py3

Posted by ims on 2 August 2023 - 22:09

First of all “please use the regular font and not any other weird font.

 

When you run the Nightly Build you know how Python 3 runs. I only use the NB and hardly ever notice issues. 

Sorry, but what does that ill-mannered brat think he'll gain by using py3? And what has he done for it, that to be shouting at us like that? :angry:

 




#1523451 enigma restart count

Posted by ims on 4 March 2023 - 08:39

init 4, then remove number in settings, then init3




#1503630 OpenPLi-py3

Posted by ims on 17 December 2022 - 23:34

work with logfile is fixed too...




#1503562 OpenPLi-py3

Posted by ims on 17 December 2022 - 21:14

Problem will be in "float" there on this lineand this line.

 

There must be divide as  // 1000 (int) instead / 1000 (in py2 it is int, in py3 it is float)

 

I cannot test it now, my box with motor will recording long time.




#1435022 Edision OS mega und neue Fernbedienung?

Posted by ims on 2 March 2022 - 18:05

if you have PLi <= 8.1 , then place this file to /usr/share/enigma2/ and restart GUI (and add it to autobackup)

 

or

 

if you are using develop (night build) image, then you can newly place this file to /etc/enigma2/ and restart GUI. (note: /etc/enigma2/ dir is backuped with autobackup)

Attached Files




#1386210 problem sf8008

Posted by ims on 21 September 2021 - 18:15

On line 187 must be:

self["config"].list = self.list

I will prepare fix




#1382440 PLi-FullHD-PLi-FullNightHD

Posted by ims on 8 September 2021 - 14:34

You can modify screens and place it into your own files:

 

/etc/enigma2/skin_user_PLi-FullHD.xml

or

/etc/enigma2/skin_user_PLi-FullNightHD.xml

 

it is possible for any skin ... /etc/enigma2/skin_user_NAMEOFSTRING.xml

 

Screens placed in this file have then priority. This files you can backup/restore too.




#1310123 OpenPli 8.0 Add-ons/Plugns Discussion

Posted by ims on 24 January 2021 - 14:31

I do not know this plugin, but you can try replace TSplayer.py file in /usr/lib/enigma2/python/Plugins/Extensions/TuneinRadio/lib/ with this one in atachement.

 

 

Or change setTitle to Title in ./lib/TSplayer.py file on lines:

line 252:self.onLayoutFinish.append(self.setTitle) to self.onLayoutFinish.append(self.Title)

line 289: def setTitle(self): to def Title(self):

 

 

 

 

 

 

 

 

 

Attached Files




#1308006 Moving or deleting multiple channels

Posted by ims on 20 January 2021 - 07:34

Yes - In feed is RefreshBouquet plugin ... see our Wiki




#1306450 Event text problem in all skins

Posted by ims on 17 January 2021 - 15:18

Solved in develop. But I cannot tell, when it will be in openpli8.




#1253330 My favorite Skin PLi-HD1

Posted by ims on 14 September 2020 - 09:49

Replace in skin.xml part for SkinSelector (PLi-FullHD and PLi-FullNightHD ) with this old (or remove this part), pls:

	<screen name="SkinSelector" position="fill" flags="wfNoBorder">
		<panel name="SelectionTemplate"/>
		<widget name="preview" position="165,600" size="420,315" alphatest="on"/>
		<widget source="skins" render="Listbox" position="780,100" size="1110,912" enableWrapAround="1" scrollbarMode="showOnDemand">
			<convert type="TemplatedMultiContent">
				{
				"template": [
					MultiContentEntryText(pos = (15, 0), size = (700, 38), font = 0, flags = RT_HALIGN_LEFT | RT_VALIGN_CENTER, text = 1),
					MultiContentEntryText(pos = (715, 0), size = (355, 38), font = 0, flags = RT_HALIGN_RIGHT | RT_VALIGN_CENTER, text = 2)
				],
				"fonts": [gFont("Regular",28)],
				"itemHeight": 38
				}
			</convert>
		</widget>
		<widget source="description" render="Label" position="780,975" size="1110,34" zPosition="1" transparent="1" font="Regular;30" halign="center"/>
	</screen>

In PLi-HD/HD1/HD2 remove whole this part for "SkinSelector", if exists.