Don Venable

Results 3 issues of Don Venable

Wanted to use quetz_client on ARM64 independently of the main quetz package (as that had some dependencies that aren't available on aarch64 via conda-forge), and noticed that uploading the built...

Right now there's no call to `liblcm` implementation of [`lcm_eventlog_free_event`](https://github.com/lcm-proj/lcm/blob/master/lcm/eventlog.h#L107) . I've currently manually implemented it as: ```julia function lcm_event_destroy(event::Ptr{LCMCore.lcm_eventlog_event_t}) ccall( (:lcm_eventlog_free_event, LCMCore.liblcm), Cvoid, (Ptr{LCMCore.lcm_eventlog_event_t}, ), event ) end ```...