From e0b2464d3b8191d741be14e36f39c087bea1ad89 Mon Sep 17 00:00:00 2001 From: HojouFotytu <36724681+HojouFotytu@users.noreply.github.com> Date: Wed, 10 Feb 2021 16:43:20 +0900 Subject: [PATCH 1/4] relocate PTMUpdate.sh --- PTMagic/{ => _defaults/_linux}/PTMUpdate.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename PTMagic/{ => _defaults/_linux}/PTMUpdate.sh (100%) diff --git a/PTMagic/PTMUpdate.sh b/PTMagic/_defaults/_linux/PTMUpdate.sh similarity index 100% rename from PTMagic/PTMUpdate.sh rename to PTMagic/_defaults/_linux/PTMUpdate.sh From c654546da3ef0073817d09eab5e1e0fdce966082 Mon Sep 17 00:00:00 2001 From: HojouFotytu <36724681+HojouFotytu@users.noreply.github.com> Date: Wed, 10 Feb 2021 16:47:07 +0900 Subject: [PATCH 2/4] add spacing to health icon tooltip --- Monitor/Pages/_get/TickerWidgets.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Monitor/Pages/_get/TickerWidgets.cshtml b/Monitor/Pages/_get/TickerWidgets.cshtml index 382265e..7f2fb03 100644 --- a/Monitor/Pages/_get/TickerWidgets.cshtml +++ b/Monitor/Pages/_get/TickerWidgets.cshtml @@ -20,10 +20,10 @@ string iconColor = "text-success"; string ptMagicHealthIcon = "fa-heartbeat"; - string ptMagicHealthTooltip = "PT Magic is alive and healthy! Time elapsed since last run:" + Math.Round(elapsedSecondsSinceRuntime / 60, 1) + " mins."; + string ptMagicHealthTooltip = "PT Magic is alive and healthy! Time elapsed since last run: " + Math.Round(elapsedSecondsSinceRuntime / 60, 1) + " mins."; if (elapsedSecondsSinceRuntime > (intervalSeconds * 2)) { ptMagicHealthIcon = "fa-exclamation-triangle"; - ptMagicHealthTooltip = "PT Magic seems to have problems, check the logs! Time elapsed since last run: " + Math.Round(elapsedSecondsSinceRuntime / 60, 1) + " mins."; + ptMagicHealthTooltip = "PT Magic seems to have problems, check the logs! Time elapsed since last run: " + Math.Round(elapsedSecondsSinceRuntime / 60, 1) + " mins."; iconColor = "text-danger"; } } From a7aa735eb65abc936ab2629cd07f2af49c8af742 Mon Sep 17 00:00:00 2001 From: HojouFotytu <36724681+HojouFotytu@users.noreply.github.com> Date: Wed, 10 Feb 2021 16:59:01 +0900 Subject: [PATCH 3/4] rename baglist POSITIONS --- Monitor/Pages/_get/DashboardTop.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monitor/Pages/_get/DashboardTop.cshtml b/Monitor/Pages/_get/DashboardTop.cshtml index 48ae690..ffb4781 100644 --- a/Monitor/Pages/_get/DashboardTop.cshtml +++ b/Monitor/Pages/_get/DashboardTop.cshtml @@ -82,7 +82,7 @@