juh9870

Results 23 comments of juh9870

Maybe then add it as button somewhere in options aka "check mangas availability"

After some more testing, I realised that first issue is directly caused by the second one. ```dart struct Named { var a: int; var b: str; construct(a, b) { this.a...

Another example: ```dart eval( "var a = 5;" + "print(a);" ); ``` Turns into ```dart eval(var a = 5; + print(a);) ```

Additional info: If I change `index.hts` to ```dart external fun my_eval; var a = 9; print("Pre-eval: ${a}"); a = my_eval("3"); a; ``` then I get this log: ![image](https://user-images.githubusercontent.com/15922601/161546944-4fd523f7-06ae-4ffc-9a26-551b9010e341.png) So it...

While testing code for another issue, I found out that default `eval` function also behaves in the same way. Code to replicate ```dart var meaning; fun global(){ eval("meaning = 'hello...

Your libraries are very useful for kotlin mpp, so ofc people would use them outside korge. I had the same issue with korio so your suggestion to downgrade to beta-7...

I have the same issueI have the same issue I was going through all the examples one by one, and first noticed this at `MethodExample`, came back to older ones...

I've figured out this issue. The cause is that `StringToValue` method uses `EditorGUI.StringToDouble`, which in turn uses `double.TryParse` without specifying explicit culture, so if default system culture formats floats not...

The same issue causes #4

Yes, it works on 1.7.10, but I use it for unit tests for my KorGE tests, and KorGE requires 1.7.20, so I can't run both atm. I've temporary disabled client...