Skip to content

Commit

Permalink
Version 0.3.1 Release [Bugfix]
Browse files Browse the repository at this point in the history
Bugfix release
  • Loading branch information
Dreaming381 committed Mar 8, 2021
1 parent 054a062 commit e738780
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 24 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic
Versioning](http://semver.org/spec/v2.0.0.html).

## [0.3.1] – 2021-3-7

Officially supports Entities [0.17.0]

### Changed

- Updated Core to v0.3.1

## [0.3.0] – 2021-3-4

Officially supports Entities [0.17.0]
Expand Down
23 changes: 2 additions & 21 deletions Core/Core.Editor/Latios.Core.Editor.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,8 @@
],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": true,
"precompiledReferences": [
"Microsoft.CodeAnalysis.CSharp.dll",
"Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
"Microsoft.CodeAnalysis.CSharp.Scripting.dll",
"Microsoft.CodeAnalysis.dll",
"Microsoft.CodeAnalysis.Scripting.dll",
"Microsoft.CodeAnalysis.Workspaces.dll",
"System.Collections.Immutable.dll",
"System.Composition.AttributedModel.dll",
"System.Composition.Convention.dll",
"System.Composition.Hosting.dll",
"System.Composition.Runtime.dll",
"System.Composition.TypedParts.dll",
"System.Reflection.Metadata.dll",
"System.Runtime.Loader.dll",
"Mono.Cecil.dll",
"Mono.Cecil.Mdb.dll",
"Mono.Cecil.Pdb.dll",
"Mono.Cecil.Rocks.dll"
],
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ protected override void OnUpdate()
{
if (sys is GameObjectConversionConfigurationSystem config)
{
#if UNITY_EDITOR
config.Enabled = config.ShouldRunConversionSystem();
#else
config.Enabled = true;
#endif
}
}
}
Expand Down
4 changes: 3 additions & 1 deletion Core/Core/Containers/EntityOperationCommandBuffer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,9 @@ internal ParallelWriter(UnsafeParallelBlockList* blockList, void* state)
m_blockList = blockList;
m_state = (State*)state;
m_ThreadIndex = 0;
m_Safety = default;
#if ENABLE_UNITY_COLLECTIONS_CHECKS
m_Safety = default;
#endif
}

/// <summary>
Expand Down
4 changes: 3 additions & 1 deletion Core/Core/Internal/InstantiateCommandBufferUntyped.cs
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,9 @@ internal ParallelWriter(UnsafeParallelBlockList* prefabSortkeyBlockList, UnsafeP
m_componentDataBlockList = componentDataBlockList;
m_state = (State*)state;
m_ThreadIndex = 0;
m_Safety = default;
#if ENABLE_UNITY_COLLECTIONS_CHECKS
m_Safety = default;
#endif
}

public void Add<T0>(Entity prefab, T0 c0, int sortKey) where T0 : unmanaged
Expand Down
10 changes: 10 additions & 0 deletions Documentation~/Core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic
Versioning](http://semver.org/spec/v2.0.0.html).

## [0.3.1] – 2021-3-7

Officially supports Entities [0.17.0]

### Fixed

- Fixed several compiler errors when creating builds
- Removed dangling references to the Code Analysis package in
Latios.Core.Editor.asmdef

## [0.3.0] – 2021-3-4

Officially supports Entities [0.17.0]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.latios.latiosframework",
"displayName": "Latios Framework for DOTS",
"version": "0.3.0",
"version": "0.3.1",
"unity": "2020.1",
"description": "Latios Framework for DOTS is a collection of tools, algorithms, and API extensions developed by a hardcore hobbyist game developer.\n\nThis package includes all of the following packages:\n\u25aa Core\n\u25aa Psyshock Physics\n\u25aa Myri Audio\n\nComplete game examples: \n\u25aa Latios Space Shooter Sample - https://github.com/Dreaming381/lsss-wip/tree/v0.3.0",
"dependencies": {
Expand Down

0 comments on commit e738780

Please sign in to comment.