mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Merge branch 'dev' into tweak/pretzel-logout
This commit is contained in:
commit
1b9445bde0
@ -3,9 +3,9 @@
|
|||||||
### New features
|
### New features
|
||||||
TBD
|
TBD
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
TBD
|
- Fix reaction tasks not firing ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/423))
|
||||||
|
- QOL task delay offset not following over on task edit ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/423))
|
||||||
### Tweaks
|
### Tweaks
|
||||||
TBD
|
|
||||||
### Lang
|
### Lang
|
||||||
TBD
|
TBD
|
||||||
<br><br>
|
<br><br>
|
||||||
|
@ -3,7 +3,7 @@ import time
|
|||||||
import logging
|
import logging
|
||||||
import threading
|
import threading
|
||||||
import asyncio
|
import asyncio
|
||||||
from datetime import datetime
|
import datetime
|
||||||
|
|
||||||
from tzlocal import get_localzone
|
from tzlocal import get_localzone
|
||||||
from tzlocal.utils import ZoneInfoNotFoundError
|
from tzlocal.utils import ZoneInfoNotFoundError
|
||||||
@ -199,7 +199,7 @@ class TasksManager:
|
|||||||
"interval",
|
"interval",
|
||||||
hours=12,
|
hours=12,
|
||||||
id="update_watcher",
|
id="update_watcher",
|
||||||
start_date=datetime.now(),
|
start_date=datetime.datetime.now(),
|
||||||
)
|
)
|
||||||
# self.scheduler.add_job(
|
# self.scheduler.add_job(
|
||||||
# self.scheduler.print_jobs, "interval", seconds=10, id="-1"
|
# self.scheduler.print_jobs, "interval", seconds=10, id="-1"
|
||||||
|
@ -962,6 +962,7 @@ class PanelHandler(BaseHandler):
|
|||||||
page_data["schedule"]["command"] = ""
|
page_data["schedule"]["command"] = ""
|
||||||
page_data["schedule"]["one_time"] = False
|
page_data["schedule"]["one_time"] = False
|
||||||
page_data["schedule"]["cron_string"] = ""
|
page_data["schedule"]["cron_string"] = ""
|
||||||
|
page_data["schedule"]["delay"] = 0
|
||||||
page_data["schedule"]["time"] = ""
|
page_data["schedule"]["time"] = ""
|
||||||
page_data["schedule"]["interval"] = ""
|
page_data["schedule"]["interval"] = ""
|
||||||
# we don't need to check difficulty here.
|
# we don't need to check difficulty here.
|
||||||
@ -1041,6 +1042,7 @@ class PanelHandler(BaseHandler):
|
|||||||
page_data["schedule"]["command"] = schedule.command
|
page_data["schedule"]["command"] = schedule.command
|
||||||
else:
|
else:
|
||||||
page_data["schedule"]["command"] = ""
|
page_data["schedule"]["command"] = ""
|
||||||
|
page_data["schedule"]["delay"] = schedule.delay
|
||||||
page_data["schedule"]["enabled"] = schedule.enabled
|
page_data["schedule"]["enabled"] = schedule.enabled
|
||||||
page_data["schedule"]["one_time"] = schedule.one_time
|
page_data["schedule"]["one_time"] = schedule.one_time
|
||||||
page_data["schedule"]["cron_string"] = schedule.cron_string
|
page_data["schedule"]["cron_string"] = schedule.cron_string
|
||||||
|
@ -105,21 +105,6 @@
|
|||||||
],
|
],
|
||||||
"blurb": "Developer at work and at home, testing his own code is a pain, so his coding precept is \"Testing is Doubting\"",
|
"blurb": "Developer at work and at home, testing his own code is a pain, so his coding precept is \"Testing is Doubting\"",
|
||||||
"pic": "/static/assets/images/credits/silversthorn.png"
|
"pic": "/static/assets/images/credits/silversthorn.png"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ThatOneLukas",
|
|
||||||
"title": "Software Engineer",
|
|
||||||
"loc": "Helsinki, FI",
|
|
||||||
"tags": [
|
|
||||||
"Staff",
|
|
||||||
[
|
|
||||||
"Developer",
|
|
||||||
"https://gitlab.com/LukasDoesDev"
|
|
||||||
],
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"blurb": "Arch Linux enthusiast who likes 80s/90s music, Rust (The programming language) and light distros like Arch Linux btw. Dislikes C, C++, Go, and Microsoft. Also doesn't like Finnish weather that freezes molten snow to (deadly) ice.",
|
|
||||||
"pic": "/static/assets/images/credits/lukas.png"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"support": [
|
"support": [
|
||||||
@ -217,6 +202,21 @@
|
|||||||
],
|
],
|
||||||
"blurb": "His interests include learning, Linux, and programming. He loves pentesting apps and gaming.",
|
"blurb": "His interests include learning, Linux, and programming. He loves pentesting apps and gaming.",
|
||||||
"pic": "/static/assets/images/credits/mcgaming.png"
|
"pic": "/static/assets/images/credits/mcgaming.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ThatOneLukas",
|
||||||
|
"title": "Software Engineer",
|
||||||
|
"loc": "Helsinki, FI",
|
||||||
|
"tags": [
|
||||||
|
"Staff",
|
||||||
|
[
|
||||||
|
"Developer",
|
||||||
|
"https://gitlab.com/LukasDoesDev"
|
||||||
|
],
|
||||||
|
null
|
||||||
|
],
|
||||||
|
"blurb": "Arch Linux enthusiast who likes 80s/90s music, Rust (The programming language) and light distros like Arch Linux btw. Dislikes C, C++, Go, and Microsoft. Also doesn't like Finnish weather that freezes molten snow to (deadly) ice.",
|
||||||
|
"pic": "/static/assets/images/credits/lukas.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -136,7 +136,8 @@
|
|||||||
<label for="delay">{{ translate('serverScheduleConfig', 'offset' , data['lang']) }} <small
|
<label for="delay">{{ translate('serverScheduleConfig', 'offset' , data['lang']) }} <small
|
||||||
class="text-muted ml-1"> - {{ translate('serverScheduleConfig', 'offset-explain' ,
|
class="text-muted ml-1"> - {{ translate('serverScheduleConfig', 'offset-explain' ,
|
||||||
data['lang']) }}</small> </label>
|
data['lang']) }}</small> </label>
|
||||||
<input type="number" class="form-control" name="delay" id="delay" value="0">
|
<input type="number" class="form-control" name="delay" id="delay"
|
||||||
|
value="{{ data['schedule']['delay']}}">
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<label for="parent">{{ translate('serverScheduleConfig', 'parent' , data['lang']) }} <small
|
<label for="parent">{{ translate('serverScheduleConfig', 'parent' , data['lang']) }} <small
|
||||||
|
Loading…
Reference in New Issue
Block a user