Core script and library updates

-jQuery has been updated to v3.7.1
-Luxon has been updated to v3.4.3. Also updated the link to the documentation showing how to format dates in the settings.json.template and settings.js
-Datatables has been updated to v1.13.6
-Font Awesome has been updated to v6.4.2 and all icons in the project have been updated to use the newest v6.x codes
-OverlayScrollbars has been updated to v2.3.2
-flag-icons (previously called flag-icon-css) has been updated to v6.11.1
-Updated the main style.scss file with better color support for the new datatable loading animation color
-Exor theme has been updated to v3.0.2 with a small fix to support the new datatable loading animation color
This commit is contained in:
Joe Uhren
2023-10-19 20:26:27 -06:00
parent f5d4d4478d
commit 58576b22d6
22 changed files with 188 additions and 116 deletions
+12 -12
View File
@@ -127,7 +127,7 @@ exports.shared_pages = {
// date_time: a collection of settings that pertain to the date and time values displayed in the explorer
"date_time": {
// display_format: The format to use when displaying date/time values
// Date/time values are formatted using the Luxon library and must follow the correct syntax (read more: https://moment.github.io/luxon/docs/manual/formatting.html#table-of-tokens)
// Date/time values are formatted using the Luxon library and must follow the correct syntax (read more: https://moment.github.io/luxon/#/formatting?id=table-of-tokens)
// Ex: LLL dd, yyyy HH:mm:ss ZZZZ = May 27, 2019 22:04:11 UTC
"display_format": "LLL dd, yyyy HH:mm:ss ZZZZ",
// timezone: All dates and times are stored as UTC dates and can either be displayed in UTC format or else they can be displayed in the local timezone according to a user's web browser settings
@@ -1655,7 +1655,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.github == null ? false : json_settings.display.github),
"tooltip_text": "Github",
"url": "https://github.com/" + json_settings.github,
"fontawesome_class": "fab fa-github",
"fontawesome_class": "fa-brands fa-github",
"image_path": ""
});
// delete old settings
@@ -1669,7 +1669,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.discord == null ? false : json_settings.display.discord),
"tooltip_text": "Discord",
"url": json_settings.discord,
"fontawesome_class": "fab fa-discord",
"fontawesome_class": "fa-brands fa-discord",
"image_path": ""
});
// delete old settings
@@ -1683,7 +1683,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.telegram == null ? false : json_settings.display.telegram),
"tooltip_text": "Telegram",
"url": "https://t.me/" + json_settings.telegram,
"fontawesome_class": "fab fa-telegram",
"fontawesome_class": "fa-brands fa-telegram",
"image_path": ""
});
// delete old settings
@@ -1697,7 +1697,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.reddit == null ? false : json_settings.display.reddit),
"tooltip_text": "Reddit",
"url": "https://reddit.com/r/" + json_settings.reddit,
"fontawesome_class": "fab fa-reddit",
"fontawesome_class": "fa-brands fa-reddit",
"image_path": ""
});
// delete old settings
@@ -1711,7 +1711,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.youtube == null ? false : json_settings.display.youtube),
"tooltip_text": "YouTube",
"url": json_settings.youtube,
"fontawesome_class": "fab fa-youtube",
"fontawesome_class": "fa-brands fa-youtube",
"image_path": ""
});
// delete old settings
@@ -1725,7 +1725,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.slack == null ? false : json_settings.display.slack),
"tooltip_text": "Slack",
"url": json_settings.slack,
"fontawesome_class": "fab fa-slack",
"fontawesome_class": "fa-brands fa-slack",
"image_path": ""
});
// delete old settings
@@ -1739,7 +1739,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.twitter == null ? false : json_settings.display.twitter),
"tooltip_text": "Twitter",
"url": "https://twitter.com/" + json_settings.twitter,
"fontawesome_class": "fab fa-twitter",
"fontawesome_class": "fa-brands fa-twitter",
"image_path": ""
});
// delete old settings
@@ -1753,7 +1753,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.facebook == null ? false : json_settings.display.facebook),
"tooltip_text": "Facebook",
"url": "https://www.facebook.com/" + json_settings.facebook,
"fontawesome_class": "fab fa-facebook",
"fontawesome_class": "fa-brands fa-facebook",
"image_path": ""
});
// delete old settings
@@ -1767,7 +1767,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.googleplus == null ? false : json_settings.display.googleplus),
"tooltip_text": "Google+",
"url": "https://plus.google.com/" + json_settings.googleplus,
"fontawesome_class": "fab fa-google-plus",
"fontawesome_class": "fa-brands fa-google-plus",
"image_path": ""
});
// delete old settings
@@ -1781,7 +1781,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.bitcointalk == null ? false : json_settings.display.bitcointalk),
"tooltip_text": "Bitcointalk",
"url": "https://bitcointalk.org/index.php?topic=" + json_settings.bitcointalk,
"fontawesome_class": "fab fa-btc",
"fontawesome_class": "fa-brands fa-btc",
"image_path": ""
});
// delete old settings
@@ -1795,7 +1795,7 @@ exports.loadSettings = function loadSettings() {
"enabled": (json_settings.display == null || json_settings.display.website == null ? false : json_settings.display.website),
"tooltip_text": "Website",
"url": json_settings.website,
"fontawesome_class": "fa fa-link",
"fontawesome_class": "fa-solid fa-link",
"image_path": ""
});
// delete old settings