How can I contribute? #111
Replies: 6 comments 9 replies
-
@sumeshir26 I'm currently working on the dialogs if you'd like to help me |
Beta Was this translation helpful? Give feedback.
-
I'll try to write a |
Beta Was this translation helpful? Give feedback.
-
Sheesh I'm in trouble now. It's hard to figure out, in what do I need help. I grew up in a family, where if I want something to be done, I had to do it myself, and so it's difficult for me to find what others can help with (and I'm maximalist and I feel that only I can do things in the way I want it to be 😏. Nonetheless I'll try to give some description about each task, so you can see what I have in my mind. Btw, sorry about that @Moosems, when I scrapped half of your tooltip code, because I had a better idea). However I always come up with new ideas, of what I should add to tukaan, and how it should be implemented. I have dozens of notes on my phone, that I made on the train, where I have enormous amount of time, but no WiFi :), but unfortunately I don't really have time to implement them after all. Let's start with the simpler ones:
Sorry for any typo and grammar error, I'm dead tired 😴 😩 . I will continue this list tomorrow. I have a lot more items ;) |
Beta Was this translation helpful? Give feedback.
-
I think I might try working on the window icons, but im not sure how to allow pngs to be set on every system... |
Beta Was this translation helpful? Give feedback.
-
@Moosems I remember I promised you a tutorial on Tcl calls, I seem to have forgotten it :( The Tcl interfaceThe from tukaan._tcl import Tcl Calling Tcl from Python
The first is the >>> Tcl.call(None, "grid", textbox_widget, *Tcl.to_tcl_args(column=3, rowspan=8))
None
>>> Tcl.call(str, textbox_widget, "get")
foobar There's a utility method called The second is the >>> Tcl.eval(None, "grid .app.textbox_1 -column 3 -rowspan 8")
None
>>> Tcl.eval(str, ".app.textbox_1 get")
foobar About converting things to TclYou might know, that in Tcl everything is a string. Therefore Tukaan needs to convert every Python object to a string, and the strings returned from Tcl back to Python objects (this is the return value I was babbling about above). However, it isn't simply done by calling the If someone (@Moosems?, if you understand what the hack I'm talking about here) could revise this text, and it would be useful to have it in a |
Beta Was this translation helpful? Give feedback.
-
Hi @rdbende and @Moosems,
I really love this project but struggle to find anything which is my level to contribute.
How can I help? (Nothing too hard ofc cuz im not as good as coding as you)
Beta Was this translation helpful? Give feedback.
All reactions