Hi
Experts are politely requested,
I received 5west 12 years ago.
Not receiving now.
What could be the reason?
Please confirm,
God bless,
i have a question
Re: i have a question #121
Re: i have a question #122
Re: i have a question #123
Posted 17 December 2023 - 10:48
Hi
Experts are politely requested,
I received 5west 12 years ago.
Not receiving now.
What could be the reason?
Please confirm,
God bless,
They replace the old satellite by a new one, but the new on is defective (solar panel deployment problem so not enough power provided to the satellite) this reduced the number of available transponder on it.
I won't be surprised if the footprint is lower compared to the old one, so I guess that it is normal that you no longer received it.
NO SUPPORT by PM, it is a forum make your question public so everybody can benefit from the question/answer.
If you think that my answer helps you, you can press the up arrow in bottom right of the answer.
Wanna help with OpenPLi Translation? Please read our Wiki Information for translators
Sat: Hotbird 13.0E, Astra 19.2E, Eutelsat5A 5.0W
VU+ Solo 4K: 2*DVB-S2 + 2*DVB-C/T/T2 (used in DVB-C) & Duo 4K: 2*DVB-S2X + DVB-C (FBC)
AB-Com: PULSe 4K 1*DVB-S2X (+ DVB-C/T/T2)
Edision OS Mio 4K: 1*DVB-S2X + 1*DVB-C/T/T2
Re: i have a question #124
Posted 17 December 2023 - 11:54
Hi
Experts are politely requested,
I received 5west 12 years ago.
Not receiving now.
What could be the reason?
Please confirm,
God bless,
They replace the old satellite by a new one, but the new on is defective (solar panel deployment problem so not enough power provided to the satellite) this reduced the number of available transponder on it.
I won't be surprised if the footprint is lower compared to the old one, so I guess that it is normal that you no longer received it.
Hi
Yes, at that time the name of this satellite was Atlantic Bird.
It is now called Utilset.
Obviously, the TP would also have fallen.
I think it's hard to receive 5west now,
Thank you
Re: i have a question #125
Posted 17 December 2023 - 12:29
1)Please set default next info(eventNextForeground/eventNextForegroundSelected) color gray same as https://forums.openp...dpost&p=1589756
https://github.com/O...c0e26edfd79R840
2)the text overlapped the progress bar
Edited by Dimitrij, 17 December 2023 - 12:31.
GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K
Re: i have a question #126
Re: i have a question #127
Posted 17 December 2023 - 15:54
OK. Which is exactly the gray color? Can you give me the code of it?
https://github.com/O...c0e26edfd79R840
painter.setForegroundColor(gRGB(0x787878))
--- a/ServiceList.py +++ b/ServiceList.py @@ -364,7 +364,7 @@ def setItemsPerPage(self): numberOfRows = config.usage.servicelist_number_of_services.value two_lines_val = int(config.usage.servicelist_twolines.value) - if two_lines_val == 1: + if two_lines_val: numberOfRows = int(numberOfRows / ((self.ItemHeightTwoLineSkin / self.ItemHeightSkin)) if self.ItemHeightSkin and self.ItemHeightTwoLineSkin else 2) itemHeight = self.ItemHeightSkin if not two_lines_val else self.ItemHeightTwoLineSkin if numberOfRows > 0: @@ -400,7 +400,6 @@ instance.setWrapAround(True) instance.setContent(self.l) instance.selectionChanged.get().append(self.selectionChanged) - self.setFontsize() def preWidgetRemove(self, instance): instance.setContent(None) @@ -479,17 +478,16 @@ self.mode = mode self.setItemsPerPage() two_lines_val = int(config.usage.servicelist_twolines.value) - self.l.setItemHeight(self.ItemHeight if two_lines_val == 0 else self.ItemHeightTwoLine) - self.l.setVisualMode(eListboxServiceContent.visModeComplex if two_lines_val == 0 else eListboxServiceContent.visSkinDefined) + self.l.setItemHeight(self.ItemHeight if not two_lines_val else self.ItemHeightTwoLine) + self.l.setVisualMode(eListboxServiceContent.visModeComplex if not two_lines_val else eListboxServiceContent.visSkinDefined) - if two_lines_val: + if two_lines_val == 1: timeText = _("min") self.l.setTextTime(timeText) - - if two_lines_val > 1: + elif two_lines_val == 2: nextTitle = _("NEXT") + ": " self.l.setNextTitle(nextTitle) - + self.l.setHasNextEvent(two_lines_val > 1) if config.usage.service_icon_enable.value: @@ -514,10 +512,7 @@ self.l.setElementPosition(self.l.celServiceEventProgressbar, eRect(0, 0, progressWidth, self.ItemHeight)) - 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.setFontsize() if "perc" in config.usage.show_event_progress_in_servicelist.value: self.l.setElementFont(self.l.celServiceEventProgressbar, self.ServiceInfoFont) @@ -526,7 +521,7 @@ self.l.setServiceTypeIconMode(int(config.usage.servicetype_icon_mode.value)) self.l.setCryptoIconMode(int(config.usage.crypto_icon_mode.value)) self.l.setRecordIndicatorMode(int(config.usage.record_indicator_mode.value)) - self.l.setColumnWidth(-1 if two_lines_val > 0 else int(config.usage.servicelist_column.value)) + self.l.setColumnWidth(-1 if two_lines_val else int(config.usage.servicelist_column.value)) self.l.setProgressBarMode(config.usage.show_event_progress_in_servicelist.value) self.l.setChannelNumbersVisible(config.usage.show_channel_numbers_in_servicelist.value) self.l.setAlternativeNumberingMode(config.usage.alternative_number_mode.value)
Edited by Dimitrij, 17 December 2023 - 16:14.
GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K
Re: i have a question #128
Re: i have a question #129
Posted 18 December 2023 - 16:14
1)Please set default next info(eventNextForeground/eventNextForegroundSelected) color gray same as https://forums.openp...dpost&p=1589756
https://github.com/O...c0e26edfd79R840
2)the text overlapped the progress bar
Problems fixed here
https://github.com/O...igma2/pull/3877
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 #130
Re: i have a question #131
Posted 18 December 2023 - 16:29
Just some considerations for the channel selector...
- Having next events on the left bottom instead of 3.
- When there is no icon show the service name next to the PIG
- I do not know yet where to put it, but in our standard skin we show some technical info about the select service. When possible find a place to get it back.
example.jpg 187.11KB 3 downloads
In the infobar there is no place for the crypto info... but there is a config to enable it or disable it. Maybe for those that like it we can add it above the infobar 'bordered'. It looks ugly of course and you also have it in a better format in the second infobar... but this is I'm afraid for those who are addicted to it.
Edited by littlesat, 18 December 2023 - 16:55.
WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W
Re: i have a question #132
Posted 18 December 2023 - 18:16
if (serviceAvail) { if (!selected && m_color_set[eventForeground]) { painter.setForegroundColor(m_color[eventForeground]); EventProgressbarColor = m_color[eventForeground]; } else if (selected && m_color_set[eventForegroundSelected]) { painter.setForegroundColor(m_color[eventForegroundSelected]); EventProgressbarColor = m_color[eventForegroundSelected]; } else - painter.setForegroundColor(gRGB(0x787878)); + painter.setForegroundColor(gRGB(0xe7b53f)); if (serviceFallback && !selected && m_color_set[eventForegroundFallback]) // fallback receiver { painter.setForegroundColor(m_color[eventForegroundFallback]); EventProgressbarColor = m_color[eventForegroundFallback]; } else if (serviceFallback && selected && m_color_set[eventForegroundSelectedFallback]) { painter.setForegroundColor(m_color[eventForegroundSelectedFallback]); EventProgressbarColor = m_color[eventForegroundSelectedFallback]; } }
0xe7b53f(yellow) is default color event name not gray(787878)
So if mode two lines text (yellow) --> event name +5min
My suggestion if mode two lines text--> event name(default yellow) +5min(gray or make it customizable)
GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K
Re: i have a question #133
Posted 18 December 2023 - 18:26
Ah OK you suggest only +5min to be in gray color and customizable....
OK i misunderstood but that will be more difficult to set since you have to set a special foreground only for this block and then revert it as normal foreground. Besides it requires 4 new colors (normal, selected, fallback, default).
Will se what can be done.
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 #134
Re: i have a question #135
Re: i have a question #136
Posted 19 December 2023 - 09:28
You can’t.
Just give us a sign (report button) and we’ll remove the post.
Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....
On the edge of the abyss, a step forward is not always progress....
Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna
Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam
Press the button on the buttom right of this message
Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki
Re: i have a question #137
Posted 19 December 2023 - 09:30
This is just my idea (it will be more beautiful), you can refuse, I won’t mind .
OK added that here
https://github.com/O...igma2/pull/3878
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 #138
Posted 19 December 2023 - 09:34
merged.
Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....
On the edge of the abyss, a step forward is not always progress....
Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna
Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam
Press the button on the buttom right of this message
Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki
Re: i have a question #139
Posted 19 December 2023 - 09:37
@Tech
Can you merge a fix since cherry pick didnt worked well due to the differences in PLi?
I will put it in same PR hope can be reopened....
OK i created new PR
https://github.com/O...igma2/pull/3879
Edited by DimitarCC, 19 December 2023 - 09:40.
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 #140
11 user(s) are reading this topic
0 members, 11 guests, 0 anonymous users