mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Merge branch 'dev' into 'master'
v4.4.3 See merge request crafty-controller/crafty-4!792
This commit is contained in:
commit
2b14d514e0
@ -1,4 +1,9 @@
|
||||
# Changelog
|
||||
## --- [4.4.3] - 2024/08/08
|
||||
### Bug fixes
|
||||
- Fix schedules creation fail due to missing action ID ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/791))
|
||||
<br><br>
|
||||
|
||||
## --- [4.4.2] - 2024/08/07
|
||||
### Bug fixes
|
||||
- Migrations | Fix exception message on file not found for backups migration ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/789))
|
||||
|
@ -1,5 +1,5 @@
|
||||
[![Crafty Logo](app/frontend/static/assets/images/logo_long.svg)](https://craftycontrol.com)
|
||||
# Crafty Controller 4.4.2
|
||||
# Crafty Controller 4.4.3
|
||||
> Python based Control Panel for your Minecraft Server
|
||||
|
||||
## What is Crafty Controller?
|
||||
|
@ -341,7 +341,7 @@ class TasksManager:
|
||||
job_data["cron_string"],
|
||||
job_data["parent"],
|
||||
job_data["delay"],
|
||||
job_data["action_id"],
|
||||
job_data.get("action_id", None),
|
||||
)
|
||||
|
||||
# Checks to make sure some doofus didn't actually make the newly
|
||||
@ -372,7 +372,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
@ -399,7 +399,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
@ -416,7 +416,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
@ -436,7 +436,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
@ -529,7 +529,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
@ -553,7 +553,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
@ -570,7 +570,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
@ -590,7 +590,7 @@ class TasksManager:
|
||||
"system"
|
||||
),
|
||||
"command": job_data["command"],
|
||||
"action_id": job_data["action_id"],
|
||||
"action_id": job_data.get("action_id", None),
|
||||
}
|
||||
],
|
||||
)
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"major": 4,
|
||||
"minor": 4,
|
||||
"sub": 2
|
||||
"sub": 3
|
||||
}
|
||||
|
@ -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.2
|
||||
sonar.projectVersion=4.4.3
|
||||
sonar.python.version=3.9, 3.10, 3.11
|
||||
sonar.exclusions=app/migrations/**, app/frontend/static/assets/vendors/**
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user