fwcd
fwcd
Apple Silicon runners are now available, but not for free, unfortunately: https://github.com/actions/runner-images/issues/8439#issuecomment-1743526558
Instead of automatically bumping the submodule, perhaps we should just create a PR via GitHub Actions (similar to dependabot et al.)?
@radeva Thanks, but I am very happy with GitHub's runners. Please don't ping people under technical discussions with promo or ads.
https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/
Would love to see iOS support be a thing. The low-level graphics stack (Metal etc.) is very similar to macOS, so don't think a port would be that far out...
> Is there a WebAssembly port yet? https://github.com/zed-industries/zed/issues/12332#issuecomment-2134638801
A settings config for custom ZIP-file extensions would indeed be awesome, especially considering that most Java-libraries are packaged as JAR-files.
File system handling on iOS is pretty much the same to macOS as long as the app stays within its sandbox (which is the Documents directory, Library and a few...
Font size can already be set using e.g. ```swift graphics.draw(Text("Test", fontSize: 14, at: Vec2(x: 0, y: 15))) ``` Bold text isn't currently supported, but if Cairo supports this it shouldn't...
You need to install the Cairo library, for example with Homebrew: ```sh brew install cairo ``` Edit: Sorry, I was a bit too quick to reply here, didn't see that...