Search found 36 matches

by 0x25a0
Sat Jul 08, 2017 10:37 pm
Forum: Libraries and Tools
Topic: SaveData: A library for saving data in 35 lines
Replies: 6
Views: 7421

Re: SaveData: A library for saving data in 35 lines

Looks nice and compact :) I used the same approach in one of my projects, so here are two things I noticed in your solution: Indices in Lua tables don't need to be simple strings like "scene" or "settings". They can contain spaces and special characters. With the current code the...
by 0x25a0
Tue Jul 04, 2017 6:03 am
Forum: Libraries and Tools
Topic: Quadtastic - A tool to manage sprite sheets and color palettes
Replies: 10
Views: 19973

Re: Quadtastic - A tool to manage sprite sheets and color palettes

There should be a note on the download page that the .love version requires LFS to be installed. But it seems like that note is easy to miss, so I'll add a more in-your-face warning :) If you have luarocks installed, then luarocks install luafilesystem should do the trick. If that doesn't work, let ...
by 0x25a0
Sun Jun 18, 2017 9:02 am
Forum: Libraries and Tools
Topic: Quadtastic - A tool to manage sprite sheets and color palettes
Replies: 10
Views: 19973

Re: Quadtastic - A tool to manage sprite sheets and color palettes

Thanks for the ideas, @D0NM :) 1) Quadtastic is missing a custom output to adapt your great tool for old projects needs easily. I don't have any special suggestions yet. It might be another "custom export" button which iterates the listed quads to some "user's module". Absolutely...
by 0x25a0
Wed May 10, 2017 11:33 am
Forum: Libraries and Tools
Topic: Error handler that asks user to report crash
Replies: 26
Views: 24892

Re: Error handler that asks user to report crash

yetneverdone wrote: Wed May 10, 2017 3:44 am Shouldnt it be crash-test.love?
Oh, I was hoping that it was obvious why it's crush and not crash... :)
by 0x25a0
Tue May 09, 2017 11:31 pm
Forum: Libraries and Tools
Topic: Error handler that asks user to report crash
Replies: 26
Views: 24892

Re: Error handler that asks user to report crash

Thanks a lot for the feedback and fresh ideas! :) Apparently some time in the last few years, major ISPs started blocking outgoing connections on port 25 from residential accounts / dynamic IPs. https://www.xfinity.com/support/internet/email-port-25-no-longer-supported/ This is probably a bit silly ...
by 0x25a0
Tue May 09, 2017 4:08 pm
Forum: Libraries and Tools
Topic: Error handler that asks user to report crash
Replies: 26
Views: 24892

Re: Error handler that asks user to report crash

Thanks, adnzzzzZ! there are services like GCP https://cloud.google.com/free/ that give you free access as long as you don't go over a certain usage limit Good point, it's worth mentioning that these exist :) AWS also has a free tier https://aws.amazon.com/free/ It could work, but it's likely easier ...
by 0x25a0
Wed May 03, 2017 8:52 pm
Forum: Libraries and Tools
Topic: Error handler that asks user to report crash
Replies: 26
Views: 24892

Re: Error handler that asks user to report crash

Oh wow, it does work without authentication :-O
Thanks a lot, airstruck!

With that out of the way it should be possible to fully automate the crash reporting. I'll add an example to the original post when I find the time.
by 0x25a0
Wed May 03, 2017 3:27 pm
Forum: Libraries and Tools
Topic: Error handler that asks user to report crash
Replies: 26
Views: 24892

Re: Error handler that asks user to report crash

It seems that the "error("foobar")" function is the only difference in our codes. I even tried putting the whole love.errhand function in the main.lua file So the app still just closes and you don't see a dialog? Hmm that's odd. If you could upload your .love archive, I could ha...
by 0x25a0
Wed May 03, 2017 2:56 pm
Forum: Libraries and Tools
Topic: Error handler that asks user to report crash
Replies: 26
Views: 24892

Re: Error handler that asks user to report crash

Will that work also for the android port? It seems to work on Android, too, but doesn't look very nice . You could remove the stack trace from the displayed message to make it more readable. But other than that it works as expected; the email button for example opens the default email app with the ...