Search found 129 matches

by Rucikir
Wed Feb 03, 2016 1:33 pm
Forum: Support and Development
Topic: [LUA] Local function cannot access itself
Replies: 4
Views: 2391

Re: [LUA] Local function cannot access itself

Taking inspiration from kikito's middleclass Finally, a subtle point regarding recursive private methods. If you need to create a private method that calls himself, you will need to declare the variable first, and then (on the next line) initialize it with the function value. Otherwise the variable ...
by Rucikir
Tue Feb 02, 2016 12:16 am
Forum: Libraries and Tools
Topic: love-release - in Lua ! - makes LÖVE game release easier
Replies: 149
Views: 202439

Re: love-release - in Lua ! - makes LÖVE game release easier

AAAAARRRGH I forgot the permissions ?! This is so stupid. I'm sorry. Fixed . I think that most of the time love-release is used during jams, and that's when it's tested but also most needed. There's always something that goes wrong :D But thanks for the awesomeness ! Now that I've seen kitito's talk...
by Rucikir
Sat Jan 30, 2016 7:44 am
Forum: General
Topic: LÖVErs at FOSDEM ? [2019]
Replies: 10
Views: 14803

LÖVErs at FOSDEM ? [2019]

Hi!

https://fosdem.org/2019/

[FOSDEM 2019]
Yep, that’s now.

[FOSDEM 2018]
Coming up!

[FOSDEM 2017]
was nice.

[FOSDEM 2016]
Who will be at the FOSDEM this week-end? I'll be there. Kikito makes a talk there.
Meet point at the Lua devroom?
by Rucikir
Fri Jan 22, 2016 1:14 am
Forum: Libraries and Tools
Topic: love-release - in Lua ! - makes LÖVE game release easier
Replies: 149
Views: 202439

Re: love-release.lua - makes LÖVE game release easier

That's it ! love-release 2.0.0 is out ! It has been rewritten in Lua - almost - entirely. You can install it with LuaRocks. Installation on Linux should be rather easy, on Mac I can feel the pain you'll get with libzip & lua-zip (there's a symlink somewhere) and lua-sec (because openssl has been...
by Rucikir
Wed Jan 20, 2016 10:35 am
Forum: Support and Development
Topic: How do I manage multiple versions of Love on Linux?
Replies: 4
Views: 2765

Re: How do I manage multiple versions of Love on Linux?

You should check Alloyed's Flirt (topic | github), a too to help you manage and use multiple LÖVE versions.
by Rucikir
Thu Jan 07, 2016 10:03 am
Forum: Games and Creations
Topic: Hotplate app for your phone
Replies: 17
Views: 10704

Re: Hotplate app for your phone

Possible workaround is

Code: Select all

while true do print("hot") end
and put your tacos under your laptop
by Rucikir
Thu Jan 07, 2016 9:50 am
Forum: Libraries and Tools
Topic: LoGiVi (git visualisation software)
Replies: 22
Views: 13625

Re: LoGiVi (git visualisation software)

What do you use to query git commands ? Do you call it from the path with os.execute() or io.popen() ? I think there are portability problems for the last one. Or have you used luagit2 binding of libgit2 ? This one is a bit old, but it seems that the binding can be regenerated and updated. Or... hav...
by Rucikir
Wed Jan 06, 2016 1:35 pm
Forum: Games and Creations
Topic: Hotplate app for your phone
Replies: 17
Views: 10704

Re: Hotplate app for you phone

Davidobot wrote:Is this real life?
Is this just fantasy?

I have successfully waited for my water to boil with this app.
by Rucikir
Thu Dec 31, 2015 11:57 am
Forum: Libraries and Tools
Topic: Matchmaker: A LOVE Version Chooser Frontend
Replies: 1
Views: 2298

Re: Matchmaker: A LOVE Version Chooser Frontend

Has it the same utility as Alloyed's Flirt ? You submitted yours one day later :D
Matchmaker supports Windows (I see a .bat). You should consider rocking it.

Good name too.
by Rucikir
Thu Dec 31, 2015 11:48 am
Forum: Libraries and Tools
Topic: [TOOL] Flirt - Gets your games going
Replies: 5
Views: 4495

Re: [TOOL] Flirt - Gets your games going

Is Flirt or loadconf the answer to what you wrote in love-release#27 "Safely executing conf.lua" ? I have now a couple of issues to report :) I tried using Flirt, but luarocks won't install loadconf which is required by Flirt. I'm using lua 5.3, it may be because loadconf requires lua ~> 5...