From 9607644d138850b02a9156243296532fa2a25476 Mon Sep 17 00:00:00 2001 From: David Black Date: Sat, 21 May 2016 09:44:37 +0100 Subject: [PATCH 1/2] Modified Dashboard internal filter to process the next rest stop time from a json zulu time to a readable time difference. --- server/.vs/Ets2Telemetry/v14/.suo | Bin 0 -> 3584 bytes .../www/scripts/dashboard-core.js | 1 + 2 files changed, 1 insertion(+) create mode 100644 server/.vs/Ets2Telemetry/v14/.suo diff --git a/server/.vs/Ets2Telemetry/v14/.suo b/server/.vs/Ets2Telemetry/v14/.suo new file mode 100644 index 0000000000000000000000000000000000000000..1f77039ef9b25cbffc1e70a61c5401c054d7c2e6 GIT binary patch literal 3584 zcmca`Uhu)fjZzO8(10BSGsD0CoD6J8;*3Bx6O1pwz`z1zgT(&*|NkE(%nZap<|r6K zA@CRIR#5znf{_^lK@9moSi+#d;L4B(q>C6TL0Oq-AjZIolIMxh2rDm$QA>;(ZMMhSjq6VnK0APyCXUJmk1g5?;Aj_4Z0-q5Wa$*cj zjG*ub)k`26Lje{6kUN3Z7Z?OHBm*JD6=e*W3@Hq$Ko{vT1OwfY!%zy$5t%?%9#F&w zNGAg2oq=>IIIn;VumjeJAbVi|Vk%)0RCiJf!0ZOmq?!rS3(AwQx?r?EfQ8ENr$KQ& p8sEb|o^kn*P?=4rJV{vLlU`nIarau?`Xz12dW4jZ$`7&-0023 Date: Sat, 21 May 2016 11:22:03 +0100 Subject: [PATCH 2/2] added modified dashbioard to user location --- server/Html/scripts/dashboard-core.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/Html/scripts/dashboard-core.js b/server/Html/scripts/dashboard-core.js index 3c53b443..e1bb05ab 100644 --- a/server/Html/scripts/dashboard-core.js +++ b/server/Html/scripts/dashboard-core.js @@ -316,6 +316,7 @@ data.game.time = this.timeToReadableString(data.game.time); data.job.deadlineTime = this.timeToReadableString(data.job.deadlineTime); data.job.remainingTime = this.timeDifferenceToReadableString(data.job.remainingTime); + data.game.nextRestStopTime = this.timeDifferenceToReadableString(data.game.nextRestStopTime); return data; };