Merge branch 'dev' into 'master'

v4.4.6

See merge request crafty-controller/crafty-4!825
This commit is contained in:
Iain Powrie 2025-01-20 01:54:02 +00:00
commit edc595b0a0
5 changed files with 9 additions and 4 deletions

View File

@ -1,4 +1,9 @@
# Changelog
## --- [4.4.6] - 2024/01/20
### Bug fixes
- Fix traceback on stats page for data missing data.get ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/824))
<br><br>
## --- [4.4.5] - 2024/01/19
### Refactor
- Refactor and standardize all JSON validator errors returning human readable translations ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/786))

View File

@ -1,5 +1,5 @@
[![Crafty Logo](app/frontend/static/assets/images/logo_long.svg)](https://craftycontrol.com)
# Crafty Controller 4.4.5
# Crafty Controller 4.4.6
> Python based Control Panel for your Minecraft Server
## What is Crafty Controller?

View File

@ -94,7 +94,7 @@ class Players(list):
class Player:
def __init__(self, data):
self.id = data.get("id", "")
self.name = data("name", "Anonymous")
self.name = data.get("name", "Anonymous")
def __str__(self):
return self.name

View File

@ -1,5 +1,5 @@
{
"major": 4,
"minor": 4,
"sub": 5
"sub": 6
}

View File

@ -3,7 +3,7 @@ sonar.organization=crafty-controller
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=Crafty 4
sonar.projectVersion=4.4.5
sonar.projectVersion=4.4.6
sonar.python.version=3.9, 3.10, 3.11
sonar.exclusions=app/migrations/**, app/frontend/static/assets/vendors/**