NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 26 27 28 29 30 … 56 Next »
Community Skin version 1.0 released.

 
  • 0 Vote(s) - 0 Average
Community Skin version 1.0 released.
Carlito
Offline

Posting Freak

Posts: 817
Threads: 41
Joined: May 2006
#181
2006-11-06, 11:33 PM
Fatman_do Wrote:Where exactly?

In the TV Listings page...see screenshot. It could be due to the 'failed copies' error I described earlier. Possibly a skin file not copying over correctly???
----------------------
[SIZE="1"]PVRX2 1.3.11
Shuttle SG33G5 Case
Core2Duo E8400 3Ghz -- 4 GB RAM
Hauppauge PVR-150
Adaptec AVC-3610 Dual Tuner
Onboard Intel GMA 3100 through HDMI -- 500GB
37" Westinghouse LCD (1920 x 1080p)

Projects
Program Image Tool[/SIZE]
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#182
2006-11-07, 12:26 AM
Carlito Wrote:In the TV Listings page...see screenshot. It could be due to the 'failed copies' error I described earlier. Possibly a skin file not copying over correctly???

No, that is probably from a textstyle being called that doesn't exist. I'll have to check out the xml file.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Jeff
Offline

Posting Freak

Posts: 1,933
Threads: 69
Joined: Oct 2004
#183
2006-11-07, 01:12 AM
McBainUK Wrote:Are you sure the recording service will restart GBPVR MVP servers automatically?

Yes, this is what the <MVPServerAutostart></MVPServerAutostart> parameter in the config.xml file specifies. The recording service is very aggressive on restarting the processes. If they die or are killed they are restarted almost immediately.


McBainUK Wrote:Do you have any example code/links to help with killing and restarting processes in dot net?

You can use the Process class to start and kill processes. Killing the GBPVR processes and the GBPVRRecordingService process could use this. Restarting it via the recording service might be different since it is a service not a process. To kill them you would do something like

Code:
Process[] processList = Process.GetProcessesByName("GBPVRRecordingService");
            if (processList != null && processList.Length == 1)
                processList[0].Kill();

            Process[] processList = Process.GetProcessesByName("GBPVR");
            if (processList != null)
            {
                for (int i=processList.Length-1, i>=0; i--)
                    processList[i].Kill();
            }

To restart I think you would do something like:
Code:
Process recordingsProcess = new Process();
            recordingsProcess.StartInfo.FileName = "net";
            recordingsProcess.StartInfo.Arguments = "start \"GB-PVR Recording Service\"";
            recordingsProcess.Start();

Jeff
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#184
2006-11-07, 03:00 AM
Carlito Wrote:In the TV Listings page...see screenshot. It could be due to the 'failed copies' error I described earlier. Possibly a skin file not copying over correctly???

This might be a fix.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Carlito
Offline

Posting Freak

Posts: 817
Threads: 41
Joined: May 2006
#185
2006-11-07, 04:10 AM
Fatman_do Wrote:This might be a fix.

Thanks Fatman_do, that fixed it!
----------------------
[SIZE="1"]PVRX2 1.3.11
Shuttle SG33G5 Case
Core2Duo E8400 3Ghz -- 4 GB RAM
Hauppauge PVR-150
Adaptec AVC-3610 Dual Tuner
Onboard Intel GMA 3100 through HDMI -- 500GB
37" Westinghouse LCD (1920 x 1080p)

Projects
Program Image Tool[/SIZE]
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#186
2006-11-07, 02:20 PM
Ok, I am thinking version 2.0 may be ready for prime time later this week (xml's only.) There are some more image processing and other outstanding issues that will be addressed before it goes "gold".

Upon further review, I am wondering if a few more textstyles are in order.

Jeff and Reven use additional text styles to convey if something has been watched or not, and Reven using styles to indicate if a file is playing.

So maybe I should add ListTextPlaying, IconTextPlaying, ListTextUnseen, and IconTextUnseen.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#187
2006-11-07, 09:05 PM
Carlito Wrote:Is there a way to capture the output to a file?
The attached version of SkinPluginHelper.exe supports log files. Log of skin changes are written to SkinPluginHelper.exe.log in the GB-PVR directory.
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
Carlito
Offline

Posting Freak

Posts: 817
Threads: 41
Joined: May 2006
#188
2006-11-07, 09:12 PM
Excellent, thanks McBainUK.
I have the log file this produced. The only error not related to taskimages is
C:\Program Files\devnz\gbpvr\skin\SkinPlugin\IconViewFolderIcons\BlueMCE2\IconView_FolderPhoto.png

I switched to the avance theme, but the unselected buttons in sub menus is still set to the blue skin icons.
----------------------
[SIZE="1"]PVRX2 1.3.11
Shuttle SG33G5 Case
Core2Duo E8400 3Ghz -- 4 GB RAM
Hauppauge PVR-150
Adaptec AVC-3610 Dual Tuner
Onboard Intel GMA 3100 through HDMI -- 500GB
37" Westinghouse LCD (1920 x 1080p)

Projects
Program Image Tool[/SIZE]
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#189
2006-11-07, 09:22 PM
Carlito Wrote:Excellent, thanks McBainUK.
I have the log file this produced. The only error not related to taskimages is
C:\Program Files\devnz\gbpvr\skin\SkinPlugin\IconViewFolderIcons\BlueMCE2\IconView_FolderPhoto.png

I switched to the avance theme, but the unselected buttons in sub menus is still set to the blue skin icons.

That is from the ".png.png" error in the theme's .xml file (seen in a previous post). I have fixed it for the next release.

The IconView_FolderPhoto is because those images don't exsist (my bad). I'll have to add them for the next release.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#190
2006-11-07, 09:26 PM
Dont know why didnt do log to file before, would have made testing so much easier :confused: Rolleyes
------------------------------------------------------------
OK, there is a line wrong on the Advance theme xml file (most likely found at C:\Program Files\devnz\gbpvr\skin\SkinPlugin\Themes\Avance.xml).

All you need to do is change this line:
Code:
<ThemeItem skinItemName="NormalButtonEditableSkinItem" type="SingleImage" image="%IMAGESETDIR%\Buttons\Avance\FaintWhite.png.png"/>

To:
Code:
<ThemeItem skinItemName="NormalButtonEditableSkinItem" type="SingleImage" image="%IMAGESETDIR%\Buttons\Avance\FaintWhite.png"/>

And then re-apply the theme.
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (24): « Previous 1 … 17 18 19 20 21 … 24 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  OlSkool skin for NextPVR v6 Jaggy 3 2,380 2023-07-16, 05:26 PM
Last Post: sub
  NextTool finally released mvallevand 0 3,158 2022-05-13, 09:53 PM
Last Post: mvallevand
  BlueRetroVE+ skin for NPVR Jaggy 101 41,674 2018-01-10, 04:48 AM
Last Post: pitbull1969
  Blue-Retro-SHV Skin updated Jaggy 55 26,838 2018-01-09, 12:52 AM
Last Post: Jaggy
  Searchlite v3 Released - maybe not so lite. mvallevand 0 2,310 2017-04-24, 03:04 PM
Last Post: mvallevand
  TV Listings 3.7.2 released alibert 0 3,030 2016-11-21, 05:13 PM
Last Post: alibert
  Modern Skin cweseloh 0 2,595 2016-06-02, 03:07 PM
Last Post: cweseloh
  NextBlue skin for npvr Northpole 162 63,980 2015-12-16, 07:39 PM
Last Post: Northpole
  JustRetro skin update Jaggy 0 2,010 2015-09-14, 12:37 AM
Last Post: Jaggy
  TV Listings 3.7.1 released alibert 3 4,010 2015-01-10, 11:05 AM
Last Post: liteswap

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

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

Linear Mode
Threaded Mode