Skip to content

Commit ae4efe4

Browse files
committed
Release 1.12.0
1 parent 780430a commit ae4efe4

File tree

240 files changed

+834
-1089
lines changed

Some content is hidden

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

240 files changed

+834
-1089
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.11.0
8+
PROJECT_NUMBER = 1.12.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/EntitasHook.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ protected override TrackingData GetData() {
1616
{
1717
"x", "v:" + EntitasResources.GetVersion() +
1818
",e:" + (types.Any(type => type.FullName == "DesperateDevs.CodeGeneration.CodeGenerator.CLI.Program") ? "s" : "u") +
19-
",p:" + (types.Any(type => type.FullName == "Entitas.Roslyn.CodeGeneration.Plugins.PluginUtil") ? "1" : "0") +
19+
",p:" + (types.Any(type => type.FullName == "DesperateDevs.Roslyn.CodeGeneration.Plugins.PluginUtil") ? "1" : "0") +
2020
",f:" + _files.Length +
2121
",cp:" + _files.Count(f => f.fileName.EndsWith("Component.cs", StringComparison.OrdinalIgnoreCase)) +
2222
",cx:" + _files.Count(f => f.fileName.EndsWith("Context.cs", StringComparison.OrdinalIgnoreCase)) +
23-
",l:" + _files.Select(file => file.fileContent.ToUnixLineEndings()).Sum(content => content.Split(new[] { '\n' }).Length)
23+
",l:" + _files.Select(file => file.fileContent.ToUnixLineEndings()).Sum(content => content.Split('\n').Length)
2424
}
2525
};
2626
}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [1.12.0] - 2018-12-09
2+
### Added
3+
- Add Preferences require concrete properties path
4+
- Add CodeGeneratorPreferencesWindow
5+
- Add EntitasEntityLinkHierarchyIcon
6+
7+
### Changed
8+
- Move Jenny Unity Preferences to its own editor window `Tools/Jenny/Preferences...`
9+
10+
### Removed
11+
- Remove EntitasCache
12+
13+
### Upgrade
14+
- Jenny has been decoupled from Entitas even more
15+
- Jenny now stores its config in Jenny.properties by default
16+
- Entitas now stores its config in Entitas.properties by default
17+
- Please split Preferences.properties into Entitas.properties and Jenny.properties or delete them to automatically create new default files
18+
119
## [1.11.0] - 2018-11-19
220
### Added
321
- Add support for multiple event attributes with different event target #810

Entitas/Entitas/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.0
1+
1.12.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)