From 19e6e9e062a3736e49aa0ddb2ffb131141f46621 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 20 Sep 2026 08:52:56 +0000 Subject: [PATCH 1/2] chore(deps): update dependency @lizardbyte/shared-web to v2026.920.12131 --- _config_theme.yml | 4 ++-- _data/licenses.yml | 2 +- assets/js/projects.js | 2 +- index.html | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/_config_theme.yml b/_config_theme.yml index c59af323..f2d05668 100644 --- a/_config_theme.yml +++ b/_config_theme.yml @@ -67,10 +67,10 @@ sass: sass_dir: _sass style: compressed site-css: - - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.812.190302/dist/crowdin-bootstrap-css.css" + - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.920.12131/dist/crowdin-bootstrap-css.css" - "/assets/css/styles.css" site-js: - - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.812.190302/dist/crowdin.js" + - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.920.12131/dist/crowdin.js" - "/assets/js/crowdin-init.js" - href: "https://cdn.jsdelivr.net/npm/lucide@1.45.0/dist/umd/lucide.min.js" - "/assets/js/lucide-init.js" diff --git a/_data/licenses.yml b/_data/licenses.yml index 2fe043d3..581d796c 100644 --- a/_data/licenses.yml +++ b/_data/licenses.yml @@ -12,7 +12,7 @@ gamepad-helper: shared-web: name: LizardByte/shared-web # renovate: datasource=npm depName=@lizardbyte/shared-web - version: '2026.812.190302' + version: '2026.920.12131' url: https://github.com/LizardByte/shared-web/ license: AGPL-3.0 bootstrap: diff --git a/assets/js/projects.js b/assets/js/projects.js index 387f03b2..c99b1f0e 100644 --- a/assets/js/projects.js +++ b/assets/js/projects.js @@ -5,7 +5,7 @@ let container let org_name = "LizardByte" let base_url = `https://app.${org_name.toLowerCase()}.dev` let cache_repo = "dashboard" -let shared_web_url = "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.812.190302" +let shared_web_url = "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.920.12131" function onDocumentReady(callback) { diff --git a/index.html b/index.html index 4c992a45..26c5a215 100644 --- a/index.html +++ b/index.html @@ -11,8 +11,8 @@ - /assets/img/banners/AdobeStock_306976163_1920x1280.jpg - /assets/img/banners/AdobeStock_372471479_1920x1280.jpg ext-js: - - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.812.190302/dist/format-number.js" - - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.812.190302/dist/ranking-sorter.js" + - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.920.12131/dist/format-number.js" + - href: "https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2026.920.12131/dist/ranking-sorter.js" js: - /assets/js/projects.js --- From 108c569cb0f7092ca9e0154d347e422ad96c5370 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 20 Sep 2026 20:53:49 -0400 Subject: [PATCH 2/2] fix(shared-web): init CrowdIn with jekyll --- assets/js/crowdin-init.js | 2 +- tests/crowdin-init.test.cjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/crowdin-init.js b/assets/js/crowdin-init.js index 9dc185b5..5302656c 100644 --- a/assets/js/crowdin-init.js +++ b/assets/js/crowdin-init.js @@ -1 +1 @@ -globalThis.initCrowdIn('LizardByte', null); +globalThis.initCrowdIn('LizardByte', 'jekyll'); diff --git a/tests/crowdin-init.test.cjs b/tests/crowdin-init.test.cjs index ed21acb6..6c4df904 100644 --- a/tests/crowdin-init.test.cjs +++ b/tests/crowdin-init.test.cjs @@ -12,5 +12,5 @@ test('initializes CrowdIn with the organization name', () => { require('../assets/js/crowdin-init.js'); - expect(globalThis.initCrowdIn).toHaveBeenCalledWith('LizardByte', null); + expect(globalThis.initCrowdIn).toHaveBeenCalledWith('LizardByte', 'jekyll'); });