Hi,
1) Are you on Windows?
Which one is it ? XP/7/8/10?
2) Can you try rebuilding your project? (Build\Rebuild)
3)
[::1]:65535 that's IP address in IPv6 format.
Do you get that when using ConnectionServer.localAddress().asText()?
You should be getting a IPv4 format, as the method should prioritize that.
4) Can you let me know what does the new function 'GetComputerName' return in your case?
Is the result correct as the name of your computer?
Does it contain any accented characters?
5) Can you run this program and attach here the output?
The output will be copied to your system clipboard.
Code:
/******************************************************************************/
void InitPre()
{
App.flag|=APP_MINIMIZABLE|APP_MAXIMIZABLE|APP_WORK_IN_BACKGROUND;
EE_INIT();
Memt<SockAddr> sa; GetLocalAddresses(sa);
Str s; FREPA(sa)s.line()+=sa[i].asText();
ClipSet(s);
Exit(s);
}
bool Init()
{
return true;
}
void Shut()
{
}
/******************************************************************************/
bool Update()
{
if(Kb.bp(KB_ESC))return false;
return true;
}
void Draw()
{
D.clear(TURQ);
}
/******************************************************************************/
6) nothing was changed related to video playback.
Please try rebuilding the project.
If this won't help, please debug, and provide more info what's not working exactly.
Thank you