@Simeon Getting back to the cut,copy,paste,re-indent,lookup popup not showing, here’s what makes it stop working. After pressing one of the keys in the top row that has the dot in the upper right corner to show the extra keys, the popup won’t show anymore after that. It works again after closing Codea and getting back in.
P.S. You don’t have to select one of the extra keys, you just need to show them.
@Mark is it a specific sequence that it fails to work with? If it’s consistent then it should be quite easy to fix.
I wish I could see the crash logs. I get them all, but they are not symbolicated and are impossible to read. When TestFlight was not owned by Apple things were a lot more reliable. Edit: looks like Crashlytics supports bitcode now. I will switch to that over the built-in crash reporting for future builds.
@Ignatz wow, who needs bug fixes when you have workarounds! For me, that only works if I type something into the search field at the top of the reference. Great to know though, I was getting bored of having to force quit all the time.
Just a quick check - I have been trying to set up yojimbo2000’s 3D modeller, without success. Every time I try to sync Dropbox it drops out of Codea, so transfer of models isn’t possible. I’m looking into why I have the problem. Could be my Dropbox size - I have hundreds of files in the Codea.app folder.
Please confirm this is not a feature of 9.02 or 2.3.2(xx).
Neither the search or reference gets the popups back for me. Going all the way down in the reference to a specific function or going to a found variable in search has no effect. So far only exiting Codea works for me.
@Simeon For the problem I show above with the keyboard, here’s a program to show how it happens. Hold the iPad in portrait orientation and execute the below program. It will be in landscape orientation, but don’t rotate the iPad. Close the program and tap the screen to show the keyboard. It should be messed up.
supportedOrientations(LANDSCAPE_ANY)
function setup()
end
function draw()
end
@Bri_G I don’t seem to be having any issues syncing dropbox. 189 files, 40mb, about half jpegs and pngs, half text files (obj/ mtl files). Codea 2.3.2 build 51, iOS 9.0.2
Neither the search or reference gets the popups back for me.
Interesting how you, Ignatz and I get subtly different behaviour. Have you tried pulling down on the slide-out reference to get the search box at the top, and typing something in there? That’s what i have to do.
I believe the memory leak is still there in mesh definition. After blocking a bit of code at a time, it looks like memory wasn’t recovering if the draw method redefined a set of meshes.
Just run this little snippet…
function draw()
local m = mesh()
print(collectgarbage("count")*1024)
end
And you can see that garbage collection seems to work at first, then stops.