Page 38 of 41

Re: Löve Frames - A GUI Library

Posted: Thu Jan 17, 2019 11:25 pm
by linux-man
Great work. Why don't you create your repository? I would change LoveFrames library link to your code in a second.

Re: Löve Frames - A GUI Library

Posted: Sun Jan 20, 2019 7:39 pm
by monolifed
Thanks.
- restored original theme
- added a new simple theme as default
- moved some stuff around after some linting

Re: Löve Frames - A GUI Library

Posted: Fri Jan 25, 2019 10:59 pm
by monolifed
That is all.
- replaced assets with public domain ones
- some other changes that serve no purpose

Re: Löve Frames - A GUI Library

Posted: Sat Jan 26, 2019 4:55 pm
by linux-man
Ok. I'm interested in updating my repository with your changes (and write a wiki based on the previous documentation). I also updated changelog.txt with the most important changes until now. Can you write your changes?
If I'll continue to provide LoveFrames I'd like to give all the credit you deserve (that includes adding your name to the contributors).
changelog.txt
(47.29 KiB) Downloaded 554 times

Re: Löve Frames - A GUI Library

Posted: Mon Jan 28, 2019 11:46 pm
by monolifed
I moved code between files, renamed some variables, nuked a few features then lost track of it. But I will try to add the changes in the next iteration

Re: Löve Frames - A GUI Library

Posted: Thu Mar 07, 2019 9:33 am
by linux-man
I finally updated https://github.com/linux-man/LoveFrames and wiki.
Moved some files and added the demo with one more example.
Changed small things (like default to Default skin).
This update breaks compatibility at low level. Some functions had gone and others had moved from template/util/skin to loveframes space.
It's mostly (99%) :awesome: ingsoc451 :awesome: work.
Image
"Löve Frames - the library that refuses to die!"

Re: Löve Frames - A GUI Library

Posted: Sat Mar 09, 2019 8:39 pm
by Hippyman
This seriously couldn't have come at a better time. I'm trying to put together a physics editor and this just got rid of so much work. Now I can focus on the editor on not all the underlying UI code that would have been 100x worse than this. The built in state machine is pure gold.

linux-man and ingsoc451
Thank you to the both of you!

Re: Löve Frames - A GUI Library

Posted: Tue Mar 19, 2019 12:38 am
by Calaverd
Excellent library, I only had two questions
1) How to change the font size on realtime?
2) Is there a form to remove all the items on a list without basically removing the list and create a new one?

Re: Löve Frames - A GUI Library

Posted: Thu Mar 21, 2019 2:49 am
by linux-man
Hi!
Not tested (and maybe dumb), but,
1) Calling

Code: Select all

text:SetFont(love.graphics.newFont(10))
2) There is an

Code: Select all

object:Clear()
that might work. Look at https://github.com/linux-man/LoveFrames ... List#clear.

Re: Löve Frames - A GUI Library

Posted: Thu Mar 21, 2019 9:27 am
by azoyan
please add swipe touch gestures for scrolling on mobile platforms.