Johnathan Bizzano
Johnathan Bizzano
> Currently, DotNET.jl uses `coreclrhost.h` to host the CLR (`coreclr_initialize`). I checked MSDN and Microsoft says this API is deprecated in favor of `nethost` and `hostfxr`. I'll try these new...
> Currently, DotNET.jl uses `coreclrhost.h` to host the CLR (`coreclr_initialize`). I checked MSDN and Microsoft says this API is deprecated in favor of `nethost` and `hostfxr`. I'll try these new...
There are issues with the released version 3.0. I am currently fairly busy with college but I will do my best to patch them. Thanks for the log, I will...
I have been working on this project this past winter break. Check out the new readme and feel free to ask if you have any questions. A lot of my...
Error messages seemed to be fixed when I wrapped the widgets in a check to see if the parent has been assigned or not. I suppose that this means the...
Thanks! Ill try this :) For others pursuing this deeper, I reccommend just creating a custom GListModel that is backed by a Julia Array for better memory & performance. It...
I built an efficient manager with what we have with the GString idea. On my computer it can create a 2x100k row columnview in ~.5 seconds. I can PR it...
Ah I see what you meant I think my version my be safe from collecting since I am using handles to the GString objects as the keys. I use unsafe...
I have also been experimenting with building powerful observables. ```julia on_update_signal_name(::GtkButton) = "clicked" on_update_signal_name(::GtkComboBoxText) = "changed" on_update_signal_name(::GtkAdjustment) = "value-changed" on_update_signal_name(::GtkEntry) = "activate" Observables.on(@nospecialize(cb::Function), w::GtkWidget) = signal_connect(cb, w, on_update_signal_name(w)) Observables.connect!(w::GtkWidget, o::AbstractObservable)...
Update on this.... SUCCESSFUL! I wrote a docker building environment that should be able to generate the dependencies... After 20 hours of trying my nugget of advice: Update the CxxWrap...