Results 10 comments of szatkus

I can try to submit the application. After skimming the documentation looks like not much has changed since Firefox OS regarding application packaging.

I managed to run it on the simulator, but an API for listing files is broken there. I don't have a phone with KaiOS, so I can't test it properly,...

Looks like every KaiOS device have a numpad. It can be reverted easily when they introduce some with a touchscreen. One way or another I need to rework the UI...

Thanks. That's a weird project. Looks like it is based on an old experimental branch, which was never fully functional. I wonder how well it worked.

I don't have a KaiOS device and the simulator looks to be broken in so many places.

The first two requires M3G which isn't implemented. The last one crashes the JVM at start, but I guess that requires some audio APIs which aren't implemented at this point.

It used to work just by opening index.html, but seems that's no longer the case. You have to host files by HTTP server and open it in a browser with...

I already tried, but the simulator for KaiOS doesn't work well (especially for this app as it does some uncommon stuff) and I simply don't have means to test it....

If you want to port it I can support it as much as possible. I don't have any KaiOS device around, but, yeah, I can help you a bit.

This seems to fix the problem: ``` if (psModuleName === null && this.resource.lastIndexOf('.js') === this.resource.length - 3) { var parentSource = this.fs.readFileSync(this.resource.replace(/\.js$/g, '.purs')).toString() psModuleName = PsModuleMap.matchModule(parentSource); } ``` Although I'm...