Search found 227 matches

by paulclinger
Sat Jul 23, 2016 5:01 am
Forum: General
Topic: ZeroBrane Studio Lua IDE v1.30 is out; updated LÖVE API for 0.10.0
Replies: 18
Views: 10000

Re: ZeroBrane Studio Lua IDE v1.30 is out; updated LÖVE API for 0.10.0

> It's under a CloudFlare firewall that blocks Tor so I can't read it directly. But I've found it by googling and then I could use the google cache to read it. The entire site is also available in the repository: https://github.com/pkulchenko/ZeroBraneStudio/blob/gh-pages/doc-lua-debugging.md#how-de...
by paulclinger
Sat Jul 23, 2016 12:46 am
Forum: General
Topic: ZeroBrane Studio Lua IDE v1.30 is out; updated LÖVE API for 0.10.0
Replies: 18
Views: 10000

Re: ZeroBrane Studio Lua IDE v1.30 is out; updated LÖVE API for 0.10.0

> I can set breakpoints in the main thread (meaning I've probably set up the debugger correctly), but not in the coroutine's thread. The program just doesn't stop there. Is this not supported? It is supported, but requires telling the debugger that support is needed; you may check this section in th...
by paulclinger
Thu Jul 21, 2016 7:22 pm
Forum: General
Topic: What's your Lua/Love setup ?
Replies: 26
Views: 18708

Re: What's your Lua/Love setup ?

@Plu, what version of ZeroBrane Studio are you using? There has been a possibly related issue on Linux that has been fixed last year (https://github.com/pkulchenko/ZeroBraneStudio/issues/425), so if you are not on v1.30, I suggest upgrading. If you are using 1.30, you can provide more details about ...
by paulclinger
Wed Jun 29, 2016 11:37 pm
Forum: General
Topic: Zerobrane Studio Löve2d Debug Mode Crash
Replies: 6
Views: 4016

Re: Zerobrane Studio Löve2d Debug Mode Crash

@fsc1, thank you for the supportive feedback!

@nexusdawn, I've made the change to the Löve integration, so it will get included in the next release. If you want to give it a try, you can get the master branch from the repository, which also includes Löve API updated for v0.10.1.
by paulclinger
Tue Jun 28, 2016 7:08 pm
Forum: General
Topic: Zerobrane Studio Löve2d Debug Mode Crash
Replies: 6
Views: 4016

Re: Zerobrane Studio Löve2d Debug Mode Crash

> it seems for whatever reason (no I didn't insert a code line stop) The debugger code in Zerobrane Studio in Löve2d needs a 'Continue' debugging by pressing F5 (or by using the tool bar controls) after running the debug code: @nexusdawn, yes, that's the default configuration for the Löve interprete...
by paulclinger
Sun Apr 17, 2016 10:21 pm
Forum: General
Topic: configure zerobrane on mac
Replies: 2
Views: 2032

Re: configure zerobrane on mac

@DavoMcDavo, you probably didn't select Love as the interpreter (Project | Lua interpreter | Love). After you do that, you may not need to set `path.love2d`, as you have love installed in the default location, so ZeroBrane Studio should be able to find it there. Also, make sure that the project dire...
by paulclinger
Thu Mar 24, 2016 9:34 pm
Forum: General
Topic: I am an unfortunate victim of perfectionism.
Replies: 13
Views: 7277

Re: I am an unfortunate victim of perfectionism.

I used to suffer from this as well, but I don't anymore (even though I'm still a perfectionist). Here are some things that helped in my case. I think the first thing is to acknowledge what you are dealing with, which you already did. In my case, I'm currently working on a sizable (10k+ lines) Lua pr...
by paulclinger
Sun Mar 20, 2016 9:00 pm
Forum: Support and Development
Topic: LOVE on Raspberry Pi?
Replies: 11
Views: 13380

Re: LOVE on Raspberry Pi?

> Next step is to compile 0.10.1 and try that out. Does anyone know how to compile 0.10.1 from source and have it replace the repository version so it runs from any directory and ZeroBrane uses it by default? @MachineCode, I can't answer the first question, but in terms of configuring ZeroBrane Stud...
by paulclinger
Thu Mar 03, 2016 4:36 pm
Forum: General
Topic: ZeroBrane Studio Lua IDE v1.30 is out; updated LÖVE API for 0.10.0
Replies: 18
Views: 10000

Re: ZeroBrane Studio Lua IDE v1.30 is out; updated LÖVE API for 0.10.0

@Wrinkliez, this is because folding is set by default to "compact", which means it includes empty lines after the end of block (if any). If you don't want that, set `editor.foldcompact = false` in the config; see here: https://studio.zerobrane.com/doc-editor ... ces#editor
by paulclinger
Wed Feb 10, 2016 5:13 am
Forum: General
Topic: Using Love for an application which isn't a game
Replies: 25
Views: 11359

Re: Using Love for an application which isn't a game

@mmanso, I can only speak about wxlua a bit. I've been developing a cross-platform Lua IDE and it has been fairly straightforward process, although there are some differences to keep in mind (as wxwidgets toolkit that wxlua is based on is trying to keep "native" look on platforms it suppor...