Jump to content


tension

Member Since 8 Oct 2010
Offline Last Active 12 Apr 2024 21:09
-----

Posts I've Made

In Topic: Where can I set the pathway of the picons in Openpli 9.0?

4 April 2024 - 23:15

Or let to change picon set ..... for image skin picon matching lovers :)

 

 

 

 


In Topic: Instant recording (with custom duration) faulty in nightly build

26 August 2023 - 09:34

exactly. the minuteinput parameter was the first think,

when i found that apparently unused method i looked only at how using it.... :)


In Topic: Instant recording (with custom duration) faulty in nightly build

26 August 2023 - 09:09

sorry did not see last changes............

ok added parameter to minuteinput....


In Topic: Instant recording (with custom duration) faulty in nightly build

26 August 2023 - 09:01

I think that inputbox with the message advising of its limited input, message in infobargenerics call, to 1440 min is ok.

What i woul change is the calls in infobargenerics for the minuteinput, i would not modify minuteinput.

 

infobargenerics.py: i found a method not used in enigma (?)

def calcRemainingTime(self)

i'm trying to use it to check the minutes passed by MinuteInput.py, in ff and rw seek, but..... :)

something as:

ffd: If minutes passed > remaining then seek remaining or nothing

rwd: If minutes passed > played time (playposition) then move to start position (played time)


In Topic: Instant recording (with custom duration) faulty in nightly build

25 August 2023 - 00:10

For the input box a limit :

.....................
	def keyNumberGlobal(self, number):
		self["input"].number(number)
		if int(self["input"].getText()) > 1440:
			self.keyBackspace()
.....................

with the message to add minutes modified to informi on max 1440 minutes limit.

 

The minuteinput should be called with new parameter of recording duration....

 

:)