Results 4 comments of Sam Fuller

I was able to workaround this issue by manually resolving the relative path in the .gitmodules file. If you care about the .gitmodules file retaining the relative path url, you...

That is probably not the best way to get the abstraction you are looking for. Un-sealing the class could have implications for the design of the binding, and seems like...

I wrote some python that can parse AppleDouble format: https://gist.github.com/sfuller/720ea2ef5917ef6c6d20271b0bd56ce5 You can use it like this: ```python import appledouble with open('double.rsrc', 'rb') as f: double = appledouble.parse(f) ``` You can...

Which version of ImGUI.NET and .NET are you using? The nuget package provides `runtimes/osx/native/libcimgui.dylib`, which seems to be a universal library (containing code for both x86_64 and arm64 architectures). I...