Jump to content


Photo

i have a question


  • Please log in to reply
312 replies to this topic

Re: i have a question #141 DimitarCC

  • PLi® Contributor
  • 1,553 posts

+67
Good

Posted 19 December 2023 - 10:02

Yes because in my opinion that must be like that because in some languages the min could be before the number or so on. But that is the old same discussion.....

ViX doesnt complain about that warning so no reason to change it. ;)


Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: i have a question #142 Huevos

  • PLi® Contributor
  • 4,621 posts

+161
Excellent

Posted 19 December 2023 - 10:10

I think you are confused between errors and warnings.

 

A compiler error is when your program is wrong, and the compiler has no idea how to produce runnable code from it.

 

A compiler warning is where the compiler can't guarantee your code will run, even though the code is valid.

 

Certain code syntax will always cause warnings because "the compiler can't guarantee your code will run", e.g. dynamic values.

 

If you promote those warnings to errors you make it impossible to compile valid code.

I'll just post this again. A warning is not an error. Errors should only show when the compiler has no idea how to produce runnable code. What has happened in PLi is wrong because it means it is not possible to run valid C++ syntax. The warning shows because the compiler doesn't know what the dynamic values are, not because there is an error.


Edited by Huevos, 19 December 2023 - 10:10.


Re: i have a question #143 Dimitrij

  • PLi® Core member
  • 10,266 posts

+347
Excellent

Posted 19 December 2023 - 10:43

DimitarCC
	def setFontsize(self):
		self.ServiceNumberFont = gFont(self.ServiceNameFontName, self.ServiceNameFontSize + config.usage.servicenum_fontsize.value)
		self.ServiceNameFont = gFont(self.ServiceNameFontName, self.ServiceNameFontSize + config.usage.servicename_fontsize.value)
		self.ServiceInfoFont = gFont(self.ServiceInfoFontName, self.ServiceInfoFontSize + config.usage.serviceinfo_fontsize.value)
		self.ServiceNextInfoFont = gFont(self.ServiceNextInfoFontName, self.ServiceNextInfoFontSize + config.usage.serviceinfo_fontsize.value)
		self.ServiceRemainingInfoFont = gFont(self.ServiceRemainingInfoFontName, self.ServiceRemainingInfoFontSize + config.usage.serviceinfo_fontsize.value)
		self.l.setElementFont(self.l.celServiceName, self.ServiceNameFont)
		self.l.setElementFont(self.l.celServiceNumber, self.ServiceNumberFont)
		self.l.setElementFont(self.l.celServiceInfo, self.ServiceInfoFont)
		self.l.setElementFont(self.l.celServiceNextInfo, self.ServiceNextInfoFont)
		self.l.setElementFont(self.l.celServiceInfoRemainingTime, self.ServiceRemainingInfoFont)
		if "perc" in config.usage.show_event_progress_in_servicelist.value:
			self.l.setElementFont(self.l.celServiceEventProgressbar, self.ServiceInfoFont)

self.ServiceNumberFont = gFont(self.ServiceNameFontName, self.ServiceNameFontSize + config.usage.servicenum_fontsize.value)

Maybe Number?

 


GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: i have a question #144 DimitarCC

  • PLi® Contributor
  • 1,553 posts

+67
Good

Posted 19 December 2023 - 10:47

Yes you are right... That is wrong in ViX too...I didnt noticed it. Will change

 

OK. here https://github.com/O...igma2/pull/3880


Edited by DimitarCC, 19 December 2023 - 10:52.

Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: i have a question #145 piplan1966

  • Senior Member
  • 282 posts

+3
Neutral

Posted 19 December 2023 - 10:57

 

Hi
I have installed the infobarweather plugin,
Now this message is coming,

please configure a location in plugin setting,
How to set it please confirm
May Allah bless you

Delete this post of mine



Re: i have a question #146 Dimitrij

  • PLi® Core member
  • 10,266 posts

+347
Excellent

Posted 19 December 2023 - 11:56

DimitarCC

 

snprintf(buffer, sizeof(buffer), "%s%d %s", timeLeft == 0 ? "" : "+", timeLeft/60, m_text_time.c_str());

