bugfixes, design changes

This commit is contained in:
NoobishSVK
2024-05-04 00:37:39 +02:00
parent a557961998
commit 57b276e136
12 changed files with 114 additions and 61 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
var currentDate = new Date('April 25, 2024 22:00:00');
var currentDate = new Date('May 4, 2024 01:00:00');
var day = currentDate.getDate();
var month = currentDate.getMonth() + 1; // Months are zero-indexed, so add 1
var year = currentDate.getFullYear();
var formattedDate = day + '/' + month + '/' + year;
var currentVersion = 'v1.2.0 [' + formattedDate + ']';
var currentVersion = 'v1.2.1 [' + formattedDate + ']';
getInitialSettings();