View Single Post
Old 08-13-2017, 04:32 AM   #10
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

okay looks like it won't open https: links. I'm midway through a lot of changes at the moment,but in the meantime you can fix it with this modification to IGraphicsMac.mm

diff --git a/WDL/IPlug/IGraphicsMac.mm b/WDL/IPlug/IGraphicsMac.mm
index 8c80a65c2f..8447c347d0 100644
--- a/WDL/IPlug/IGraphicsMac.mm
+++ b/WDL/IPlug/IGraphicsMac.mm
@@ -701,7 +701,7 @@ - (BOOL)canBecomeKeyWindow {return YES;}
{
#pragma REMINDER("Warning and error messages for OpenURL not implemented")
NSURL* pURL = 0;
- if (strstr(url, "http"))
+ if (url && (!strnicmp(url,"http://", 7) || !strnicmp(url,"https://", 8)))
{
pURL = [NSURL URLWithString:ToNSString(url)];
}
oli-mbp:IPlug oli$
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote