From db875af6bcaa333adebc492b57cb023675cc2426 Mon Sep 17 00:00:00 2001 From: Keith Valin Date: Mon, 15 Nov 2021 21:24:19 -0500 Subject: [PATCH 1/2] Added changelog and bumped version in the package.json file --- README.md | 15 +++++++++++---- package.json | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f705d8d7..9e53e0a8 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,17 @@ The Engaging Computing Group develops new technologies to enable learners—yout ## Status [![CircleCI](https://circleci.com/gh/engaging-computing/MYR.svg?style=shield)](https://circleci.com/gh/engaging-computing/MYR) -## Change Log - 2.3.1 -> 2.4.0 -- Added ability to import custom GLTF models into a scene -- Added a keyboard shortcut information menu -- Added a slider for setting the movement speed in a scene +## Change Log - 2.4.0 -> 3.0.0 +- Removed undocumented aliases for `box` and `prisim` + - All scenes using these primitives have been automatically changed to reflect the new API +- Changed the behavior of `getRandomColor` to only return a random color +- Added `setRandomColor` to behave like `getRandomColor` did previously + - A migration has updated scenes to be properly using these functions + - If your scene broke as a result of this update, please let us know [support@learnmyr.org](mailto:support@learnmyr.org) +- Misc. Package dependency updates +- Moved Model and Asset reference to their own page +- Removed broken links to non-existent example pages + ## Acknowledgments diff --git a/package.json b/package.json index dda728cb..2baa5528 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "myr", - "version": "2.4.0", + "version": "3.0.0", "private": false, "engines": { "node": "^12.18.2" From 27cee4bac4952965a15e448cf9dfb669af99265a Mon Sep 17 00:00:00 2001 From: Keith Valin Date: Mon, 15 Nov 2021 21:28:14 -0500 Subject: [PATCH 2/2] Updated README to be more clear --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e53e0a8..7bffe6fc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The Engaging Computing Group develops new technologies to enable learners—yout ## Change Log - 2.4.0 -> 3.0.0 - Removed undocumented aliases for `box` and `prisim` - - All scenes using these primitives have been automatically changed to reflect the new API + - All scenes using these aliases have been automatically changed to reflect the new API - Changed the behavior of `getRandomColor` to only return a random color - Added `setRandomColor` to behave like `getRandomColor` did previously - A migration has updated scenes to be properly using these functions