|
SageTV v7 Customizations This forums is for discussing and sharing user-created modifications for the SageTV version 7 application created by using the SageTV Studio or through the use of external plugins. Use this forum to discuss plugins for SageTV version 7 and newer. |
|
Thread Tools | Search this Thread | Display Modes |
#21
|
|||
|
|||
Quote:
Thanks.
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#22
|
||||
|
||||
Good job on this! Just wanted to let you know it looks great and I'm also a fan of the minimalist design. Looking forward to your work in the future.
|
#23
|
|||
|
|||
0.6 Beta Released
Just released 0.6 Beta.
New Features: * Added play support for series. Plays next available if possible - otherwise navigates to episode screen. * Added additional exception handling and logging to assist in debugging blank TVB initial screens. * Fixed bug where recorded movies were included in TVB. * Added delete support to recordings and imported TV. * Added episode progress bar. * Changed text to red if a series/episode has an active recording. * Added ability to detect when a recording has started/stopped and removed. * Added additional season information if no series information exists. * Removed Poster area if series has no associated posters.
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#24
|
|||
|
|||
Looks good. I like the new play support. Might be nice to see the Next Episode info on the far right with the Season count info (so you know what is going to play).
2 issues I found. A small one visually... the text on the watched videos is centered vertically (in italics) but the text on the unwatched items is top aligned rather than vertically centered. Perhaps you did this to make room for the watched/progress bar... its not a biggy... just throws the view off a bit. The delete does not seem to be working consistently. I didn't actually try selecting Yes from the menu but the menu usually just shows the Series name rather than the episode... in "The Event" it would ask if I wanted to delete "The Event"... as if it would delete the who series? Also, after selecting No then going out and into another series it would sometimes display the previous Series in the Delete dialog. Excellent work though... still using it daily. k |
#25
|
||||
|
||||
I'd love to get a peek at your API source code, is it up on googlecode or sourceforge?
__________________
Clients: 1xHD200 Connected to 50" TH-50PZ750U Plasma Server : Shuttle SFF SSH55J2 w/ Win7 Home, SageTV v7, Core i3 540, 2GB RAM, 30GB SSD for OS, 1.5TB+2x1TB WDGP for Recordings, BluRay, 2xHDHR, 1xFirewire SageTV : PlayOn, SJQ, MediaShrink, Comskip, Jetty, Web Client, BMT Having a problem? Don't forget to include a log! (Instructions for: PlayOn For SageTV v1.5, MediaShrink) |
#26
|
|||
|
|||
Quote:
Quote:
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#27
|
|||
|
|||
Not yet - but I will move it there eventually. Send me a PM if there is a specific sections you are interested in.
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#28
|
||||
|
||||
Just like looking at source code
Mostly curious how you implemented the "Next Episode" logic.
__________________
Clients: 1xHD200 Connected to 50" TH-50PZ750U Plasma Server : Shuttle SFF SSH55J2 w/ Win7 Home, SageTV v7, Core i3 540, 2GB RAM, 30GB SSD for OS, 1.5TB+2x1TB WDGP for Recordings, BluRay, 2xHDHR, 1xFirewire SageTV : PlayOn, SJQ, MediaShrink, Comskip, Jetty, Web Client, BMT Having a problem? Don't forget to include a log! (Instructions for: PlayOn For SageTV v1.5, MediaShrink) |
#29
|
|||
|
|||
Quote:
Code:
@Override public int compareTo(final SimpleEpisode otherEpisode) { int compareResult; final boolean hasZero = Ints.contains(new int[] { getSeasonNumber(), getEpisodeNumber(), otherEpisode.getSeasonNumber(), otherEpisode.getEpisodeNumber() }, 0); if ( hasZero == false ) { final int seasonCompare = Ints.compare(getSeasonNumber(), otherEpisode.getSeasonNumber()); if ( seasonCompare == 0 ) { compareResult = Ints.compare(getEpisodeNumber(), otherEpisode.getEpisodeNumber()); } else { compareResult = seasonCompare; } } else { final DateTime originalAirDate = new DateTime(Math.max(airing.GetShow() .GetOriginalAiringDate(), metaData.getOriginalAirDate().getTime())); final DateTime otherOriginalAirDate = new DateTime(Math.max(otherEpisode.airing.GetShow() .GetOriginalAiringDate(), otherEpisode.metaData.getOriginalAirDate().getTime())); compareResult = originalAirDate.compareTo(otherOriginalAirDate); if ( compareResult == 0 ) { /** Lastly Compare Broadcast Dates */ final DateTime airDate = new DateTime(airing.GetAiringStartTime()); final DateTime otherAirDate = new DateTime(otherEpisode.airing.GetAiringStartTime()); compareResult = airDate.compareTo(otherAirDate); } } return compareResult; }
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#30
|
|||
|
|||
It was on imported TV.
If you need any screen grabs let me know. k |
#31
|
|||
|
|||
Enhancement request - watched indicator on Series
I would like to see the Watched indicator that you use on the episode items also used on the Series items when the count of videos is equal to the count of watched. You could also set the font to the "watched" font (italic).
I know you use the watched/progress bar to indicate this but I am more a True/False kind of guy where something is either watched or not so I disable watched bars wherever possible. For this plugin I changed the color entries in the properties file so the watched bar blends in and disapears... multimenu_blue_bar_alpha=0 multimenu_blue_bar_color=0xFFFFFF Anyway... it would make fully watched series more visible (IMHO) k |
#32
|
|||
|
|||
Quote:
This is done and will be released in the next version. Series and Episodes now work the same way. Progress bars to indicate how much has been watched, if 100% then no progress bar and a watched icon is used instead.
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#33
|
|||
|
|||
0.6.1 Released
* Fixed reported delete problem where item to delete did not change on multiple invocations.
* Modified watched behavior of series to follow that of episodes: No progress bar if 100%, Watched icon added, font style change.
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#34
|
|||
|
|||
Quote:
k |
#35
|
|||
|
|||
Resubmitted and approved.....
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#36
|
|||
|
|||
Works now... thanks for the update.
Delete dialog is now consistent. I still think the dialog for imported tv should state the specific episode that will be deleted. As in the screen capture attached it states the "Series" name and I am sure that is not what you intend to delete. The Watched icon, font spacing etc all seem to work well now. k |
#37
|
|||
|
|||
Quote:
__________________
Host: ESXi 6.5 w/ Intel Core i7 2.8GHZ 8GB Ram Guest: Ubuntu 16.04 with Sage v9 in Docker Tuners: 2 HDHR (OTA); Extenders: HD300 connected to a Samsung 56" DLP HDTV; HD300 connected to a Sharp 42" LCD Storage: OmniOS w/6 1TB Samsung Spinpoint in a RaidZ2 configuration in a 20 bay SATA hotswap case. |
#38
|
|||
|
|||
Quote:
k |
#39
|
|||
|
|||
Quote:
|
#40
|
|||
|
|||
Ok i have phoenix fanart and core services installed, but no fanart is showing up. Do i need to do something (painfully simple i imagine) to enable it?
__________________
Gigabyte GA-MA770-DS3/4gb DDR2/AMD Phenom 955 3.2ghz Quad Core Windows 7 64bit Home Premium Hauppauge 1600/1850/2250/colossus/2650(CableCard 2 tuner) 8tb RAID5 storage/media/other &3tb RAID5 backup storage on a HighPoint RocketRaid 2680 1tb 3 disk Recording Pool all in a beautiful Antec 1200 SageMyMovies/Comskip/PlayON/SageDCT/SRE HD100/HD300 extenders |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Plugin: MizookLCD (Alternate SageTV LCDSmartie Plugin) | cslatt | SageTV Customizations | 48 | 06-11-2012 10:44 AM |
MediaPlayer Plugin/STV Import: Winamp Media Player Plugin | deria | SageTV Customizations | 447 | 12-11-2010 07:38 PM |
Plugin Manager: Configure plugin | medwynd | SageTV Beta Test Software | 0 | 05-29-2010 08:43 AM |
Hulu: Possible to Use XBMC Hulu Plugin to create SageTV Plugin? | Brent | SageTV Customizations | 8 | 02-24-2009 04:16 PM |