File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7676 - [ Chunk] ( #chunk )
7777 - [ Builder] ( #builder )
7878- [ Changelog] ( #changelog )
79- - [ vX.Y.Z ] ( #vxyz )
79+ - [ v1.11.0 ] ( #v1110 )
8080 - [ v1.10.0] ( #v1100 )
8181 - [ v1.9.0] ( #v190 )
8282 - [ v1.8.0] ( #v180 )
@@ -1703,7 +1703,7 @@ builder_mt:destruction_policy :: id -> builder
17031703
17041704## Changelog
17051705
1706- ### vX.Y.Z
1706+ ### v1.11.0
17071707
17081708- Slightly improved performance of modifying operations for fragments with [ ` ON_INSERT ` ] ( #evolvedon_insert ) and [ ` ON_REMOVE ` ] ( #evolvedon_remove ) hooks
17091709- Slightly improved performance of queries with [ ` EXPLICIT ` ] ( #evolvedexplicit ) fragments
Original file line number Diff line number Diff line change 11local evolved = {
22 __HOMEPAGE = ' https://github.com/BlackMATov/evolved.lua' ,
33 __DESCRIPTION = ' Evolved ECS (Entity-Component-System) for Lua' ,
4- __VERSION = ' 1.10 .0' ,
4+ __VERSION = ' 1.11 .0' ,
55 __LICENSE = [[
66 MIT License
77
Original file line number Diff line number Diff line change 1+ rockspec_format = " 3.0"
2+ package = " evolved.lua"
3+ version = " 1.11.0-0"
4+ source = {
5+ url = " git://github.com/BlackMATov/evolved.lua" ,
6+ tag = " v1.11.0" ,
7+ }
8+ description = {
9+ homepage = " https://github.com/BlackMATov/evolved.lua" ,
10+ summary = " Evolved ECS (Entity-Component-System) for Lua" ,
11+ detailed = [[
12+ `evolved.lua` is a fast and flexible ECS (Entity-Component-System) library for Lua.
13+ It is designed to be simple and easy to use, while providing all the features needed to create complex systems with blazing performance.
14+ ]] ,
15+ license = " MIT" ,
16+ labels = {
17+ " ecs" ,
18+ " entity" ,
19+ " entities" ,
20+ " component" ,
21+ " components" ,
22+ " entity-component" ,
23+ " entity-component-system" ,
24+ },
25+ }
26+ dependencies = {
27+ " lua >= 5.1" ,
28+ }
29+ build = {
30+ type = " builtin" ,
31+ modules = {
32+ evolved = " evolved.lua" ,
33+ }
34+ }
You can’t perform that action at this time.
0 commit comments