mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2026-03-22 12:55:31 +07:00
v1.9.0
This commit is contained in:
@@ -63,7 +63,7 @@
|
|||||||
- [Chunk](#chunk)
|
- [Chunk](#chunk)
|
||||||
- [Builder](#builder)
|
- [Builder](#builder)
|
||||||
- [Changelog](#changelog)
|
- [Changelog](#changelog)
|
||||||
- [vX.Y.Z](#vxyz)
|
- [v1.9.0](#v190)
|
||||||
- [v1.8.0](#v180)
|
- [v1.8.0](#v180)
|
||||||
- [v1.7.0](#v170)
|
- [v1.7.0](#v170)
|
||||||
- [v1.6.0](#v160)
|
- [v1.6.0](#v160)
|
||||||
@@ -1566,7 +1566,7 @@ builder_mt:destruction_policy :: id -> builder
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### vX.Y.Z
|
### v1.9.0
|
||||||
|
|
||||||
- Performance improvements of the [`evolved.destroy`](#evolveddestroy) and [`evolved.batch_destroy`](#evolvedbatch_destroy) functions
|
- Performance improvements of the [`evolved.destroy`](#evolveddestroy) and [`evolved.batch_destroy`](#evolvedbatch_destroy) functions
|
||||||
- Ensured deterministic chunk ordering to improve processing consistency across runs
|
- Ensured deterministic chunk ordering to improve processing consistency across runs
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
local evolved = {
|
local evolved = {
|
||||||
__HOMEPAGE = 'https://github.com/BlackMATov/evolved.lua',
|
__HOMEPAGE = 'https://github.com/BlackMATov/evolved.lua',
|
||||||
__DESCRIPTION = 'Evolved ECS (Entity-Component-System) for Lua',
|
__DESCRIPTION = 'Evolved ECS (Entity-Component-System) for Lua',
|
||||||
__VERSION = '1.8.0',
|
__VERSION = '1.9.0',
|
||||||
__LICENSE = [[
|
__LICENSE = [[
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
|
|||||||
34
rockspecs/evolved.lua-1.9.0-0.rockspec
Normal file
34
rockspecs/evolved.lua-1.9.0-0.rockspec
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
rockspec_format = "3.0"
|
||||||
|
package = "evolved.lua"
|
||||||
|
version = "1.9.0-0"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/BlackMATov/evolved.lua",
|
||||||
|
tag = "v1.9.0",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
homepage = "https://github.com/BlackMATov/evolved.lua",
|
||||||
|
summary = "Evolved ECS (Entity-Component-System) for Lua",
|
||||||
|
detailed = [[
|
||||||
|
`evolved.lua` is a fast and flexible ECS (Entity-Component-System) library for Lua.
|
||||||
|
It is designed to be simple and easy to use, while providing all the features needed to create complex systems with blazing performance.
|
||||||
|
]],
|
||||||
|
license = "MIT",
|
||||||
|
labels = {
|
||||||
|
"ecs",
|
||||||
|
"entity",
|
||||||
|
"entities",
|
||||||
|
"component",
|
||||||
|
"components",
|
||||||
|
"entity-component",
|
||||||
|
"entity-component-system",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.1",
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
evolved = "evolved.lua",
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user