rickyzhang wrote:I'm curious if you are interested in developing UI in Python tkinter so that the UI can be portable it can be portable in Mac, Windows and Linux.
Actually, I'm working on an fltk/lua version. That's why I'm not working on this Cocca version anymore.
I started working on it three weeks ago, worked on it for a week (got configuration parsing and gui design done), then I put it on hitaus.
Don't expect it to be released soon, however. (I can't manage my free time well wwwww)
julialy wrote:
Don't expect it to be released soon, however. (I can't manage my free time well wwwww)
Would you host it to github? I wrote some Lua code at work as script. But I know nothing about FLTK.
I know Lua has no built-in threading. I was surprised to learn that Lua can build a UI.
Develop a new portable UI for BII should not be any technical difficulty. It is a matter of time. But I hope we can build one can easily compile and truly portable. Lua/Python should be a better choice.
There is an App for that!
https://github.com/rickyzhang82
julialy wrote:
Don't expect it to be released soon, however. (I can't manage my free time well wwwww)
Would you host it to github? I wrote some Lua code at work as script. But I know nothing about FLTK.
I know Lua has no built-in threading. I was surprised to learn that Lua can build a UI.
Develop a new portable UI for BII should not be any technical difficulty. It is a matter of time. But I hope we can build one can easily compile and truly portable. Lua/Python should be a better choice.
I can run python27 and python-tk in my iBook PPC in tiger. But I'm not sure how moonscript compile into Lua.
I thought Lua is interpreted.
I haven't tried Lua on my PPC anyway. Lua is VERY open in terms of how to do object oriented. Lua interpreter is tiny compared to Python. But Lua's library is far fewer than Python. At work, I'm always advocate of Python. Because I have horrible experience in using Luarock. pip just work much better in Mac and Linux.
There is an App for that!
https://github.com/rickyzhang82
rickyzhang wrote:I can run python27 and python-tk in my iBook PPC in tiger. But I'm not sure how moonscript compile into Lua.
I thought Lua is interpreted.
I haven't tried Lua on my PPC anyway. Lua is VERY open in terms of how to do object oriented. Lua interpreter is tiny compared to Python. But Lua's library is far fewer than Python. At work, I'm always advocate of Python. Because I have horrible experience in using Luarock. pip just work much better in Mac and Linux.
It's easy to just link fltk, lua, srlua, lua source, and fltk4lua together.
One executable (unlike Python)
I'm not sure if fltk runs on PPC; will have to take a look at that.
Can you move all your dependency in your github including Lua, FLTK, moonscript, LuaFLTK. I believe FLTK has other dependency. We will see it later.
I want to give a try and see if it can easily package. If this is simple, I'd want to work with you to build a new UI for BII. Current Cocoa UI doesn't got compile in 10.11 SDK. I have to use GTK2 and X. I think there should be better alternative solution.
I can use macports to package Python and Python-tk into mpg binary. But it took me 2 days to compile development stack from macports in my new bought PPC iBook.
There is an App for that!
https://github.com/rickyzhang82
rickyzhang wrote:Can you move all your dependency in your github including Lua, FLTK, moonscript, LuaFLTK. I believe FLTK has other dependency. We will see it later.
I want to give a try and see if it can easily package. If this is simple, I'd want to work with you to build a new UI for BII. Current Cocoa UI doesn't got compile in 10.11 SDK. I have to use GTK2 and X. I think there should be better alternative solution.
I can use macports to package Python and Python-tk into mpg binary. But it took me 2 days to compile development stack from macports in my new bought PPC iBook.
I'm not sure if you want to work together for this project. If you do, I hope we have some base line dependency in your **git repo** so that I can pull from there to start with.
There is an App for that!
https://github.com/rickyzhang82
I'm not sure if you want to work together for this project. If you do, I hope we have some base line dependency in your **git repo** so that I can pull from there to start with.
I'll post a new topic whenever it's done. I usually don't accept contributions until I get a working version completed. No ETAs, because usually I miss them.
I don't like including external dependencies in git repos because it increases the size of the git repo (for example, wxWidgets has a lot of files). git submodules are fine, however.