Berik Visschers
Berik Visschers
Fixes #537 In this change - The constraint maker no longer calls `fatalError` but emits a `ConstraintMakerEditable` with an error inside - The `prepareConstraints(item:closure:)` method checks for errors and calls...
Allow mutation of JSON object and its members: ``` func updateCost(data: Data) -> Data { var json = try JSONDecoder().decode(JSON.self, from: data) json["items"].arrayValue![3]["cost"] = 53 return try JSONEncoder().encode(json) } ```
* Resolve deprecation warning on cmake_minimum_required * If SDL2 is not specified and homebrew is installed, include the homebrew/SDL2 path * Point vscode cmake to the src/CMakeLists.txt I'm not sure...
I've noticed that dynamically added images (after the document.ready event) will not load directly, only after a scroll or resize action. With this fix, those images get to be loaded...
### Description A double call to deinit is made for the same instance under very specific conditions: * Release configuration must be used * The instance is non-copyable (`~Copyable`) *...