From 93ba58c38ceb27e19367a1b65db42ff5151c7780 Mon Sep 17 00:00:00 2001 From: CoolCat467 <52022020+CoolCat467@users.noreply.github.com> Date: Sat, 4 Mar 2023 17:44:23 -0600 Subject: [PATCH] Update version information --- README.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3043738..8629918 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,21 @@ # NEAT Template Python3 NEAT stands for "Evolving Neural Networks through Augmenting Topologies" -Original version in JavaScript programmed by Code-Bullet at https://github.com/Code-Bullet/NEAT-Template-JavaScript. -Re-programmed by CoolCat467 in Python3 and using Pygame. Based of Code-Bullet's Javascript. + +Original version in JavaScript programmed by Code-Bullet at [here](https://github.com/Code-Bullet/NEAT-Template-JavaScript). + +Ported by CoolCat467 to Python3.11. Based of Code-Bullet's Javascript. + # Version Information: -Version 0.0.0: Inititial release -Version 1.0.0: Implemented Save-Load feature requested in original project, https://github.com/Code-Bullet/NEAT-Template-JavaScript/issues/1. +Version 0.0.0: Inititial Publc Release + +Version 1.0.0: Implemented Save-Load feature [as requested in the original project](https://github.com/Code-Bullet/NEAT-Template-JavaScript/issues/1) + Version 1.1.0: Added doccumentation, added BaseEntity object that BasePlayer now inherits, changed some other small things. Removed un-needed dependancy on threading module, as it was not used. +Version 2.0.1: Various changes to make pylint happy and minor fixes, removed pygame requirements. + +Version 2.1.0: Fix type annotations, make code cleaner, rename `ConnHist` to `History`, and add `World` class. With the new type annotation fixes, it should be possible to compile this module to a C extension using [mypyc](https://mypyc.readthedocs.io/en/latest/introduction.html) for even faster code. -P.S.: If Code-Bullet ever sees this, your youtube videos are great other than sometimes bad language. +P.S.: If Code-Bullet ever sees this, your youtube videos are great.