Skip to content

Commit ea84ac3

Browse files
committed
Rename etherealengine to ir-engine
1 parent ec7d3d5 commit ea84ac3

12 files changed

+54
-57
lines changed

.github/workflows/project-build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
if: ${{ needs.secrets-gate.outputs.ok == 'enabled' }}
1919
runs-on: ubuntu-latest
2020
steps:
21-
- name: Checkout Ethereal Engine
21+
- name: Checkout Infinite Reality Engine
2222
uses: actions/checkout@v3
2323
with:
24-
repository: etherealengine/etherealengine
24+
repository: ir-engine/ir-engine
2525
- name: Checkout Project
2626
uses: actions/checkout@v3
2727
with:
28-
path: './packages/projects/projects/etherealengine/${{ github.event.repository.name }}'
28+
path: './packages/projects/projects/ir-engine/${{ github.event.repository.name }}'
2929
- name: Use Node.js
3030
uses: actions/setup-node@v3
3131
with:
@@ -44,5 +44,5 @@ jobs:
4444
- run: npm run check-errors
4545
- run: npm run dev-docker
4646
- run: npm run dev-reinit
47-
- run: npx lerna run --ignore '@etherealengine/*' test
47+
- run: npx lerna run --ignore '@ir-engine/*' test
4848
- run: npm run build-client

.github/workflows/version-increment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
- uses: actions/setup-node@v3
2424
with:
2525
node-version: 18.x
26-
scope: '@etherealengine'
26+
scope: '@ir-engine'
2727
- name: Set git username
2828
run: git config user.name "CI Bot"
2929
- name: Set git email
30-
run: git config user.email ci-bot@etherealengine.org
30+
run: git config user.email ci-bot@ir-engine.org
3131
- name: Set pr_branch_name environment variable
3232
run: echo pr_branch_name=version-increment-${{ github.event.release.tag_name }} >> $GITHUB_ENV
3333
- name: Switch to branch ${{ env.pr_branch_name }}

.mocharc.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CPAL-1.0 License
55
The contents of this file are subject to the Common Public Attribution License
66
Version 1.0. (the "License"); you may not use this file except in compliance
77
with the License. You may obtain a copy of the License at
8-
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
8+
https://github.com/ir-engine/ir-engine/blob/dev/LICENSE.
99
The License is based on the Mozilla Public License Version 1.1, but Sections 14
1010
and 15 have been added to cover use of software over a computer network and
1111
provide for limited attribution for the Original Developer. In addition,
@@ -15,13 +15,13 @@ Software distributed under the License is distributed on an "AS IS" basis,
1515
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
1616
specific language governing rights and limitations under the License.
1717
18-
The Original Code is Ethereal Engine.
18+
The Original Code is Infinite Reality Engine.
1919
2020
The Original Developer is the Initial Developer. The Initial Developer of the
21-
Original Code is the Ethereal Engine team.
21+
Original Code is the Infinite Reality Engine team.
2222
23-
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
24-
Ethereal Engine. All Rights Reserved.
23+
All portions of the code written by the Infinite Reality Engine team are Copyright © 2021-2023
24+
Infinite Reality Engine. All Rights Reserved.
2525
*/
2626

2727
module.exports = {

LICENSE

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CPAL-1.0 License
33
The contents of this file are subject to the Common Public Attribution License
44
Version 1.0. (the "License"); you may not use this file except in compliance
55
with the License. You may obtain a copy of the License at
6-
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
6+
https://github.com/ir-engine/ir-engine/blob/dev/LICENSE.
77
The License is based on the Mozilla Public License Version 1.1, but Sections 14
88
and 15 have been added to cover use of software over a computer network and
99
provide for limited attribution for the Original Developer. In addition,
@@ -13,10 +13,10 @@ Software distributed under the License is distributed on an "AS IS" basis,
1313
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
1414
specific language governing rights and limitations under the License.
1515

16-
The Original Code is Ethereal Engine.
16+
The Original Code is Infinite Reality Engine.
1717

1818
The Original Developer is the Initial Developer. The Initial Developer of the
19-
Original Code is the Ethereal Engine team.
19+
Original Code is the Infinite Reality Engine team.
2020

21-
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
22-
Ethereal Engine. All Rights Reserved.
21+
All portions of the code written by the Infinite Reality Engine team are Copyright © 2021-2023
22+
Infinite Reality Engine. All Rights Reserved.

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "etherealengine/ee-tutorial-hello",
2+
"name": "ir-engine/ir-tutorial-hello",
33
"version": "0.0.0",
44
"engineVersion": "1.6.0",
55
"description": ""

package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
{
2-
"name": "@etherealengine/ee-tutorial-hello",
2+
"name": "@ir-engine/ir-tutorial-hello",
33
"version": "0.0.0",
44
"description": "",
55
"main": "",
6-
"etherealEngine": {
7-
"version": "1.4.0"
8-
},
96
"scripts": {
107
"test": "mocha --config .mocharc.js",
118
"check-errors": "tsc --noemit",

src/Hello0.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { ECS } from '@etherealengine/ecs'
2-
import { NameComponent } from '@etherealengine/spatial/src/common/NameComponent'
3-
import { VisibleComponent } from '@etherealengine/spatial/src/renderer/components/VisibleComponent'
4-
import { TransformComponent } from '@etherealengine/spatial/src/transform/components/TransformComponent'
5-
import { PrimitiveGeometryComponent } from '@etherealengine/engine/src/scene/components/PrimitiveGeometryComponent'
1+
import { ECS } from '@ir-engine/ecs'
2+
import { NameComponent } from '@ir-engine/spatial/src/common/NameComponent'
3+
import { VisibleComponent } from '@ir-engine/spatial/src/renderer/components/VisibleComponent'
4+
import { TransformComponent } from '@ir-engine/spatial/src/transform/components/TransformComponent'
5+
import { PrimitiveGeometryComponent } from '@ir-engine/engine/src/scene/components/PrimitiveGeometryComponent'
66
import { Vector3 } from 'three'
77

88
const entity = ECS.createEntity()

src/Hello1.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { ECS } from '@etherealengine/ecs'
2-
import { PhysicsSystem } from '@etherealengine/spatial/src/physics/PhysicsModule'
3-
import { NameComponent } from '@etherealengine/spatial/src/common/NameComponent'
4-
import { VisibleComponent } from '@etherealengine/spatial/src/renderer/components/VisibleComponent'
5-
import { TransformComponent } from '@etherealengine/spatial/src/transform/components/TransformComponent'
6-
import { PrimitiveGeometryComponent } from '@etherealengine/engine/src/scene/components/PrimitiveGeometryComponent'
1+
import { ECS } from '@ir-engine/ecs'
2+
import { PhysicsSystem } from '@ir-engine/spatial/src/physics/PhysicsModule'
3+
import { NameComponent } from '@ir-engine/spatial/src/common/NameComponent'
4+
import { VisibleComponent } from '@ir-engine/spatial/src/renderer/components/VisibleComponent'
5+
import { TransformComponent } from '@ir-engine/spatial/src/transform/components/TransformComponent'
6+
import { PrimitiveGeometryComponent } from '@ir-engine/engine/src/scene/components/PrimitiveGeometryComponent'
77
import { Vector3 } from 'three'
8-
import { GeometryTypeEnum } from '@etherealengine/engine/src/scene/constants/GeometryTypeEnum'
8+
import { GeometryTypeEnum } from '@ir-engine/engine/src/scene/constants/GeometryTypeEnum'
99

1010

1111
let initialized = false // Track whether our code was already run or not

src/Hello2.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { ECS } from '@etherealengine/ecs'
2-
import { PrimitiveGeometryComponent } from '@etherealengine/engine/src/scene/components/PrimitiveGeometryComponent'
3-
import { GeometryTypeEnum } from '@etherealengine/engine/src/scene/constants/GeometryTypeEnum'
4-
import { PhysicsSystem } from '@etherealengine/spatial'
5-
import { NameComponent } from '@etherealengine/spatial/src/common/NameComponent'
6-
import { VisibleComponent } from '@etherealengine/spatial/src/renderer/components/VisibleComponent'
7-
import { TransformComponent } from '@etherealengine/spatial/src/transform/components/TransformComponent'
1+
import { ECS } from '@ir-engine/ecs'
2+
import { PrimitiveGeometryComponent } from '@ir-engine/engine/src/scene/components/PrimitiveGeometryComponent'
3+
import { GeometryTypeEnum } from '@ir-engine/engine/src/scene/constants/GeometryTypeEnum'
4+
import { PhysicsSystem } from '@ir-engine/spatial'
5+
import { NameComponent } from '@ir-engine/spatial/src/common/NameComponent'
6+
import { VisibleComponent } from '@ir-engine/spatial/src/renderer/components/VisibleComponent'
7+
import { TransformComponent } from '@ir-engine/spatial/src/transform/components/TransformComponent'
88
import { Vector3 } from 'three'
99

1010
// Define our component

tests/dummy.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CPAL-1.0 License
44
The contents of this file are subject to the Common Public Attribution License
55
Version 1.0. (the "License"); you may not use this file except in compliance
66
with the License. You may obtain a copy of the License at
7-
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
7+
https://github.com/ir-engine/ir-engine/blob/dev/LICENSE.
88
The License is based on the Mozilla Public License Version 1.1, but Sections 14
99
and 15 have been added to cover use of software over a computer network and
1010
provide for limited attribution for the Original Developer. In addition,
@@ -14,11 +14,11 @@ Software distributed under the License is distributed on an "AS IS" basis,
1414
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
1515
specific language governing rights and limitations under the License.
1616
17-
The Original Code is Ethereal Engine.
17+
The Original Code is Infinite Reality Engine.
1818
1919
The Original Developer is the Initial Developer. The Initial Developer of the
20-
Original Code is the Ethereal Engine team.
20+
Original Code is the Infinite Reality Engine team.
2121
22-
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
23-
Ethereal Engine. All Rights Reserved.
22+
All portions of the code written by the Infinite Reality Engine team are Copyright © 2021-2023
23+
Infinite Reality Engine. All Rights Reserved.
2424
*/

tests/mocha.env.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CPAL-1.0 License
55
The contents of this file are subject to the Common Public Attribution License
66
Version 1.0. (the "License"); you may not use this file except in compliance
77
with the License. You may obtain a copy of the License at
8-
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
8+
https://github.com/ir-engine/ir-engine/blob/dev/LICENSE.
99
The License is based on the Mozilla Public License Version 1.1, but Sections 14
1010
and 15 have been added to cover use of software over a computer network and
1111
provide for limited attribution for the Original Developer. In addition,
@@ -15,13 +15,13 @@ Software distributed under the License is distributed on an "AS IS" basis,
1515
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
1616
specific language governing rights and limitations under the License.
1717
18-
The Original Code is Ethereal Engine.
18+
The Original Code is Infinite Reality Engine.
1919
2020
The Original Developer is the Initial Developer. The Initial Developer of the
21-
Original Code is the Ethereal Engine team.
21+
Original Code is the Infinite Reality Engine team.
2222
23-
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
24-
Ethereal Engine. All Rights Reserved.
23+
All portions of the code written by the Infinite Reality Engine team are Copyright © 2021-2023
24+
Infinite Reality Engine. All Rights Reserved.
2525
*/
2626

2727
process.env.APP_ENV = 'test'

xrengine.config.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CPAL-1.0 License
44
The contents of this file are subject to the Common Public Attribution License
55
Version 1.0. (the "License"); you may not use this file except in compliance
66
with the License. You may obtain a copy of the License at
7-
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
7+
https://github.com/ir-engine/ir-engine/blob/dev/LICENSE.
88
The License is based on the Mozilla Public License Version 1.1, but Sections 14
99
and 15 have been added to cover use of software over a computer network and
1010
provide for limited attribution for the Original Developer. In addition,
@@ -14,20 +14,20 @@ Software distributed under the License is distributed on an "AS IS" basis,
1414
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
1515
specific language governing rights and limitations under the License.
1616
17-
The Original Code is Ethereal Engine.
17+
The Original Code is Infinite Reality Engine.
1818
1919
The Original Developer is the Initial Developer. The Initial Developer of the
20-
Original Code is the Ethereal Engine team.
20+
Original Code is the Infinite Reality Engine team.
2121
22-
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
23-
Ethereal Engine. All Rights Reserved.
22+
All portions of the code written by the Infinite Reality Engine team are Copyright © 2021-2023
23+
Infinite Reality Engine. All Rights Reserved.
2424
*/
2525

26-
import type { ProjectConfigInterface } from '@etherealengine/projects/ProjectConfigInterface'
26+
import type { ProjectConfigInterface } from '@ir-engine/projects/ProjectConfigInterface'
2727

2828
const config: ProjectConfigInterface = {
2929
onEvent: undefined,
30-
thumbnail: '/static/etherealengine_thumbnail.jpg',
30+
thumbnail: '/static/ir-engine_thumbnail.jpg',
3131
routes: {},
3232
services: undefined,
3333
databaseSeed: undefined,

0 commit comments

Comments
 (0)