kojix2

Results 222 comments of kojix2

add link https://github.com/SciRuby/iruby/issues/154

I didn't know that LibUI doesn't work on new Macs I rented an Apple silicon server on [Macincloud](https://www.macincloud.com) and confirmed that I do indeed get the above error. ```sh git...

Of course, we don't want to go to all this trouble. LibUI should work on various platforms just by installing the gem. The easiest way to do this is for...

Another practical way to include shared files for various platforms in your Gem is to automatically build LibUI when you install the Gem. You may think of a C-extended Gem,...

@AndyObtiva I admit that the fact that LibUI does not support M1 is not a small problem. However, I don't know the best practices for making fat gems compatible with...

I created libui.dylib in universal binary format and uploaded it to the [v0.0.14 release page](https://github.com/kojix2/LibUI/releases/tag/v0.0.14). This libui.dylib is a simple merge of the [official dylib](https://github.com/andlabs/libui/releases/tag/alpha4.1) distributed by andlabs with the...

I have released v0.0.15.pre so that you don't have to use the rake task to fetch the shared library. https://github.com/kojix2/LibUI/releases/tag/v0.0.15.pre ``` gem install libui --pre ``` If no one reports...

@AndyObtiva Released v0.0.15. Thanks for the report and your strong support!!

Thank you @cody271. Now I can use the latest pre-built binaries. It would be better if the github actions Artifact data were persistent and there were URLs that will always...

@cody271 Thanks. I just added a [rake](https://en.wikipedia.org/wiki/Rake_(software)) task that allow you to download development builds for Mac and Ubuntu from [the links](https://nightly.link/libui-ng/libui-ng/workflows/build/master) you provided. Now it is very easy to...