Hugo Parente Lima
Hugo Parente Lima
legacy code?
This is that kind of feature that at first looks very nice, but then you notice that we are crossing the borders between a dependency manager and a building tool......
It worked with [GTK4 bindings](https://github.com/hugopl/gtk4.cr). ```Crystal require "gtk4" app = Gtk::Application.new("hello.example.com", Gio::ApplicationFlags::None) app.activate_signal.connect do window = Gtk::ApplicationWindow.new(app) fixed = Gtk::Fixed.new 50.times do |i| 20.times do |j| btn = Gtk::Button.new label:...
oops, removed the branch by mistake. BTW I noticed that these `.blank?` and `.present?` are liquid.cr extensions to liquid language, they do not exist in any liquid implementation I saw...
Closing this in favor of https://github.com/amberframework/liquid.cr/pull/69
I'll close this MR, despite of it include other features besides GC resistant objects, the main aim was GC resistance. Closed in favor of #107
When passing a Proc to C libraries we usually need to put the Proc inside a Box, then store this Box object in the `GICrystal::ClosureManager` to avoid GC to delete...
GTK4 on ArchLinux still on 4.12, I'll wait 4.13 land there to fix this, so I don't need to compile gtk4 myself or install gtk4 4.13 from test repository. BTW...
Better copy the whole method declaration with annotation comments, etc. Usually it's possible to identify what's wrong with just that. Then I can try to reproduce the issue in the...
Hmmm... it's a well known problem related to how to handle these out/nullable/optimal parameters in bindings. BTW, if you don't need this method you can unblock yourself by changing [GSK...