Maybe timeLeft/60 == 0?


GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: i have a question #147 DimitarCC

  • PLi® Contributor
  • 1,553 posts

+67
Good

Posted 19 December 2023 - 12:48

Maybe....


Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: i have a question #148 littlesat

  • PLi® Core member
  • 57,063 posts

+698
Excellent

Posted 19 December 2023 - 13:14

or timeLeft < 60


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


Re: i have a question #149 Dimitrij

  • PLi® Core member
  • 10,266 posts

+347
Excellent

Posted 19 December 2023 - 17:28

[listboxservice] fixed event default color and time remaining


Edited by Dimitrij, 19 December 2023 - 17:41.

GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: i have a question #150 littlesat

  • PLi® Core member
  • 57,063 posts

+698
Excellent

Posted 19 December 2023 - 18:10

Thanks... Merged...


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


Re: i have a question #151 Dimitrij

  • PLi® Core member
  • 10,266 posts

+347
Excellent

Posted 20 December 2023 - 06:37

DimitarCC
Overlapping of event info and progressbar not fixed(two lines and next event).

GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: i have a question #152 littlesat

  • PLi® Core member
  • 57,063 posts

+698
Excellent

Posted 20 December 2023 - 10:44

When you toggle to the views in channel selections, where before you changed the userbouquet goes back to user bouquet you originally had.


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


Re: i have a question #153 DimitarCC

  • PLi® Contributor
  • 1,553 posts

+67
Good

Posted 20 December 2023 - 12:35

DimitarCC

Overlapping of event info and progressbar not fixed(two lines and next event).

 

OK. Here is new try:

 

https://github.com/O...igma2/pull/3884

 

I hope is fixed. Keep in mind that i can not test that since i dont have EPG that long most of the time ;)


Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: i have a question #154 DimitarCC

  • PLi® Contributor
  • 1,553 posts

+67
Good

Posted 20 December 2023 - 12:52

Interesting is that i dont get overlapping here even with the old code...

 

Attached File  nextevent2.jpg   129.38KB   1 downloads


Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: i have a question #155 littlesat

  • PLi® Core member
  • 57,063 posts

+698
Excellent

Posted 20 December 2023 - 13:32

Resolved by my self.


When you toggle to the views in channel selections, where before you changed the userbouquet goes back to user bouquet you originally had.


Edited by littlesat, 20 December 2023 - 13:37.

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


Re: i have a question #156 Dimitrij

  • PLi® Core member
  • 10,266 posts

+347
Excellent

Posted 20 December 2023 - 16:49

Interesting is that i dont get overlapping here even with the old code...

 

old code


GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: i have a question #157 DimitarCC

  • PLi® Contributor
  • 1,553 posts

+67
Good

Posted 20 December 2023 - 17:23

The above screenshot is also from old code. But no overlap. Maybe it have something to do with the settings. You have no icons in display.... And i have them all enabled.
Anyway try the new code.... Hopefully will be better

Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: i have a question #158 DimitarCC

  • PLi® Contributor
  • 1,553 posts

+67
Good

Posted 21 December 2023 - 11:21

So i found a logical mistake that i made in last PR... I correct that with this https://github.com/O...igma2/pull/3885


Vu+DUO4KSE, DM920UHD, Vu+Uno4KSE, SF8008Mini, 2xPulse4K, Vu+Solo2, Dreambox DM500HD, Triax 78 (7E,9E,13E,19.2E,23.5E) & 2xTriax 78 (39E)


Re: i have a question #159 littlesat

  • PLi® Core member
  • 57,063 posts

+698
Excellent

Posted 21 December 2023 - 12:44

Merged.... with lightspeed ;)


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


Re: i have a question #160 Dimitrij

  • PLi® Core member
  • 10,266 posts

+347
Excellent

Posted 24 December 2023 - 07:15

Everything seems fine now.
 
I would just change the default value:
-		self.ServiceRemainingInfoFontSize = 18
+		self.ServiceRemainingInfoFontSize = 20

 


 

GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K



13 user(s) are reading this topic

0 members, 13 guests, 0 anonymous users