João Costa
João Costa
With the following script: ```scala //> using scala 3.3.1 println("version:" + scala.util.Properties.versionNumberString) ``` I can get it to work on both JVM and Native. However, I get `version:2.13.10` on the...
One alternative here could be to add a `runAsync(initialState: S): Future[S]` to `Loop`. This would also allow Scala Native's Execution Context to be pumped, so the Futures would run, while...
Another possibility here (which would just work on JS) would be to do something similar to [Tyrian's HotReload](https://github.com/PurpleKingdomGames/tyrian/blob/main/tyrian/js/src/main/scala/tyrian/HotReload.scala) In this case, there would be something like: ```scala class HotReloadRenderLoop[S](decodeState: String...
Looks like the scala-js PR was merged 2 days ago 🚀
[windows] init.lua and other lua files can't be loaded if there are non-ASCII characters in pathname
Same issue here. However, I still use `init.vim`, which works fine until I try to load any lua plugins.
[windows] init.lua and other lua files can't be loaded if there are non-ASCII characters in pathname
FWIW, this seems to solve the problem: https://b.s5.pm/os/2021/08/28/windows-setup.html#using-utf-8-instead-of-latin-1-by-default I didn't do any extensive testing, though. Also, I had to revert that flag, as it broke other tools 🙃
I'm seeing this issue pretty consistently with the update to SBT 1.10.0 when embedding resources, so I think the shared scope from https://github.com/scala-native/scala-native/pull/2039 is not being used correctly. The `ResourceEmbedder`...
One possible workaround is to set `Global / concurrentRestrictions += Tags.limit(NativeTags.Link, 1)` For some reason, I couldn't get it to work with `Tags.Test`, I think the tests till run in...
I couldn't fix this, but I also can't stand Java 8 anymore, so currently as a workaround I'm setting `JAVA_OPTS=-Duser.home=C:/roothome`. While technically I could have used `SBT_OPTS`, that does not...
While I'm not qualified to help here, if the plan is to have a new windows .bat file, wouldn't it be better to just use a .ps1 file instead? FWIW,...