Klugier Messages: 1099 Registered: September 2012 Location: Poland, Kraków
Senior Contributor
Hello Mirek,
Congratulations! It is good to see new U++ release. I created release on GitHub. I also decided to add a description to the release not only several points.
Congratulations! It is good to see new U++ release. I created release on GitHub. I also decided to add a description to the release not only several points.
line 255 Util.cpp (version 16847)
(NOTE: no was directive to PLATFORM_WIN32!)
bool HasGit()
{
String dummy;
static bool b = HostSys("git", dummy) >= 0;
return b;
}
line 262 Util.cpp (in old version 16660 this works!)
(NOTE: in line 255 was the directive #ifdef PLATFORM_WIN32)
bool HasGit()
{
String dummy;
static bool b = FileExists(GetInternalGitPath()) || Sys("git", dummy) >= 0;
return b;
}
BetoValle Messages: 204 Registered: September 2020 Location: Brasil Valinhos SP
Experienced Member
Hi,
I built an application to backup files and in one routine I use the ShellOpenFolder function from the ComDlg.cpp file in the ide/common package. (the Util.cpp file in question is part of this component)
int n = gD.GetCursor();
String pasta_= gD.Get ( n,colunaDestino).ToString();
if(!pasta_.IsEqual("") )
ShellOpenFolder(pasta_);