Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-20 | add serialization supportserialize | Clyne Sullivan | |
2022-08-19 | fix difference_type; fix benchmark warningsremove-std-iterator | Clyne Sullivan | |
2022-08-19 | remove deprecated use of std::iterator | Clyne Sullivan | |
2021-12-02 | Hermitise and upgrade Catch.HEADmaster | Alec Thomas | |
2021-06-25 | Add warning for unsupported configuration in MSVC. | Joseph Davies | |
2021-06-25 | Fix broken automated builds. | Joseph Davies | |
Replaces Travis-CI and AppVeyor scripts with Github Actions workflow. | |||
2021-03-01 | Create FUNDING.yml | Alec Thomas | |
2020-12-29 | Updated Catch library to v1.12.2 | Jarrett Chisholm | |
2020-05-01 | Make debug postfix optional | deflinhec | |
Library debug postfix might not be suitable for cross platform project, and usually require extra work of link against prebuilt yaml-cpp. Generally, Xcode project output library to these directories: Debug Release Debug-iphoneos Release-iphoneos Debug-iphonesimulator Release-iphonesimulator Another Xcode project usually configured its build setting as follow, and expects library name to be same between Release and Debug LIBRARY_SEARCH_PATHS=$(CONFIGURATION)$(EFFECT_PLATFORM_NAME) OTHER_LDFLAGS= $(inherited) -lentityx | |||
2020-03-23 | Add vcpkg installation instructions | wangli28 | |
2019-10-02 | Fix typo in introductory notice. | Joseph Davies | |
2019-01-21 | Updated README.md | adtennant | |
2018-11-15 | Merge pull request #222 from xyproto/doc | Alec Thomas | |
Add note about Arch Linux | |||
2018-11-15 | Add note about Arch Linux | Alexander F. Rødseth | |
2018-09-21 | Merge pull request #218 from Zandor300/patch-1 | Alec Thomas | |
Fixed syntax error in readme.md | |||
2018-09-21 | Fixed syntax error. | Zandor Smith | |
2018-06-15 | Merge pull request #216 from alecthomas/revert-211-master | Alec Thomas | |
Revert "Fix minor memory leak from simplesignal.h and inside pool_test.cc" | |||
2018-06-15 | Revert "Fix minor memory leak from simplesignal.h and inside pool_test.cc" | Alec Thomas | |
2018-06-15 | Merge pull request #215 from alecthomas/revert-213-gh212 | Alec Thomas | |
Revert "Update to brace initialisation to allow for easy aggregate use" | |||
2018-06-15 | Revert "Update to brace initialisation to allow for easy aggregate use" | Alec Thomas | |
2018-06-15 | Merge pull request #213 from radman0x/gh212 | Alec Thomas | |
Update to brace initialisation to allow for easy aggregate use | |||
2018-06-15 | Merge pull request #211 from chocolatemelt/master | Alec Thomas | |
Fix minor memory leak from simplesignal.h and inside pool_test.cc | |||
2018-06-14 | Update to brace initialisation to allow for easy aggregate use | Conrad Mercer | |
2018-05-27 | properly delete pointers | Kevin Zhang | |
2018-05-27 | update simplesignal.h from latest | Kevin Zhang | |
2017-08-01 | Fix typo | domdom | |
lyout -> layout | |||
2017-02-21 | Link to Gitter and benchmarks by @abeimler | Alec Thomas | |
2017-02-07 | Merge pull request #174 from jarrettchisholm/master | Alec Thomas | |
Fix C++11 feature checking for Microsoft Visual C++ Build Tools 2015 | |||
2017-02-04 | Gitter link | Alec Thomas | |
2017-01-15 | turn off extensions (so that it uses c++11 instead of gnu++11) | Jarrett Chisholm | |
2017-01-15 | syntax error fix (for real this time) | Jarrett Chisholm | |
2017-01-15 | Revert "try different cmake ppa" | Jarrett Chisholm | |
This reverts commit e1429b611d89d35b145a808e5c6debf7d94a8584. | |||
2017-01-15 | try different cmake ppa | Jarrett Chisholm | |
2017-01-15 | syntax error | Jarrett Chisholm | |
2017-01-15 | update cmake | Jarrett Chisholm | |
2017-01-15 | We don't need to specify c++11 flag | Jarrett Chisholm | |
2017-01-15 | fix C++11 feature checking for Microsoft Visual C++ Build Tools 2015 | Jarrett Chisholm | |
2017-01-07 | Updates to example. | Alec Thomas | |
- Fade in bodies. - Spin particles per their rotation (this fell by the wayside when translated to a vertex array). | |||
2017-01-06 | Use std::shared_ptr<sf::Shape> directly as component in example. | Alec Thomas | |
2016-12-29 | Merge pull request #167 from jarrettchisholm/master | Alec Thomas | |
Fix for issue #145 | |||
2016-12-29 | Merge pull request #169 from lethal-guitar/component-operator-star | Alec Thomas | |
Add dereference operator to ComponentHandle | |||
2016-12-28 | Add dereference operator to ComponentHandle | lethal-guitar | |
This makes it possible to write code like this: auto& componentRef = *someEntity.component<Position>(); This was already possible previously, but required calling .get() on the component handle. | |||
2016-12-25 | fix compile issue with gcc 6 | Jarrett Chisholm | |
2016-12-25 | Merge pull request #166 from sjaustirni/patch-1 | Alec Thomas | |
Fix copy&paste mistake in CMakeLists.txt | |||
2016-12-22 | Fix copy&paste mistake in CMakeLists.txt | sjaustirni | |
A one-word fix in copy&paste mistake in the section for checking C++11 features. | |||
2016-10-31 | Merge pull request #157 from lethal-guitar/cmake-messages-use-status | Alec Thomas | |
CMake: Use 'STATUS' message type for non-error messages | |||
2016-10-29 | Use 'STATUS' message type for non-error messages | lethal-guitar | |
Using the message() command without the mode keyword makes those messages appear in red when using cmake-gui, which makes them look like errors. By specifying the type as STATUS, they look like regular informative messages. | |||
2016-10-24 | Merge pull request #156 from asmw/cmake_includes | Alec Thomas | |
Set build_interface directories for integrated builds | |||
2016-10-23 | Set build_interface directories for integrated builds | Sumedha Widyadharma | |
This makes it very easy to integrate entityx into a build. I.e: add_subdirectories(3rdparty/entityx) target_link_libraries(my_target entityx[_shared]) This makes #include entityx/entityx.h just work. | |||
2016-10-24 | Merge pull request #155 from asmw/master | Alec Thomas | |
Fix a typo |