So I did basically nothing, just scaffolded a new Feathers UI project with the CLI and changed the project settings a bit:
<window fps="60" width="800" height="450"/>
I want to have a fixed size for my app and I want it to scale with the optimal ratio, fitting into any window size. When I debug the project in the browser, the label shows blurry in a scale > 1:
var label = new Label();
label.text = "Hello World";
addChild(label);
I found out you can do this in the project settings:
<haxedef name="dom" if="html5" />
However this option will disable the proper scaling I mentioned above. Anything I can do?