@CamelCoder could you share a screenshot of the black bar? I’d love to fix it.
Late, but I want beta
@TokOut I’ll post about the next one soon and I hope you apply when I do!
@Simeon this is what I was talking about, it only happens in landscape btw. Also, when you code, the status bar shows at the top which messes up the touch sequences when you are selecting the tabs. That also might be something to fix. Thanks!
@XanDDemoX haha I had no idea people were using that URL scheme. I can look into adding support for that.
@Simeon Just noticed that 2.3.3 breaks opening/resuming Codea with db-cj1xdlcmftgsyg1://
. Codea now opens and then crashes immediately, I can easily replicate it with Safari. I know its undocumented, but I thought you’d probably want to know about the crash anyway and it could be a good opportunity to sneak in url scheme support ;).
I imagine the scheme could look something like the following, which also conforms to the url structure suggested by the x-callback-url 1.0 draft specification.
Codea://UrlEncodedProjectKey/Extensible/User/Path?query=string&other=value
To handle url callbacks from other apps Codea would either start or resume the specified project, if a project is specified. Then simply calling a global callback function passing in the full url would probably be sufficient.
function xcallbackurlOpen(urlString)
-- parse urlString with string library and/or LuaSocket's url library and handle
end