Skip to content

Commit 1cc031f

Browse files
committed
Updated min genesis version
2 parents 1655a47 + c5581a5 commit 1cc031f

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed

CHANGELOG.MD

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Releases]
8+
### [2.1.1] - 2022-02-27
9+
#### Fixes
10+
* Updated Genesis min package version to include bug fix for CLI installation paths with spaces in folder names.
11+
12+
#### Changes
13+
* Added author details to ER package manifest.
14+
815
### [2.1.0] - 2021-07-13
916
#### Fixes
1017
* Fixed several bugs with Entity Index code generation where index-related methods and code was not generated.

Unity/Assets/PackageManifest/PackageManifestConfig.asset

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ MonoBehaviour:
2727
make life easier for developers.
2828
category: Scripting
2929
author:
30-
name:
31-
email:
32-
url:
30+
name: Jeff Campbell
31+
32+
url: https://www.jeffcampbellmakes.games/
3333
keywords: []
3434
dependencies:
3535
- packageName: com.jeffcampbellmakesgames.genesis
36-
packageVersion: 2.3.2
36+
packageVersion: 2.4.4
3737
versionConstantsPath: Assets/JCMG/EntitasRedux/Scripts
3838
versionTemplateGuid: 5037ab3a74375fd4b87e04aa5f278380
3939
_id: 6c31b17e-d755-422c-88ff-421b4c2fed29

Unity/Packages/manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"dependencies": {
3-
"com.jeffcampbellmakesgames.genesis": "2.3.2",
3+
"com.jeffcampbellmakesgames.genesis": "2.4.4",
44
"com.jeffcampbellmakesgames.packagetools": "1.5.1",
55
"com.unity.ext.nunit": "1.0.6",
66
"com.unity.ide.rider": "1.1.4",
7-
"com.unity.ide.vscode": "1.2.3",
8-
"com.unity.test-framework": "1.1.27",
7+
"com.unity.ide.vscode": "1.2.5",
8+
"com.unity.test-framework": "1.1.31",
99
"com.unity.test-framework.performance": "2.8.0-preview",
1010
"com.unity.ugui": "1.0.0",
1111
"com.unity.modules.ai": "1.0.0",

Unity/Packages/packages-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"com.jeffcampbellmakesgames.genesis": {
4-
"version": "2.3.2",
4+
"version": "2.4.4",
55
"depth": 0,
66
"source": "registry",
77
"dependencies": {
@@ -34,7 +34,7 @@
3434
"url": "https://packages.unity.com"
3535
},
3636
"com.unity.ide.vscode": {
37-
"version": "1.2.3",
37+
"version": "1.2.5",
3838
"depth": 0,
3939
"source": "registry",
4040
"dependencies": {},
@@ -55,7 +55,7 @@
5555
"url": "https://packages.unity.com"
5656
},
5757
"com.unity.test-framework": {
58-
"version": "1.1.27",
58+
"version": "1.1.31",
5959
"depth": 0,
6060
"source": "registry",
6161
"dependencies": {

readme.md

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Entitas Redux is a reworked version of [Entitas](https://github.com/sschmid/Enti
1414
* **Min Unity Version**: 2019.4
1515
* **Scripting Runtime**: .Net 4.X
1616
* **.Net Core Runtime**: 3.1.X
17+
* **MSBuild**: MSBuild is required for the Roslyn parsing Genesis Requires. There are a few ways to ensure this is installed and I would recommend restarting your PC after performing any of these steps (see [here](https://docs.microsoft.com/en-us/visualstudio/msbuild/walkthrough-using-msbuild?view=vs-2022) for MS docs on installation).
18+
* MSBuild is installed along with Visual Studio, so having VS installed accomplishes this requirement.
19+
* Installing the .Net Core SDK v3.1 will ensure MSBuild is installed.
20+
* Installing the Visual Studio Build Tools [here](https://docs.microsoft.com/en-us/visualstudio/msbuild/walkthrough-using-msbuild?view=vs-2022) will ensure MSBuild is available.
1721

1822
## Installing Entitas Redux and Getting Started
1923

0 commit comments

Comments
 (0)