Martin Svanberg

Results 13 issues of Martin Svanberg

`TextWrapping.wrapText` can throw an exception when trying to wrap text that's too wide for the container. To be fair, I don't totally understand the code here so I may have...

There is a subtle bug with font rendering on high DPI screens. My screen has 2x pixel density, so when rendering a string the font size is adjusted for the...

skia-dependent
A-font

This may be a little bit picky, but [the spec says](https://graphql.github.io/graphql-spec/draft/#sec-Int) that Ints are 32-bit integers. Haskell's `Int` type, used here, is [at least a signed 30-bit integer](http://hackage.haskell.org/package/base-4.12.0.0/docs/Data-Int.html#t:Int), probably due...

Proposal
scope/server

https://github.com/brunosimon/folio-2019/blob/master/src/models/projects/citrixRedbull/floorTexture.png colaborate -> collaborate

Ball-trimesh collisions seem to be slightly misbehaved. Sometimes they will produce collisions even though they are not touching. When this happens, I get a `CollisionEvent` but no `ContactForceEvent`, even though...

C-Bug
A-Geometry
P-Medium
D-Medium

Adds support for setting the system number format. Tested on my system and it seems to work!

It's helpful to be able to see which version of the source code corresponds to which version published on crates.io, so it would be great if the git repo were...

Closes #4. I think a warning is nicer instead of a panic here.

WIP support for Steam P2P sockets

A general code style nit, but `thiserror` is typically considered more idiomatic for library code than `anyhow` (e.g. https://google.github.io/comprehensive-rust/error-handling/thiserror-and-anyhow.html).

C-Usability