diff --git a/CHANGELOG.md b/CHANGELOG.md index 66d1a3c2..edd87f30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v2.12.1 +*07 feb 2024* + +- Fixed examples that were not working due to incorrect imports. +- Fixed build issues on non-*nix systems. +- Fixed some typos in the documentation. +- Fixed an issue in RoundedRectangleShader where setting a stroke value resulted in incorrect clipping, especially noticeable when the radius is half the height. + ## v2.12.0 *26 oct 2023* diff --git a/docs/RenderEngine/Elements/Children.md b/docs/RenderEngine/Elements/Children.md index a9ede669..9514ac4d 100644 --- a/docs/RenderEngine/Elements/Children.md +++ b/docs/RenderEngine/Elements/Children.md @@ -59,7 +59,7 @@ class TemplateDemo extends lng.Application { } } _init() { - // let's generate dinamically some list items + // let's generate dynamically some list items // and give it to our list this.tag('List').items = [1,2,3,4].map((i) => ({label: i })) } @@ -94,4 +94,4 @@ class ExampleListItem extends lng.component { const options = {stage: {w: window.innerWidth, h: window.innerHeight, useImageWorker: false}}; const App = new TemplateDemo(options); document.body.appendChild(App.stage.getCanvas()); -``` \ No newline at end of file +``` diff --git a/examples/animation/index.html b/examples/animation/index.html new file mode 100644 index 00000000..1a0af118 --- /dev/null +++ b/examples/animation/index.html @@ -0,0 +1,73 @@ + + + + + + + + + + + + diff --git a/examples/basic-usage/web-src/basic-usage.html b/examples/basic-usage/web-src/basic-usage.html index 1f263132..3ceef17a 100644 --- a/examples/basic-usage/web-src/basic-usage.html +++ b/examples/basic-usage/web-src/basic-usage.html @@ -25,7 +25,7 @@