Udo Schneider
Udo Schneider
Fixes all the warnings caused by the new Obj-J 2 compiler. Updates the Jakefile to the current capp template.
Calling ZnHeaders>>#contentType raises an DNU exception if multiple Content-Type headers are present
In `ZnHeaders>>#contentType` `#trimBoth` is sent to header's `Content-Type` value: ```smalltalk headerValue := (self headers at: 'Content-Type') trimBoth. ``` If only a single `Content-Type` header was part of the response the...
Fixes #13, #14 Replace general coordinate sorting with specific sorting for line_h/line_v. Replace generic x-based line drawing with standard Bresenham drawing which provides better results in all octants.
The current line drawing implementation uses a simple step-x based approach. This leads to bad results for very steep (e.g. nearly vertical) lines.
The current `OLED.Display.Impl.SSD1306.Draw.line_v/4` implementation doesn't work if the `height` (`y2-y1`) is negative. Although the implementation is similar for `OLED.Display.Impl.SSD1306.Draw.line_h/4` it's not affected as `x1` and `x2` get sorted in `line/6`
I basically have a parser ready to parse text input. However another representation of the source is binary - although with the exact same AST structure. It seems that adding...
Non-Printable characters in the ACK string provoke non-verbatim answers under Windows. Encoding the ACK String using Base 64 ensures only printable characters. Addresses Issue #18 and #20.
According to the README building for Mac OS X was supported at some point in time. Is this still the case? I hit several roadblocks with wrong architectures for MumbleKit...
I encountered an issue when dealing with cyclic references. The working "simple" testcase only uses one Set referencing the other. The second (non-workin) testcase also adds a back reference hence...
The `JSONSchema>>#enum:` helper method creates a string schema although `enum` can be defined on all types. As this is maybe used in existing code it might make sense to add...