foxt
foxt
Tested on xenia-project/xenia@848b444 (vulkan), and: - Logos are still black - However, the game does **not** crash anymore - UI (mostly) works - Prerendered cutscenes work - 3d rendered stuff...
I cannot remember. I think I just hacked it by copying it to `/usr/local/lib/libWhatever.dylib` :/
Hi, supporting browser use is an interesting possibility, however, wouldn't CORS cause issues? FWIW: I was planning a [rewrite](https://github.com/icloudjs/icloud.js) for more modularity (including being able to provide your own handlers...
Hm, that's interesting - I haven't seen that one before, do you have ADP enabled on your account? I can't reproduce it, at least on an account with ADP disabled.
+1. It'd be great to be able to, for example, on the server send through the Schema('s .shape) and then on the UI automatically build a form from that schema....
we got it! 🎉 🎉 🎉 https://v4.zod.dev/v4#metadata
Apple sends these notifications every time a new sign-in session is created. The library does store the trust tokens to the disk (to prevent entering OTP every time), but storing...
managed to work around it with ```js let origAddEventListener = globalThis.addEventListener; globalThis.addEventListener = (type, listener, options) => { if (type == "beforeunload") return; origAddEventListener(type, listener, options); }; ``` i am...