Skip to content

Commit d8e4d3f

Browse files
committed
Release 1.11.0
1 parent 031abdb commit d8e4d3f

File tree

225 files changed

+222
-213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+222
-213
lines changed

.bee/docs/html.doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = "Entitas"
8-
PROJECT_NUMBER = 1.10.0
8+
PROJECT_NUMBER = 1.11.0
99
PROJECT_BRIEF = "Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity"
1010
PROJECT_LOGO = ".bee/docs/docs-logo.png"
1111
OUTPUT_DIRECTORY = "Build/docs"

Addons/Entitas.CodeGeneration.Plugins/Entitas.CodeGeneration.Plugins/Component/DataProviders/ComponentDataProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ ComponentData[] createDataForEvents(ComponentData data) {
144144
var eventComponentName = data.EventComponentName(eventData);
145145
var eventTypeSuffix = eventData.GetEventTypeSuffix();
146146
var optionalContextName = dataForEvent.GetContextNames().Length > 1 ? contextName : string.Empty;
147-
var listenerComponentName = optionalContextName + eventComponentName + eventTypeSuffix + "Listener";
147+
var listenerComponentName = optionalContextName + eventComponentName + eventTypeSuffix.AddListenerSuffix();
148148
dataForEvent.SetTypeName(listenerComponentName.AddComponentSuffix());
149149
dataForEvent.SetMemberData(new[] {
150150
new MemberData("System.Collections.Generic.List<I" + listenerComponentName + ">", "value")

CHANGELOG.md

Lines changed: 9 additions & 0 deletions

Entitas/Entitas/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.0
1+
1.11.0
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)