NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support v
« Previous 1 … 36 37 38 39 40 … 43 Next »
Things in Guide

 
  • 0 Vote(s) - 0 Average
Things in Guide
shspvr
Offline

Senior Member

Posts: 419
Threads: 32
Joined: Jan 2004
#1
2019-07-18, 12:44 PM (This post was last modified: 2019-07-18, 12:58 PM by shspvr.)
[ATTACHMENT NOT FOUND]
1: Need AM/PM option and time slot down to 1 1/2 to more 2 hours that is being display and scroll in to next day
2: Change the background in the cell to lighter color so that all black channel logo are more visible
3: DBL the row width
4: Pull the channel Name from the tuner so that it display like
6.1 KOTV-HD
6.2 KQCW-SD
6.3 NewsOn6
Or how about instead of display the name just display the channel number and the channel logo unless there no logo is available
Yes I know I can edit the channel name
5: Show title name not shift to right see channel 2.4 - KJRHDT4 (KJRH-DT4) CourtTV
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#2
2019-07-18, 02:03 PM (This post was last modified: 2019-07-18, 02:49 PM by mvallevand.)
Number 4 is a real mess in the UI client too, which basically has room for very few characters. That is why I asked that the default should be "Number Name" not "Number - Name"

If you know sqlite you can use this to change the Schedules Direct Name to the HDHR name

Code:
update channel
set name =
(select substr(tuning,instr(tuning,'<name>')+6,instr(tuning,'</name>')-instr(tuning,'<name>')-6)
from channel_mapping
where channel_oid=channel.oid )
where epg_source = 'Schedules Direct'
and exists (select tuning
from channel_mapping
where tuning like '%<type>HDHR%'
and channel_oid=channel.oid)

Do this before getting the icons and backup the npvr.db3 before trying this.

Martin
shspvr
Offline

Senior Member

Posts: 419
Threads: 32
Joined: Jan 2004
#3
2019-07-18, 03:01 PM (This post was last modified: 2019-07-18, 03:31 PM by shspvr.)
mvallevand Wrote:Number 4 is a real mess in the UI client too, which basically has room for very few characters. That is why I asked that the default should be "Number Name" not "Number - Name"

If you know sqlite you can use this to change the Schedules Direct Name to the HDHR name

Code:
update channel
set name =
(select substr(tuning,instr(tuning,'<name>')+6,instr(tuning,'</name>')-instr(tuning,'<name>')-6)
from channel_mapping
where channel_oid=channel.oid )
where epg_source = 'Schedules Direct'
and exists (select tuning
from channel_mapping
where tuning like '%<type>HDHR%'
and channel_oid=channel.oid)

Do this before getting the icons.

Martin

I know I not big fan of the original Server/Client UI look but at lease it scaling better then the web interface even on a iPad/Android it look so wrong which need be more like Home Theater UI
I guest that something that sub will have address in next up date
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#4
2019-07-18, 06:17 PM
Quote:1: Need AM/PM option
In most places in the application it already uses the default locale settings from the browser, but not the timeline. I've updated the timeline in the next build to also honor the locale settings.

Quote:and time slot down to 1 1/2 to more 2 hours that is being display
Sorry, I don't follow you. The amount of time shown in the web app's TV Guide depends on how wide your window is. ie, might see six hours of listings on a desktop with window maximized, or a couple of hours on an ipad in portrait, or a bit more on an ipad in landscape.

Quote:2: Change the background in the cell to lighter color so that all black channel logo are more visible
Unfortunately there is no standard colors for channel logos, so it doesn't matter what color I choose, it'll always be wrong for some channel logos.

Quote:3: DBL the row width
What are you asking for here?

Quote:4: Pull the channel Name from the tuner so that it display like
6.1 KOTV-HD
6.2 KQCW-SD
6.3 NewsOn6
The next build will use the original channel name found during scan, rather than the Schedules Direct channel name. If you've already got channels in your database, you'll need to either delete them and rescan, or rename them manually, since the channel names are decided at scan time.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#5
2019-07-18, 06:20 PM
mvallevand Wrote:Number 4 is a real mess in the UI client too, which basically has room for very few characters. That is why I asked that the default should be "Number Name" not "Number - Name"
FYI, when it comes to nextpvr.exe, the next build has the 'Channel Header' setting in the Settings screen, like NextPVR v4 had, so the user can choose between a few different formats. Other UI clients would also honor this setting. The default for new v5 installs is the same channel header format as the default in v4. (early v5 builds it wasn't set correctly)
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#6
2019-07-18, 06:30 PM
Yes I know about the setting because I asked you to change it in v5 testing. I suggested taking out the dash to save some space with the limited space.

sub Wrote:IUnfortunately there is no standard colors for channel logos, so it doesn't matter what color I choose, it'll always be wrong for some channel logos.

Unfortunately so many have black that it is a problem reading the text.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#7
2019-07-18, 06:37 PM
mvallevand Wrote:Yes I know about the setting because I asked you to change it in v5 testing. I suggested taking out the dash to save some space with the limited space.
Honestly, it takes up so little space to have the dash there, and is a lot nicer with it. I just tried it without the dash, but I think it's a lot less clear. (there are also some channels around the world that have a name that starts with a number)
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#8
2019-07-18, 06:42 PM
Ok, I've lightened the channel headers up a bit for the next build, to make black channel icons more visible.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#9
2019-07-18, 06:44 PM
Here is what that change looks like. (I know, still pretty dark, but hopefully a little more visible to you)
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#10
2019-07-18, 06:59 PM
sub Wrote:Honestly, it takes up so little space to have the dash there, and is a lot nicer with it. I just tried it without the dash, but I think it's a lot less clear. (there are also some channels around the world that have a name that starts with a number)

Looking at the UI Client now after running the script to use the HDHR name it is a lot better and I think the icon must cover the dash since it Number Icon Name (right justified) Before this was mostly unreadable.

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (8): 1 2 3 4 5 … 8 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Import guide data from HD Homerun tuner jonasx 5 698 2024-10-14, 08:48 PM
Last Post: mvallevand
  TV Guide Salali 1 654 2024-04-01, 04:32 PM
Last Post: sub
  Tablo Guide Information kevin-pvr 5 1,267 2023-04-04, 09:48 PM
Last Post: mvallevand
  TV Guide Recording Buttons Out of Sync with Actual DVR Recording Status LinuxDVR 17 2,544 2022-11-19, 06:58 PM
Last Post: sub
  Guide not showing current recording VCR58 6 1,109 2022-10-07, 07:25 PM
Last Post: mvallevand
  Setup guide to schedule NPVR tymongiffin 1 1,213 2022-08-23, 07:20 AM
Last Post: sub
  Web Client TV Guide time-line not shown spin35 2 958 2021-10-05, 09:17 AM
Last Post: spin35
  Unicode characters in TV Guide atreistm 6 1,430 2021-09-18, 10:00 PM
Last Post: sub
  Guide scrolling issue ? dayvboy 6 1,563 2021-07-20, 10:41 PM
Last Post: mvallevand
  Cancelling recordings in TV Guide does not update UI correctly janoonk 10 2,558 2021-05-28, 01:05 PM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode