News:

Latest versions:
Server plugin: 0.5.1
MVP dongle: 0.5.2
Raspberry Pi client: 0.5.2
Windows client: 0.5.2-1

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - sat-user

#1
Vomp For Windows / Re: Vomp Client 0.3.1-3
March 28, 2012, 19:12:05
Client has no keyboard or mouse. So no startup switch excists?

Too bad I don't have a lott of programming skills else I could programm an extra option in the misc menu for starting up full screen :(

Also the timers menu needs attention, the program crashes after reading the timers from vdr. Error is strftime commands fails.
Any hints on that one?
#2
Vomp For Windows / Vomp Client 0.3.1-3
March 27, 2012, 12:57:15
Hi,

just finished compiling Vomp Client 0.3.1-3 with patches from http://www.russle.net/vomp/

Some problems I found:
select timers menu and client is crashing maybe because I've a patched timer menu on the server or because I use VDR 1.7.21
On de guide (epg-page) the mini TV picture isn't at the right place

Included the Multi Threaded Debug and the Multi Threaded Debug DLL version.

One thing I can't find is how to start full screen because pc is used for TV/ Recording watching mostly, anyone?

Big thanx to the creators of this software, author of the compile howto, patch creators etc etc.

Greetz
#3
Somethings to add to point 7.

Mediafile.cc didn't build on winxp with visual studio 2008.
I'd to change fseeko -> _fseeki64 & ftello -> _ftelli64
Better include somewhere
#ifdef _WIN32
#    ifdef __MINGW32__
#        define fseeko fseeko64
#      define ftello ftello64
#    else
#        define fseeko _fseeki64
#        define ftello _ftelli64
#    endif
#endif

Also had to put mfuuid.lib at "Add additional dependencies"

Exclude libcmt.lib (for normal builds) libcmtd.lib (for debug builds)

Link failed, because with the "import existing items" the subdirectories aren't included, imported font & teletxt

After that it build.

Greetz from Holland.