NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Kodi / XBMC X-NEWA v
« Previous 1 … 7 8 9 10 11 … 13 Next »
[WIP] New Confluence Skin for XNEWA

 
  • 0 Vote(s) - 0 Average
[WIP] New Confluence Skin for XNEWA
pkscout
Offline

Senior Member

USA
Posts: 464
Threads: 50
Joined: May 2014
#21
2014-06-08, 05:51 PM
I've made some changes to get the images into the detail screens (the size is arbitrary, so I just made the dialogs bigger). If you add images to the lists, there is clearly space for them now, and I can add them.

t haven't had a chance to look at the right click issue, and I'm leaving for a trip in a few hours. I'll look at that when I get back next weekend. I'll post an update after I see if I can fix that.

P.S. I didn't see the updated XNEWA_Connect.py.
smajor
Offline

Posting Freak

Posts: 840
Threads: 115
Joined: Feb 2006
#22
2014-06-08, 07:23 PM
Wow. Looking forward to this. I'm just a sucker for a unified appearance. The XNEWA is what makes NPVR/XBMC work. Still too many unconnected pieces on the XMBC side for a true PVR experience IMHO. Fantastic work graphically and programmatically, both of you.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,109
Threads: 957
Joined: May 2006
#23
2014-06-15, 06:38 PM
Let me know when you get back pkscout. I made a few more changes to support changing priority of recurring recordings, and made a few other small changes. I added a couple of string too for this but I put them in starting at 32001 to avoid getting in your way.

Martin
pkscout
Offline

Senior Member

USA
Posts: 464
Threads: 50
Joined: May 2014
#24
2014-06-15, 07:43 PM (This post was last modified: 2014-06-16, 08:24 PM by pkscout.)
OK, I'm back. Unless I missed some strings, I'm done with the localization, so you should be able to slot the strings in where ever you want. I'm attaching beta4 of what I've got.

Updates:
- added images to detail screen
- fix in confluence skin so that right clicking consistently initiates BACK action
- fix in conflicts.py so BACK action is properly recognized
- additional logic in search.py so that passing an empty search string aborts search

The last two are little bugs I found. conflicts.py didn't have quite the same logic as the other scripts for detecting the BACK action, so you could use the ESC key to get out of that screen, but not the DELETE key (which I think initiates the BACK action). search.py would accept an empty string as a search term (e.g. if you just hit DONE on the virtual keyboard without typing in any text), and that caused things to get stuck at WORKING (I suspect it would have returned results eventually). Anyway, now an empty string behaves the same as if you canceled out of the virtual keyboard.
pkscout
Offline

Senior Member

USA
Posts: 464
Threads: 50
Joined: May 2014
#25
2014-06-16, 01:04 AM
Quick question/request. I noticed that the Recurring Recordings list doesn't appear to be sorted. I see in the code that it is sorted by priority, but all the priorities are 0, and I don't see anyway in any of the interfaces (NextPVR client, XNEWA or NEWA) to set a priority. It would be nice to either have it sorted by title or have an option to sort by title, channel, or priority (sort of like the sort options for All Recordings. I changed mine to sort by title, but adding sort options looked like a bit more than I wanted to bite off without at least floating the idea here on the forum.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,109
Threads: 957
Joined: May 2006
#26
2014-06-16, 01:25 AM
pkscout Wrote:Quick question/request. I noticed that the Recurring Recordings list doesn't appear to be sorted. I see in the code that it is sorted by priority, but all the priorities are 0, and I don't see anyway in any of the interfaces (NextPVR client, XNEWA or NEWA) to set a priority.

Right it is not supported in NEWA right now, it slipped by UJB and I in 3.2.9. You can get them showing with a quick change to the NEWA source. In loadRecurringInfo() in webServiceEPGEvent,cs add this

recur.Priority = recurr.Priority;

the restart the recording service. Even with that you cannot set priority but UJB has added it for his next release, PM him for details on his ftp server if you are interested. For me his beta breaks All Recordings.

Quote:It would be nice to either have it sorted by title or have an option to sort by title, channel, or priority (sort of like the sort options for All Recordings. I changed mine to sort by title, but adding sort options looked like a bit more than I wanted to bite off without at least floating the idea here on the forum.

No problem with a sort consistency is good I implemented priority raise/lower on the recurring screen itself so the outer sort shouldn't matter.

Attached is my update to your beta4. I included a patch file if you are running from a local git.

Martin
pkscout
Offline

Senior Member

USA
Posts: 464
Threads: 50
Joined: May 2014
#27
2014-06-16, 08:23 PM
OK, here's a beta5. It includes all the stuff you sent me plus the option to sort the recurring recording list by title (default), channel, or priority. I used the same control number as the sort for all recordings and error trapped it so that if the control doesn't exist (as it doesn't in the Default skin) everything will still work.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,109
Threads: 957
Joined: May 2006
#28
2014-06-16, 09:40 PM
Thanks. Did you contact UJB? I have a solution to the changed SOAP call causing the problem.

Martin
pkscout
Offline

Senior Member

USA
Posts: 464
Threads: 50
Joined: May 2014
#29
2014-06-16, 11:37 PM
I didn't. I only have one Windows machine on which to run NextPVR, and it's the production machine. I try and stay away from beta stuff on there, as my wife will kill me if we miss recordings. '-)

If the long term plan is to ask NPVR to send the lists sorted a certain way, then we can just consider the post sorting I did an interim fix.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,109
Threads: 957
Joined: May 2006
#30
2014-06-17, 02:21 AM
pkscout Wrote:I didn't. I only have one Windows machine on which to run NextPVR, and it's the production machine. I try and stay away from beta stuff on there, as my wife will kill me if we miss recordings. '-)

Understood hopefully 2.13 will get released as production soon enough. I will have to figure out how to move some SOAP to JSON and still allow you to keep working.

Quote:If the long term plan is to ask NPVR to send the lists sorted a certain way, then we can just consider the post sorting I did an interim fix.

The speed of loading recurring lists isn't too much of a conern to me even on an RPi.

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (12): « Previous 1 2 3 4 5 … 12 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  XNewa on Kodi 18.8 on Android TV Jumps out Playing Show Currently Recording jksmurf 28 10,953 2020-09-13, 06:09 AM
Last Post: jksmurf
  Changing the KNEWC UI Client Skin cweseloh 5 2,722 2020-05-04, 04:45 PM
Last Post: mvallevand
  [Moved] Comskip with XNEWA on Kodi 18 Leia jksmurf 50 14,930 2019-03-02, 08:53 PM
Last Post: jksmurf
  Location of Guide.xml in XNEWA on RPi2? jksmurf 2 2,273 2018-01-27, 02:34 AM
Last Post: jksmurf
  X-NEWA Skin Options / Classic Font Size Increase drl516 1 2,050 2017-10-22, 03:53 PM
Last Post: mvallevand
  In progress recordings in xnewa stustunz 63 18,145 2017-04-05, 01:00 AM
Last Post: stustunz
  Playing commercial-less recordings from HTPC to android clients from xnewa, nPVR tryingtocordcut 5 3,019 2017-02-08, 11:34 PM
Last Post: mvallevand
  XNEWA Estuary Skin for Kodi 17 pkscout 21 11,756 2016-11-27, 12:33 AM
Last Post: pkscout
  How do I exit XNEWA? fuzzweed 12 5,961 2016-07-27, 06:04 PM
Last Post: mvallevand
  What skin file(es) is/are used to layout the Info OSD when played via X-NEWA? BrettB 22 9,196 2016-05-15, 07:44 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