-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
features: * Dissolve callback functions into abstract methods in client-layer. ** This is more intuitive and simpler to use then callbacks. fixed: * Fixed player is not alive during spawn and before very first move. * Fixed behavior for bots which sends no steer command. other: * Merged topic and adapter. * Simply set logging level everywhere.
- Loading branch information
Showing
7 changed files
with
140 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ __pycache__ | |
.ipynb_checkpoints/ | ||
.vscode/ | ||
.spyproject/ | ||
.idea/ | ||
|
||
*.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ def __readme__(): | |
|
||
setup( | ||
name='traze-client', | ||
version='1.2', | ||
version='1.3', | ||
author="Danny Lade", | ||
author_email="[email protected]", | ||
description=("A client for the simple tron-like multi client online game called 'Traze' which is using MQTT for communication."), # noqa | ||
|
@@ -44,7 +44,14 @@ def __readme__(): | |
], | ||
|
||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
# Development Status :: 1 - Planning | ||
# Development Status :: 2 - Pre-Alpha | ||
# Development Status :: 3 - Alpha | ||
# Development Status :: 4 - Beta | ||
# Development Status :: 5 - Production/Stable | ||
# Development Status :: 6 - Mature | ||
# Development Status :: 7 - Inactive | ||
"Development Status :: 1 - Planning", | ||
"Topic :: Games/Entertainment :: Simulation", | ||
"Programming Language :: Python :: 3.5", | ||
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", # noqa | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.