Skip to content

Commit

Permalink
Merge pull request #521 from engaging-computing/dev
Browse files Browse the repository at this point in the history
Release v3.0.0
  • Loading branch information
kdvalin authored Nov 16, 2021
2 parents af10490 + 5ab5b08 commit ce23c8b
Show file tree
Hide file tree
Showing 28 changed files with 43,508 additions and 21,416 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#The client ID should NOT start with http or https! This will cause authentication failure!
REACT_APP_GOOGLE_CLIENTID=<Required for authenticting with the backend, get this from a team member>
REACT_APP_GOOGLE_CLIENTID=<Required for authenticting with the backend, get this from a team member>
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"curly": "warn",
"no-lonely-if": "warn",
"no-console": [
"error",
"warn",
{
"allow": [
"warn",
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
ci-checks:
runs-on: ubuntu-latest
container:
image: node:10.13
image: node:12.18

steps:
- uses: actions/checkout@v1
Expand All @@ -15,11 +15,15 @@ jobs:
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Fetch packages
run: npm ci
run: npm install
- name: Run Linter
run: npm run lint
- name: Run unit tests
run: npm test
- name: Build production build
run: npm run build
run: npm run build
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.13
10.13
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10.13
FROM node:12.18

WORKDIR /app
COPY . /app
Expand All @@ -8,4 +8,4 @@ ENV REACT_APP_GOOGLE_CLIENTID ${REACT_APP_GOOGLE_CLIENTID}

RUN npm install
RUN npm run build
RUN npm run doc
RUN npm run doc
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 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
- If your scene broke as a result of this update, please let us know [[email protected]](mailto:[email protected])
- Misc. Package dependency updates
- Moved Model and Asset reference to their own page
- Removed broken links to non-existent example pages



## Acknowledgments
Expand Down
Loading

0 comments on commit ce23c8b

Please sign in to comment.