From 9f5c20833e7888972c4407447633e45d352112ba Mon Sep 17 00:00:00 2001 From: Zhu Chenrui Date: Tue, 7 Oct 2025 17:51:57 +0800 Subject: [PATCH 001/234] refactor: simplify SubmitLink selection by querying all anchors and finding by text --- Update.json | 11 +++++++++++ XMOJ.user.js | 23 +++-------------------- package.json | 2 +- 3 files changed, 15 insertions(+), 21 deletions(-) diff --git a/Update.json b/Update.json index 7c45a663d..127f787fd 100644 --- a/Update.json +++ b/Update.json @@ -3192,6 +3192,17 @@ } ], "Notes": "XMOJ-Script 2.5.0 新增了比赛题目切换器,方便您在题目之间快速切换。此功能默认启用,您也可以在设置中禁用它。本版本还修复了一个导致时间显示为“NaN年前”的错误, 更新了一些 CSS selector,以适应 XMOJ 网站的最新变化." + }, + "2.5.1": { + "UpdateDate": 1759830659949, + "Prerelease": true, + "UpdateContents": [ + { + "PR": 876, + "Description": "refactor: simplify SubmitLink selection by querying all anchors and finding by text" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index 9382516ba..cf08940d7 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.5.0 +// @version 2.5.1 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen @@ -1710,25 +1710,8 @@ async function main() { document.querySelector("body > div > div.mt-3 > center").lastElementChild.style.marginLeft = "10px"; } //修复提交按钮 - let SubmitLink = document.querySelector('.mt-3 > center:nth-child(1) > a:nth-child(12)'); - if (SubmitLink == null) { //a special type of problem - SubmitLink = document.querySelector('.mt-3 > center:nth-child(1) > a:nth-child(10)'); - } - if (SubmitLink == null) { - SubmitLink = document.querySelector('.mt-3 > center:nth-child(1) > a:nth-child(11)'); - } - if (SubmitLink == null) { - SubmitLink = document.querySelector('.mt-3 > center:nth-child(1) > a:nth-child(13)'); - } - if (SubmitLink == null) { - SubmitLink = document.querySelector('.mt-3 > center:nth-child(1) > a:nth-child(9)'); - } - if (SubmitLink == null) { //为什么这个破东西老是换位置 - SubmitLink = document.querySelector('.mt-3 > center:nth-child(1) > a:nth-child(7)'); - } - if (SubmitLink == null) { //tmd又换位置 - SubmitLink = document.querySelector('.mt-3 > center:nth-child(1) > a:nth-child(8)'); - } + const links = document.querySelectorAll('.mt-3 > center:nth-child(1) > a'); + const SubmitLink = Array.from(links).find(a => a.textContent.trim() === '提交'); let SubmitButton = document.createElement('button'); SubmitButton.id = 'SubmitButton'; SubmitButton.className = 'btn btn-outline-secondary'; diff --git a/package.json b/package.json index b05985188..7dc97daaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.5.0", + "version": "2.5.1", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From 10d68067ae61c2d804da5e7ab85e87193ab1996c Mon Sep 17 00:00:00 2001 From: Zhu Chenrui Date: Tue, 7 Oct 2025 22:06:18 +0800 Subject: [PATCH 002/234] =?UTF-8?q?fix:=20problem=20PID=20=E5=8F=AF?= =?UTF-8?q?=E8=83=BD=E4=B8=BA=20null=20(#877)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: problem PID 可能为 null * 2.5.2 * Update version info to 2.5.2 --------- Co-authored-by: github-actions[bot] --- Update.json | 11 +++++++++++ XMOJ.user.js | 28 ++++++++++++++++++++++++---- package.json | 2 +- 3 files changed, 36 insertions(+), 5 deletions(-) diff --git a/Update.json b/Update.json index 127f787fd..043b5b374 100644 --- a/Update.json +++ b/Update.json @@ -3203,6 +3203,17 @@ } ], "Notes": "No release notes were provided for this release." + }, + "2.5.2": { + "UpdateDate": 1759845614758, + "Prerelease": true, + "UpdateContents": [ + { + "PR": 877, + "Description": "fix: problem PID 可能为 null" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index cf08940d7..389809d0a 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.5.1 +// @version 2.5.2 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen @@ -1645,7 +1645,28 @@ async function main() { } else if (location.pathname == "/problem.php") { await RenderMathJax(); if (SearchParams.get("cid") != null && UtilityEnabled("ProblemSwitcher")) { - document.getElementsByTagName("h2")[0].innerHTML += " (" + localStorage.getItem("UserScript-Contest-" + SearchParams.get("cid") + "-Problem-" + SearchParams.get("pid") + "-PID") + ")"; + let pid = localStorage.getItem("UserScript-Contest-" + SearchParams.get("cid") + "-Problem-" + SearchParams.get("pid") + "-PID"); + if (!pid) { + const contestReq = await fetch("https://www.xmoj.tech/contest.php?cid=" + SearchParams.get("cid")); + const res = await contestReq.text(); + if (contestReq.status === 200 && res.indexOf("比赛尚未开始或私有,不能查看题目。") === -1) { + const parser = new DOMParser(); + const dom = parser.parseFromString(res, "text/html"); + const rows = (dom.querySelector("#problemset > tbody")).rows; + for (let i = 0; i < rows.length; i++) { + let problemIdText = rows[i].children[1].innerText; // Get the text content + let match = problemIdText.match(/\d+/); // Extract the number + if (match) { + let extractedPid = match[0]; + localStorage.setItem("UserScript-Contest-" + SearchParams.get("cid") + "-Problem-" + i + "-PID", extractedPid); + } + } + pid = localStorage.getItem("UserScript-Contest-" + SearchParams.get("cid") + "-Problem-" + SearchParams.get("pid") + "-PID"); + } + } + if (pid) { + document.getElementsByTagName("h2")[0].innerHTML += " (" + pid + ")"; + } let ContestProblemList = localStorage.getItem("UserScript-Contest-" + SearchParams.get("cid") + "-ProblemList"); if (ContestProblemList == null) { const contestReq = await fetch("https://www.xmoj.tech/contest.php?cid=" + SearchParams.get("cid")); @@ -1727,8 +1748,7 @@ async function main() { // Remove the button's outer [] let str = document.querySelector('.mt-3 > center:nth-child(1)').innerHTML; let target = SubmitButton.outerHTML; - let result = str.replace(new RegExp(`(.?)${target}(.?)`, 'g'), target); - document.querySelector('.mt-3 > center:nth-child(1)').innerHTML = result; + document.querySelector('.mt-3 > center:nth-child(1)').innerHTML = str.replace(new RegExp(`(.?)${target}(.?)`, 'g'), target); document.querySelector('html body.placeholder-glow div.container div.mt-3 center button#SubmitButton.btn.btn-outline-secondary').onclick = function () { window.location.href = SubmitLink.href; console.log(SubmitLink.href); diff --git a/package.json b/package.json index 7dc97daaf..b70e2ba31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.5.1", + "version": "2.5.2", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From 8b9f36bfdb960b50061c672faa3879844bfa6f65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 06:34:54 +0800 Subject: [PATCH 003/234] Bump actions/checkout from 5 to 6 (#883) --- .github/workflows/AutoLabelIssue.yml | 2 +- .github/workflows/CodeQL.yml | 2 +- .github/workflows/DependencyScan.yml | 2 +- .github/workflows/Prerelease.yml | 2 +- .github/workflows/Release.yml | 2 +- .github/workflows/UpdateToRelease.yml | 2 +- .github/workflows/UpdateVersion.yml | 2 +- .github/workflows/main.yml | 2 +- .github/workflows/sync-to-extern-contrib.yml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/AutoLabelIssue.yml b/.github/workflows/AutoLabelIssue.yml index 7a11f5863..58ccb0494 100644 --- a/.github/workflows/AutoLabelIssue.yml +++ b/.github/workflows/AutoLabelIssue.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Generate a token diff --git a/.github/workflows/CodeQL.yml b/.github/workflows/CodeQL.yml index 425a2cfcb..ceb39ff13 100644 --- a/.github/workflows/CodeQL.yml +++ b/.github/workflows/CodeQL.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: github/codeql-action/init@v3 with: languages: "javascript" diff --git a/.github/workflows/DependencyScan.yml b/.github/workflows/DependencyScan.yml index 73b3298d7..605309c7e 100644 --- a/.github/workflows/DependencyScan.yml +++ b/.github/workflows/DependencyScan.yml @@ -9,5 +9,5 @@ jobs: dependency-review: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/dependency-review-action@v4 diff --git a/.github/workflows/Prerelease.yml b/.github/workflows/Prerelease.yml index fc97e2da5..d775ea9f2 100644 --- a/.github/workflows/Prerelease.yml +++ b/.github/workflows/Prerelease.yml @@ -21,7 +21,7 @@ jobs: with: node-version: 16 registry-url: https://registry.npmjs.org/ - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Publish to npm diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 548b0e02e..e9c591396 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -20,7 +20,7 @@ jobs: with: node-version: 16 registry-url: https://registry.npmjs.org/ - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Get version diff --git a/.github/workflows/UpdateToRelease.yml b/.github/workflows/UpdateToRelease.yml index e401f757a..c66ae4381 100644 --- a/.github/workflows/UpdateToRelease.yml +++ b/.github/workflows/UpdateToRelease.yml @@ -15,7 +15,7 @@ jobs: pull-requests: write contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Update to release diff --git a/.github/workflows/UpdateVersion.yml b/.github/workflows/UpdateVersion.yml index b71fbb1f2..ed9c13b32 100644 --- a/.github/workflows/UpdateVersion.yml +++ b/.github/workflows/UpdateVersion.yml @@ -21,7 +21,7 @@ jobs: with: app-id: ${{ secrets.APP_ID }} private-key: ${{ secrets.APP_PRIVATE_KEY }} - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Update version env: PR_BODY: ${{ github.event.pull_request.body }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73a6a4412..fdd59cbdb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: pull-requests: write checks: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis diff --git a/.github/workflows/sync-to-extern-contrib.yml b/.github/workflows/sync-to-extern-contrib.yml index d9a0da5b1..2bb08cb94 100644 --- a/.github/workflows/sync-to-extern-contrib.yml +++ b/.github/workflows/sync-to-extern-contrib.yml @@ -10,7 +10,7 @@ jobs: name: Syncing branches steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Node uses: actions/setup-node@v4 with: From 9eeec96746a99a5c99a7c0d3a9623d2960e1c0d4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 01:00:28 +0000 Subject: [PATCH 004/234] Initial plan From 6bca5528add89b431ea7553a46655e9098b9d7d1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 01:05:17 +0000 Subject: [PATCH 005/234] Fix AC code export to support 5-digit question IDs Co-authored-by: PythonSmall-Q <106425289+PythonSmall-Q@users.noreply.github.com> --- XMOJ.user.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/XMOJ.user.js b/XMOJ.user.js index 389809d0a..60e4aca18 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -3002,8 +3002,11 @@ async function main() { for (let i = 0; i < ACCode.length; i++) { let CurrentCode = ACCode[i]; if (CurrentCode != "") { - let CurrentQuestionID = CurrentCode.substring(7, 11); - CurrentCode = CurrentCode.substring(14); + let lineBreakPos = CurrentCode.search(/[\r\n]/); + let headerLine = CurrentCode.slice(0, lineBreakPos); + let digitMatch = headerLine.match(/\d+/); + let CurrentQuestionID = digitMatch ? digitMatch[0] : ""; + CurrentCode = CurrentCode.slice(CurrentCode.indexOf('\n') + 1); CurrentCode = CurrentCode.replaceAll("\r", ""); Zip.file(CurrentQuestionID + ".cpp", CurrentCode); } From 9f2ddc99381f9b543b5fd5ef8b76e00710fc8cd7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:05:58 +0000 Subject: [PATCH 006/234] 2.5.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b70e2ba31..442a50857 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.5.2", + "version": "2.5.3", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From 01c214f32a8e726b015d58db80ec768a367ae488 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:06:04 +0000 Subject: [PATCH 007/234] Update version info to 2.5.3 --- Update.json | 11 +++++++++++ XMOJ.user.js | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 043b5b374..58682df5b 100644 --- a/Update.json +++ b/Update.json @@ -3214,6 +3214,17 @@ } ], "Notes": "No release notes were provided for this release." + }, + "2.5.3": { + "UpdateDate": 1770339958988, + "Prerelease": true, + "UpdateContents": [ + { + "PR": 888, + "Description": "[WIP] Fix bug in exporting AC codes for topics above 9999" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index 60e4aca18..43a2508c0 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.5.2 +// @version 2.5.3 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen From 5c12498bd92383727ff3c0e42e082411863954e0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 01:06:34 +0000 Subject: [PATCH 008/234] Add validation for malformed data in AC code export Co-authored-by: PythonSmall-Q <106425289+PythonSmall-Q@users.noreply.github.com> --- XMOJ.user.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/XMOJ.user.js b/XMOJ.user.js index 43a2508c0..5c71f748b 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -3003,10 +3003,13 @@ async function main() { let CurrentCode = ACCode[i]; if (CurrentCode != "") { let lineBreakPos = CurrentCode.search(/[\r\n]/); + if (lineBreakPos === -1) continue; let headerLine = CurrentCode.slice(0, lineBreakPos); let digitMatch = headerLine.match(/\d+/); - let CurrentQuestionID = digitMatch ? digitMatch[0] : ""; - CurrentCode = CurrentCode.slice(CurrentCode.indexOf('\n') + 1); + if (!digitMatch) continue; + let CurrentQuestionID = digitMatch[0]; + let newlinePos = CurrentCode.indexOf('\n'); + CurrentCode = CurrentCode.slice(newlinePos + 1); CurrentCode = CurrentCode.replaceAll("\r", ""); Zip.file(CurrentQuestionID + ".cpp", CurrentCode); } From 660b4e144e5ebe4812910c71436cc6570a989095 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:06:49 +0000 Subject: [PATCH 009/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 58682df5b..6f72ea63b 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770339958988, + "UpdateDate": 1770340008627, "Prerelease": true, "UpdateContents": [ { From ba34c780ee439660bd204892506cecc100c7e588 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:07:29 +0000 Subject: [PATCH 010/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6f72ea63b..d89e05c1f 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340008627, + "UpdateDate": 1770340043961, "Prerelease": true, "UpdateContents": [ { From b7262ca990952ca25f07f40affd4e53f6fea9c2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:08:32 +0000 Subject: [PATCH 011/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d89e05c1f..92239725d 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340043961, + "UpdateDate": 1770340107176, "Prerelease": true, "UpdateContents": [ { From 997d6d7a24534c378b2815b4f700a31c841bb3ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:09:15 +0000 Subject: [PATCH 012/234] Update time and description of 2.5.3 --- Update.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Update.json b/Update.json index 92239725d..7d49b6f13 100644 --- a/Update.json +++ b/Update.json @@ -3216,12 +3216,12 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340107176, + "UpdateDate": 1770340150170, "Prerelease": true, "UpdateContents": [ { "PR": 888, - "Description": "[WIP] Fix bug in exporting AC codes for topics above 9999" + "Description": "Fix AC code export for 5-digit question IDs" } ], "Notes": "No release notes were provided for this release." From e4d34f5cae9798511ccf849b2d9efaad209ffaa4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:10:01 +0000 Subject: [PATCH 013/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 7d49b6f13..bcced1b77 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340150170, + "UpdateDate": 1770340196321, "Prerelease": true, "UpdateContents": [ { From deba7b50f4c7101a70dfce289c12e7e0a6e55101 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:11:15 +0000 Subject: [PATCH 014/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index bcced1b77..188aac00d 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340196321, + "UpdateDate": 1770340269771, "Prerelease": true, "UpdateContents": [ { From 6719c312b8c58fa0cc2ccca39dc38a458a0bf5cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:12:12 +0000 Subject: [PATCH 015/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 188aac00d..2256a2211 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340269771, + "UpdateDate": 1770340326619, "Prerelease": true, "UpdateContents": [ { From 33c3f5271ef0e8a74f94a7617370b009520c3d8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:13:00 +0000 Subject: [PATCH 016/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 2256a2211..9582432b9 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340326619, + "UpdateDate": 1770340374901, "Prerelease": true, "UpdateContents": [ { From b909f210ed50d54ad0db0b584d7e5f799f015d8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:13:53 +0000 Subject: [PATCH 017/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9582432b9..6ca472b3a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340374901, + "UpdateDate": 1770340427430, "Prerelease": true, "UpdateContents": [ { From 11b9aab6fe74e3146e8dfad8b257459bcc6e6346 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:14:59 +0000 Subject: [PATCH 018/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6ca472b3a..a306d4941 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340427430, + "UpdateDate": 1770340493656, "Prerelease": true, "UpdateContents": [ { From ac744489d93e660b7582410d77bd559274ce2fef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:15:44 +0000 Subject: [PATCH 019/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a306d4941..4d833fb99 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340493656, + "UpdateDate": 1770340539806, "Prerelease": true, "UpdateContents": [ { From 5be26bb37b1fe8c54c6037adc596ef1c3ce423d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:16:26 +0000 Subject: [PATCH 020/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 4d833fb99..51769059b 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340539806, + "UpdateDate": 1770340581676, "Prerelease": true, "UpdateContents": [ { From 51b7c030b63501b549ce92820cc2da2d27a7163a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:17:17 +0000 Subject: [PATCH 021/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 51769059b..a47c62556 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340581676, + "UpdateDate": 1770340632242, "Prerelease": true, "UpdateContents": [ { From d24a2545518c0e00d88d3e3e9c42aa96f5ba6b28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:18:00 +0000 Subject: [PATCH 022/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a47c62556..bfdb763ba 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340632242, + "UpdateDate": 1770340675585, "Prerelease": true, "UpdateContents": [ { From 2d152de0f9d54868fdd86d6a3bfe8fd19183fae2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:18:47 +0000 Subject: [PATCH 023/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index bfdb763ba..4426036ce 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340675585, + "UpdateDate": 1770340721847, "Prerelease": true, "UpdateContents": [ { From 64d44bf977cff90f72fed7717f11da87ec338a23 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:19:32 +0000 Subject: [PATCH 024/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 4426036ce..5549501dc 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340721847, + "UpdateDate": 1770340767378, "Prerelease": true, "UpdateContents": [ { From ec8098c3bd61beed8290a5bc18091ec4a6fb25bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:20:18 +0000 Subject: [PATCH 025/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5549501dc..37df392e1 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340767378, + "UpdateDate": 1770340813259, "Prerelease": true, "UpdateContents": [ { From e4c8ef37416df406d3e25efbc415fe4cea50f372 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:21:05 +0000 Subject: [PATCH 026/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 37df392e1..d08c50089 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340813259, + "UpdateDate": 1770340860606, "Prerelease": true, "UpdateContents": [ { From f8076f948e92075ad9aece1df692ae9548e0f9c1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:21:53 +0000 Subject: [PATCH 027/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d08c50089..deee8b20c 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340860606, + "UpdateDate": 1770340908208, "Prerelease": true, "UpdateContents": [ { From d8e34052ce66e2ac85e8c58962dd803af447df53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:22:41 +0000 Subject: [PATCH 028/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index deee8b20c..a276d6caf 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340908208, + "UpdateDate": 1770340956408, "Prerelease": true, "UpdateContents": [ { From 4e5e8ae00b497035eada499c8ef3967067201e17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:23:27 +0000 Subject: [PATCH 029/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a276d6caf..7d9cb2559 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770340956408, + "UpdateDate": 1770341001974, "Prerelease": true, "UpdateContents": [ { From d865b115c01e13476c1d1b9446b46c26e47d9550 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:24:07 +0000 Subject: [PATCH 030/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 7d9cb2559..8720b3d29 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341001974, + "UpdateDate": 1770341042217, "Prerelease": true, "UpdateContents": [ { From 979c25e5c72022b516eed6dc530033715d71c27d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:24:53 +0000 Subject: [PATCH 031/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8720b3d29..47ad52969 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341042217, + "UpdateDate": 1770341087700, "Prerelease": true, "UpdateContents": [ { From 291747be6168515c495170ab9ccb05c003bf7af7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:26:05 +0000 Subject: [PATCH 032/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 47ad52969..224eb336c 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341087700, + "UpdateDate": 1770341146059, "Prerelease": true, "UpdateContents": [ { From 3d523e33cf65c48b2cad7c6531faf83fc7cf3a53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:26:50 +0000 Subject: [PATCH 033/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 224eb336c..1a15c15de 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341146059, + "UpdateDate": 1770341205419, "Prerelease": true, "UpdateContents": [ { From 3db21eb975c1f0020321858bb771e7f539549fa0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:27:47 +0000 Subject: [PATCH 034/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1a15c15de..ff5282b9a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341205419, + "UpdateDate": 1770341261210, "Prerelease": true, "UpdateContents": [ { From 841f7b0563f1996317006022eb71e841ced950bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:28:47 +0000 Subject: [PATCH 035/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index ff5282b9a..468297db8 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341261210, + "UpdateDate": 1770341318977, "Prerelease": true, "UpdateContents": [ { From 2b77c1e704050412ba09d010dcaf7af76ad1b2ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:29:44 +0000 Subject: [PATCH 036/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 468297db8..e57a5db2b 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341318977, + "UpdateDate": 1770341379179, "Prerelease": true, "UpdateContents": [ { From 12f0488aaeb3a8ab4873fdd4c4d11a7e0ad7a96b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:30:39 +0000 Subject: [PATCH 037/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index e57a5db2b..f43ea61ae 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341379179, + "UpdateDate": 1770341433244, "Prerelease": true, "UpdateContents": [ { From 061cf6b63662adf8e5293d57ca7a594453bef5de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:31:33 +0000 Subject: [PATCH 038/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f43ea61ae..788edd8b6 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341433244, + "UpdateDate": 1770341487059, "Prerelease": true, "UpdateContents": [ { From 42f1f4279fcea5be9d3341d72a55ae67d1cbc353 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:32:20 +0000 Subject: [PATCH 039/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 788edd8b6..9aa89d846 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341487059, + "UpdateDate": 1770341535204, "Prerelease": true, "UpdateContents": [ { From a74ae362ad199848118f3aa0f0c4fa2786bbaa5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:33:14 +0000 Subject: [PATCH 040/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9aa89d846..b9d7fdbfb 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341535204, + "UpdateDate": 1770341589385, "Prerelease": true, "UpdateContents": [ { From 2fcac56586dc205a81e5520ac46e2e887a730ea1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:34:02 +0000 Subject: [PATCH 041/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b9d7fdbfb..1b9f48794 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341589385, + "UpdateDate": 1770341636196, "Prerelease": true, "UpdateContents": [ { From b135d6b422cfa156255a2d6188d6b36e8fe46490 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:34:52 +0000 Subject: [PATCH 042/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1b9f48794..d3d420239 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341636196, + "UpdateDate": 1770341686414, "Prerelease": true, "UpdateContents": [ { From ef4244104304bee2c90045d88321fc8efbccb475 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:35:35 +0000 Subject: [PATCH 043/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d3d420239..46d895f6a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341686414, + "UpdateDate": 1770341730575, "Prerelease": true, "UpdateContents": [ { From bbea4fdfc5f294982d0a72fc15e35fb092a65884 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:36:31 +0000 Subject: [PATCH 044/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 46d895f6a..07a3ccbb3 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341730575, + "UpdateDate": 1770341785915, "Prerelease": true, "UpdateContents": [ { From bb134f124d14f9323f0cd7693f7942302fdcf8b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:37:21 +0000 Subject: [PATCH 045/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 07a3ccbb3..424f771b8 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341785915, + "UpdateDate": 1770341835538, "Prerelease": true, "UpdateContents": [ { From d34cd0fe55ad1bb3abedfd3a891ef277aa0dfaf6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:38:16 +0000 Subject: [PATCH 046/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 424f771b8..f6cb438c6 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341835538, + "UpdateDate": 1770341891058, "Prerelease": true, "UpdateContents": [ { From c5481e9f011fabc63a190770fcaa9a57c0d1f0f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:39:02 +0000 Subject: [PATCH 047/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f6cb438c6..98a04485a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341891058, + "UpdateDate": 1770341937460, "Prerelease": true, "UpdateContents": [ { From ed5210425e87804acfecd7fad7d5dae069d619b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:39:48 +0000 Subject: [PATCH 048/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 98a04485a..8f4b90faf 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341937460, + "UpdateDate": 1770341982928, "Prerelease": true, "UpdateContents": [ { From fa6970ea5e6530e8e31f6a0f76db78a5a449dfdc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:40:37 +0000 Subject: [PATCH 049/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8f4b90faf..667131f32 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770341982928, + "UpdateDate": 1770342032537, "Prerelease": true, "UpdateContents": [ { From b24d441ac34b57fcc81e1dbca729e875fd23c7ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:41:33 +0000 Subject: [PATCH 050/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 667131f32..2ef4c6316 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342032537, + "UpdateDate": 1770342088292, "Prerelease": true, "UpdateContents": [ { From 0722f1a5e638192f509d3c3a7876a052964f69dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:42:23 +0000 Subject: [PATCH 051/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 2ef4c6316..4e920e3bf 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342088292, + "UpdateDate": 1770342138654, "Prerelease": true, "UpdateContents": [ { From 33b86fed1c5d411cd41cc70a8d3bc63909a64a50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:43:11 +0000 Subject: [PATCH 052/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 4e920e3bf..67187cea4 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342138654, + "UpdateDate": 1770342186566, "Prerelease": true, "UpdateContents": [ { From 95d7b71f5fd3cff46ddc7d7735676f693c751ad2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:43:59 +0000 Subject: [PATCH 053/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 67187cea4..8c589f0ed 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342186566, + "UpdateDate": 1770342234606, "Prerelease": true, "UpdateContents": [ { From 0e98cbc274b39e622b3b65a02bfeb99ef855eba5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:44:52 +0000 Subject: [PATCH 054/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8c589f0ed..9595b09e6 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342234606, + "UpdateDate": 1770342286581, "Prerelease": true, "UpdateContents": [ { From df78400481b36627737c43f37a7fdf1d6b687341 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:45:36 +0000 Subject: [PATCH 055/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9595b09e6..9e5134f7d 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342286581, + "UpdateDate": 1770342331816, "Prerelease": true, "UpdateContents": [ { From 301bba69b69e8751e90f6674b37064fc74d491af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:46:24 +0000 Subject: [PATCH 056/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9e5134f7d..fd2696947 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342331816, + "UpdateDate": 1770342379429, "Prerelease": true, "UpdateContents": [ { From f71ac22608037c07bcf42d907dc0ce6e677740ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:47:19 +0000 Subject: [PATCH 057/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index fd2696947..d1f62980e 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342379429, + "UpdateDate": 1770342433900, "Prerelease": true, "UpdateContents": [ { From 5c1407325d7fa3a0bd712f2aa5075a7f303e6430 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:48:02 +0000 Subject: [PATCH 058/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d1f62980e..8f48596e5 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342433900, + "UpdateDate": 1770342476583, "Prerelease": true, "UpdateContents": [ { From 4afe5df09e92ee9afb0d75dc21fd6d1e49380fef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:48:52 +0000 Subject: [PATCH 059/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8f48596e5..4f785653c 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342476583, + "UpdateDate": 1770342526818, "Prerelease": true, "UpdateContents": [ { From 970ea604dfa7d299438d451009837876d25e1721 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:49:43 +0000 Subject: [PATCH 060/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 4f785653c..00a6190f6 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342526818, + "UpdateDate": 1770342577897, "Prerelease": true, "UpdateContents": [ { From 2314cb9b2c109294b12447063ff29c7e0bc649da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:50:32 +0000 Subject: [PATCH 061/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 00a6190f6..c755c0bd7 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342577897, + "UpdateDate": 1770342627593, "Prerelease": true, "UpdateContents": [ { From b0f2fb5940918b073ad8a6d71653ceabb1ce9eb2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:51:18 +0000 Subject: [PATCH 062/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c755c0bd7..22dbec9b8 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342627593, + "UpdateDate": 1770342672497, "Prerelease": true, "UpdateContents": [ { From 8e5169c9b911736665fdf07a8b166f9b963bbdd8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:52:00 +0000 Subject: [PATCH 063/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 22dbec9b8..9ba466462 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342672497, + "UpdateDate": 1770342715863, "Prerelease": true, "UpdateContents": [ { From 79e48daaccfbad84367bf13f43216aab04ebce25 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:52:49 +0000 Subject: [PATCH 064/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9ba466462..5f224f73d 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342715863, + "UpdateDate": 1770342764268, "Prerelease": true, "UpdateContents": [ { From 9a0d8acf7d8ebe8ea66853e9417abdd2404766ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:53:39 +0000 Subject: [PATCH 065/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5f224f73d..d2b595b6f 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342764268, + "UpdateDate": 1770342813579, "Prerelease": true, "UpdateContents": [ { From 03f81f6fa39d808bfae08b7bcceea0cc8bad5221 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:54:24 +0000 Subject: [PATCH 066/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d2b595b6f..c65560831 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342813579, + "UpdateDate": 1770342859063, "Prerelease": true, "UpdateContents": [ { From 217401b7d62497644a7a53d589fd28fc84dd5759 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:55:18 +0000 Subject: [PATCH 067/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c65560831..61f1481ef 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342859063, + "UpdateDate": 1770342912928, "Prerelease": true, "UpdateContents": [ { From 6031225b1a82145ada94254299f080a241146d6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:56:08 +0000 Subject: [PATCH 068/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 61f1481ef..8c7bc5a40 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342912928, + "UpdateDate": 1770342963368, "Prerelease": true, "UpdateContents": [ { From 19a6da25dafd9a5d4eedda7cc1700828299ede39 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:57:02 +0000 Subject: [PATCH 069/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8c7bc5a40..ac5c5b88a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770342963368, + "UpdateDate": 1770343016804, "Prerelease": true, "UpdateContents": [ { From 917c30d8d80dda9ae34b4ff4bea13284c0ef5bef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:57:53 +0000 Subject: [PATCH 070/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index ac5c5b88a..c9e9303da 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343016804, + "UpdateDate": 1770343068068, "Prerelease": true, "UpdateContents": [ { From 5833710c0ee3c8b28c8869e2ebcaf60bf8a90961 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:58:42 +0000 Subject: [PATCH 071/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c9e9303da..24c4e9034 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343068068, + "UpdateDate": 1770343117142, "Prerelease": true, "UpdateContents": [ { From 6ad898ac5996bd4c1875354f61d02a2320ca6723 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 01:59:30 +0000 Subject: [PATCH 072/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 24c4e9034..f454db8a3 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343117142, + "UpdateDate": 1770343164125, "Prerelease": true, "UpdateContents": [ { From d41c546072c58e00483ee61628e90c3b0efeff87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:00:24 +0000 Subject: [PATCH 073/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f454db8a3..ec6c1b8f5 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343164125, + "UpdateDate": 1770343219733, "Prerelease": true, "UpdateContents": [ { From f615da5f9aabc9b54d766fecfa928c49fbb55f5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:01:29 +0000 Subject: [PATCH 074/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index ec6c1b8f5..f39176bbd 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343219733, + "UpdateDate": 1770343283941, "Prerelease": true, "UpdateContents": [ { From 4c9a9b521d1a8efc7745d2f9e82c80fd0e874f2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:02:20 +0000 Subject: [PATCH 075/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f39176bbd..389120831 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343283941, + "UpdateDate": 1770343334615, "Prerelease": true, "UpdateContents": [ { From 8f30ba0e46c8bb7fb65bb99bb17a7f29bc4a3598 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:03:18 +0000 Subject: [PATCH 076/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 389120831..4e23a8bce 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343334615, + "UpdateDate": 1770343392984, "Prerelease": true, "UpdateContents": [ { From af546bbfee1c03fc235e9ede2f12a9ccc6b89949 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:04:12 +0000 Subject: [PATCH 077/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 4e23a8bce..e89795c11 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343392984, + "UpdateDate": 1770343446762, "Prerelease": true, "UpdateContents": [ { From 10c8b37a6a1e5dcdbbaa695e29a9062f9586641e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:05:05 +0000 Subject: [PATCH 078/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index e89795c11..85e2b837d 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343446762, + "UpdateDate": 1770343499258, "Prerelease": true, "UpdateContents": [ { From 1335aca2dc9eab0dd04d03ed14c25b4ce2ab70e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:05:52 +0000 Subject: [PATCH 079/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 85e2b837d..17275ee47 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343499258, + "UpdateDate": 1770343547317, "Prerelease": true, "UpdateContents": [ { From e87be7956bf7e8d7b03ddb765334bf9b3584c69c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:06:48 +0000 Subject: [PATCH 080/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 17275ee47..06d6a4f7b 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343547317, + "UpdateDate": 1770343602792, "Prerelease": true, "UpdateContents": [ { From 70a8acbb072ded218bb4b189cc9eaac058185097 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:07:39 +0000 Subject: [PATCH 081/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 06d6a4f7b..c2a967647 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343602792, + "UpdateDate": 1770343654757, "Prerelease": true, "UpdateContents": [ { From d5eb35743994e3c470b8d9cfa574df2640cfa14a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:08:27 +0000 Subject: [PATCH 082/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c2a967647..868743ea5 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343654757, + "UpdateDate": 1770343702672, "Prerelease": true, "UpdateContents": [ { From 43de6db0f34053831993ea43803dd49cebee8017 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:09:24 +0000 Subject: [PATCH 083/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 868743ea5..d839976b1 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343702672, + "UpdateDate": 1770343758945, "Prerelease": true, "UpdateContents": [ { From 3990ff516401f51d51b41e8d384f82673e9198c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:10:11 +0000 Subject: [PATCH 084/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d839976b1..1d524527a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343758945, + "UpdateDate": 1770343806198, "Prerelease": true, "UpdateContents": [ { From 5f42fa509c13a44bd55cc4817c12838b20a5b39a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:10:54 +0000 Subject: [PATCH 085/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1d524527a..b044f3653 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343806198, + "UpdateDate": 1770343849738, "Prerelease": true, "UpdateContents": [ { From 696376a5dea665600a38fa1466d035c541ff49ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:11:42 +0000 Subject: [PATCH 086/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b044f3653..1b7d19d8f 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343849738, + "UpdateDate": 1770343896967, "Prerelease": true, "UpdateContents": [ { From 6014824a63e99300bd308bf4e5bd04e1851f82f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:12:27 +0000 Subject: [PATCH 087/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1b7d19d8f..a54986a66 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343896967, + "UpdateDate": 1770343942101, "Prerelease": true, "UpdateContents": [ { From 98bbc1da30f759f7d0c3bfd881f93713de7b1a34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:13:18 +0000 Subject: [PATCH 088/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a54986a66..9c08b02ab 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343942101, + "UpdateDate": 1770343993514, "Prerelease": true, "UpdateContents": [ { From 39827a80a85fef9f8dc5808458a8c7d2e7ce1ef6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:13:59 +0000 Subject: [PATCH 089/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9c08b02ab..3000ed40a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770343993514, + "UpdateDate": 1770344034423, "Prerelease": true, "UpdateContents": [ { From da56928d24f5aec7b13f79e984c893697ac95c96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:14:48 +0000 Subject: [PATCH 090/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 3000ed40a..cf0bb7a5e 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344034423, + "UpdateDate": 1770344082169, "Prerelease": true, "UpdateContents": [ { From 8521ecd3ff1eba93a839834ee3e32980217b4859 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:15:43 +0000 Subject: [PATCH 091/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index cf0bb7a5e..11277cc05 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344082169, + "UpdateDate": 1770344137988, "Prerelease": true, "UpdateContents": [ { From c4d64996ccf0d71c7e240af0853dfee7272b5b7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:16:27 +0000 Subject: [PATCH 092/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 11277cc05..5518a1e69 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344137988, + "UpdateDate": 1770344182381, "Prerelease": true, "UpdateContents": [ { From 769b47ce6d342e8cc249de0eb7ab9b6944ade97e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:17:14 +0000 Subject: [PATCH 093/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5518a1e69..2367cdbdb 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344182381, + "UpdateDate": 1770344228884, "Prerelease": true, "UpdateContents": [ { From ff2a88bc46fd3cf37fa3d09eda4c0f1cf1c30f90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:18:14 +0000 Subject: [PATCH 094/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 2367cdbdb..d286cb6ac 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344228884, + "UpdateDate": 1770344288904, "Prerelease": true, "UpdateContents": [ { From 3f2c95b52ac1007922bb06eaca14e72503f6e55f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:19:02 +0000 Subject: [PATCH 095/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d286cb6ac..9d7bd807f 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344288904, + "UpdateDate": 1770344336843, "Prerelease": true, "UpdateContents": [ { From 26283f5ffa596dd1a83b4373f2c31aab29ec3755 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:19:56 +0000 Subject: [PATCH 096/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9d7bd807f..1be630fbc 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344336843, + "UpdateDate": 1770344391278, "Prerelease": true, "UpdateContents": [ { From 235bc6b04b046f94289229236bae7e795b36bac3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:20:52 +0000 Subject: [PATCH 097/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1be630fbc..056530b08 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344391278, + "UpdateDate": 1770344447673, "Prerelease": true, "UpdateContents": [ { From c04adbc884be8946ef9eb6c836d2c4b2ae715d8d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:21:42 +0000 Subject: [PATCH 098/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 056530b08..e8a88b306 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344447673, + "UpdateDate": 1770344496760, "Prerelease": true, "UpdateContents": [ { From f6848a2f09ae6d9981a44ed38ad9e1ef86018441 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:22:43 +0000 Subject: [PATCH 099/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index e8a88b306..6bf44c670 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344496760, + "UpdateDate": 1770344557815, "Prerelease": true, "UpdateContents": [ { From 5bbc98b8b0abb95fc6ee35ac74797b8dbadc2889 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:23:34 +0000 Subject: [PATCH 100/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6bf44c670..620efb85b 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344557815, + "UpdateDate": 1770344609080, "Prerelease": true, "UpdateContents": [ { From c0e6b9db3a3f692fb4a102934201b962e2903e8c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:24:26 +0000 Subject: [PATCH 101/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 620efb85b..624911c34 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344609080, + "UpdateDate": 1770344660857, "Prerelease": true, "UpdateContents": [ { From 458adff055d91bf97664dce33d63a7fa2c999fcc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:25:24 +0000 Subject: [PATCH 102/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 624911c34..a3ceed876 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344660857, + "UpdateDate": 1770344719144, "Prerelease": true, "UpdateContents": [ { From a9e3abc03d00021b3444892f69e1411ba664c795 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:26:18 +0000 Subject: [PATCH 103/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a3ceed876..fe2a20689 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344719144, + "UpdateDate": 1770344773419, "Prerelease": true, "UpdateContents": [ { From 586839187a8cb7ce60e82111a4f1c55a31e3d272 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:27:19 +0000 Subject: [PATCH 104/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index fe2a20689..5fa4a92eb 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344773419, + "UpdateDate": 1770344833823, "Prerelease": true, "UpdateContents": [ { From bcb6799cf0ea83e63ea349da9938cfeb22424df1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:28:10 +0000 Subject: [PATCH 105/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5fa4a92eb..7755f51e6 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344833823, + "UpdateDate": 1770344885525, "Prerelease": true, "UpdateContents": [ { From c9351abffaedb0c3106db7faeba98888d4a75968 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:29:02 +0000 Subject: [PATCH 106/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 7755f51e6..01eb35290 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344885525, + "UpdateDate": 1770344936295, "Prerelease": true, "UpdateContents": [ { From 2c9996c948d20b41e9b296af9660d8b645d16ccf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:29:50 +0000 Subject: [PATCH 107/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 01eb35290..541060bad 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344936295, + "UpdateDate": 1770344985040, "Prerelease": true, "UpdateContents": [ { From ba55ded9529fea923f43b4f39062f8fcb38d7e19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:30:45 +0000 Subject: [PATCH 108/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 541060bad..91c7b9320 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770344985040, + "UpdateDate": 1770345040515, "Prerelease": true, "UpdateContents": [ { From 2f08172c3a222c9372f3fd6f3c8a464b2a09b87e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:31:53 +0000 Subject: [PATCH 109/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 91c7b9320..f304e99b0 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345040515, + "UpdateDate": 1770345107456, "Prerelease": true, "UpdateContents": [ { From 849ca60369c1537fbc01b34c8c04248b3c6c79f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:32:50 +0000 Subject: [PATCH 110/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f304e99b0..782662370 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345107456, + "UpdateDate": 1770345164339, "Prerelease": true, "UpdateContents": [ { From e0c295f0eebe771ddaafdb4fca13cdf3bc73bbca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:33:49 +0000 Subject: [PATCH 111/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 782662370..781a2bc2e 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345164339, + "UpdateDate": 1770345223311, "Prerelease": true, "UpdateContents": [ { From e50e945148c94d13e03ee835befb666f16186741 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:34:46 +0000 Subject: [PATCH 112/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 781a2bc2e..6b79d708f 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345223311, + "UpdateDate": 1770345280852, "Prerelease": true, "UpdateContents": [ { From 811af5e972023e9dda109dbf0ab85302dd96ccd5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:35:41 +0000 Subject: [PATCH 113/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6b79d708f..b860221f8 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345280852, + "UpdateDate": 1770345335527, "Prerelease": true, "UpdateContents": [ { From 7ebb4bcd237b2a46c51e4024de28bc84effb3e13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:36:27 +0000 Subject: [PATCH 114/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b860221f8..3387eb308 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345335527, + "UpdateDate": 1770345382222, "Prerelease": true, "UpdateContents": [ { From 7de6fc7a0c646b3634e2c2aed76bc387d390c876 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:37:23 +0000 Subject: [PATCH 115/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 3387eb308..9701fb868 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345382222, + "UpdateDate": 1770345438238, "Prerelease": true, "UpdateContents": [ { From 17cfe98ed53956b2edacdc598f6d073e858dc883 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:38:11 +0000 Subject: [PATCH 116/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9701fb868..8335f74c7 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345438238, + "UpdateDate": 1770345485587, "Prerelease": true, "UpdateContents": [ { From dda4af45fd52b382dcf9f86358dc1909b2466220 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:39:09 +0000 Subject: [PATCH 117/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8335f74c7..174ab16ea 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345485587, + "UpdateDate": 1770345543748, "Prerelease": true, "UpdateContents": [ { From 54bfcaf816871c3bd5e80b203feaa1180d436046 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:40:03 +0000 Subject: [PATCH 118/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 174ab16ea..ef9b74176 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345543748, + "UpdateDate": 1770345597280, "Prerelease": true, "UpdateContents": [ { From 3604082d4f2f1d5fb95a75a5adde4f8101b0a4f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 02:40:48 +0000 Subject: [PATCH 119/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index ef9b74176..5300b847e 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345597280, + "UpdateDate": 1770345643110, "Prerelease": true, "UpdateContents": [ { From 83fbba0ec47c0f37a3553e279334f15303c839f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:46:41 +0000 Subject: [PATCH 120/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5300b847e..b5da19b17 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770345643110, + "UpdateDate": 1770356795597, "Prerelease": true, "UpdateContents": [ { From 74e23b85b3bbf6559c04e382d704f2569917eb87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:47:29 +0000 Subject: [PATCH 121/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b5da19b17..3be7516dd 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770356795597, + "UpdateDate": 1770356844173, "Prerelease": true, "UpdateContents": [ { From d35ab4618da0d7eb549a810a87c4588f780af5bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:48:21 +0000 Subject: [PATCH 122/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 3be7516dd..c2777cceb 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770356844173, + "UpdateDate": 1770356896169, "Prerelease": true, "UpdateContents": [ { From fb8e701a3d6ea7343ca5aaf2f938d2629abdbefe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:49:14 +0000 Subject: [PATCH 123/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c2777cceb..50afc52f6 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770356896169, + "UpdateDate": 1770356948881, "Prerelease": true, "UpdateContents": [ { From aa2439fdaa593369ca7dabb0f2f4f9c21cce97ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:50:13 +0000 Subject: [PATCH 124/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 50afc52f6..e36078eed 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770356948881, + "UpdateDate": 1770357007556, "Prerelease": true, "UpdateContents": [ { From acf021e96b3d463401d622bb9ca05a9b5227634e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:50:59 +0000 Subject: [PATCH 125/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index e36078eed..8542fced5 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357007556, + "UpdateDate": 1770357054671, "Prerelease": true, "UpdateContents": [ { From 85128d84569e8a52218ba294250de43907d29e86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:51:50 +0000 Subject: [PATCH 126/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8542fced5..c776b3864 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357054671, + "UpdateDate": 1770357104520, "Prerelease": true, "UpdateContents": [ { From b0ea8a486b47b6d874742c99c861d3f4eedac565 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:52:37 +0000 Subject: [PATCH 127/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c776b3864..494d6a783 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357104520, + "UpdateDate": 1770357151945, "Prerelease": true, "UpdateContents": [ { From ab4050143ddd339ca9293ecf91a8d4728f678249 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:53:23 +0000 Subject: [PATCH 128/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 494d6a783..6735f7414 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357151945, + "UpdateDate": 1770357197719, "Prerelease": true, "UpdateContents": [ { From 35b70fcc93bb59700d437877b01b38c1ae47ffc7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:54:15 +0000 Subject: [PATCH 129/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6735f7414..cb3757fd4 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357197719, + "UpdateDate": 1770357249434, "Prerelease": true, "UpdateContents": [ { From ac028923161302f8c8d2d2c51595a0ba51762f9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:55:02 +0000 Subject: [PATCH 130/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index cb3757fd4..9bba27214 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357249434, + "UpdateDate": 1770357296759, "Prerelease": true, "UpdateContents": [ { From bb16721516b7c7163f46453528f39660497320f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:55:54 +0000 Subject: [PATCH 131/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9bba27214..a82596efd 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357296759, + "UpdateDate": 1770357348603, "Prerelease": true, "UpdateContents": [ { From f42d46dfa47f912e89bd5df58ab554b24302814b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:56:42 +0000 Subject: [PATCH 132/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a82596efd..89491bfda 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357348603, + "UpdateDate": 1770357397197, "Prerelease": true, "UpdateContents": [ { From 4d72bd3f8c65b0dbac4de9246df109b9ffa61ae6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:57:37 +0000 Subject: [PATCH 133/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 89491bfda..8a5910345 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357397197, + "UpdateDate": 1770357452431, "Prerelease": true, "UpdateContents": [ { From e3108babc706a4fca4d3784d9ef76080fba6df26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:58:26 +0000 Subject: [PATCH 134/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8a5910345..de7928a1e 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357452431, + "UpdateDate": 1770357501821, "Prerelease": true, "UpdateContents": [ { From a77378fd2a0256e1e0b925ccf4fefa75b743bd95 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 05:59:16 +0000 Subject: [PATCH 135/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index de7928a1e..dac3a12c8 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357501821, + "UpdateDate": 1770357550999, "Prerelease": true, "UpdateContents": [ { From 6272209e0ca913256ff520131766a634be71ab44 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:00:15 +0000 Subject: [PATCH 136/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index dac3a12c8..def70337d 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357550999, + "UpdateDate": 1770357610171, "Prerelease": true, "UpdateContents": [ { From d968373f7c59237da981864dc7b5f109d4ab8ede Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:01:03 +0000 Subject: [PATCH 137/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index def70337d..6d27990ae 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357610171, + "UpdateDate": 1770357658604, "Prerelease": true, "UpdateContents": [ { From 1d83d768d445ac5eb7c427d638db054ea86ca771 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:01:53 +0000 Subject: [PATCH 138/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6d27990ae..974b426a3 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357658604, + "UpdateDate": 1770357707834, "Prerelease": true, "UpdateContents": [ { From eebe9d44e6bc106a9ca94fde1af69b17b66c8083 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:03:31 +0000 Subject: [PATCH 139/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 974b426a3..d0b7eeec3 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357707834, + "UpdateDate": 1770357805305, "Prerelease": true, "UpdateContents": [ { From 0f60674f9abd901d86fb16f200e273a34e92bb89 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:04:48 +0000 Subject: [PATCH 140/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d0b7eeec3..bf6b4a2ee 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357805305, + "UpdateDate": 1770357883031, "Prerelease": true, "UpdateContents": [ { From d31312d966e8d4a95257ed77999fb8066aff4319 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:05:52 +0000 Subject: [PATCH 141/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index bf6b4a2ee..6260913df 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357883031, + "UpdateDate": 1770357947207, "Prerelease": true, "UpdateContents": [ { From c0d3232f2ba9aa5de1ecc4220a2b4e4cbcb8e362 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:06:38 +0000 Subject: [PATCH 142/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6260913df..29aadeaa6 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357947207, + "UpdateDate": 1770357993569, "Prerelease": true, "UpdateContents": [ { From 296ebcf9d3f79cfb3a9c3eee01d4ea2046b12cff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:07:30 +0000 Subject: [PATCH 143/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 29aadeaa6..0f8e50331 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770357993569, + "UpdateDate": 1770358044214, "Prerelease": true, "UpdateContents": [ { From 334c8ba82d8bba8ca662f25d7021a2eaa7b0cb64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:08:19 +0000 Subject: [PATCH 144/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 0f8e50331..9503eddae 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358044214, + "UpdateDate": 1770358094218, "Prerelease": true, "UpdateContents": [ { From e19b3abb21c4b45678f612b166133f3fcd3d5e9f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:09:00 +0000 Subject: [PATCH 145/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 9503eddae..397295857 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358094218, + "UpdateDate": 1770358135266, "Prerelease": true, "UpdateContents": [ { From ca64ae6836c0648f65301a701f4939a4a2a462b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:09:51 +0000 Subject: [PATCH 146/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 397295857..86989cd50 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358135266, + "UpdateDate": 1770358186016, "Prerelease": true, "UpdateContents": [ { From 6583a14fd32d4b7119c0783a708ab14ddaffd73c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:10:39 +0000 Subject: [PATCH 147/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 86989cd50..d4b72aa34 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358186016, + "UpdateDate": 1770358234558, "Prerelease": true, "UpdateContents": [ { From 01f56da5fe8bb5e4cd8925d911f68eccce4678f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:11:28 +0000 Subject: [PATCH 148/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d4b72aa34..eda4882c7 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358234558, + "UpdateDate": 1770358283192, "Prerelease": true, "UpdateContents": [ { From 267cd45a48c4443e2895857f52b300017209c5a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:12:28 +0000 Subject: [PATCH 149/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index eda4882c7..bcae63f8a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358283192, + "UpdateDate": 1770358342769, "Prerelease": true, "UpdateContents": [ { From b9ebb65997fd3e1429772f539cff92f68ead9be9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:13:20 +0000 Subject: [PATCH 150/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index bcae63f8a..da95c5e61 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358342769, + "UpdateDate": 1770358394486, "Prerelease": true, "UpdateContents": [ { From 55193644e29fd9073b989a5b9d4b751072425021 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:14:10 +0000 Subject: [PATCH 151/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index da95c5e61..cf6d035ed 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358394486, + "UpdateDate": 1770358444888, "Prerelease": true, "UpdateContents": [ { From e3e1d8fba894556156ba85949938afa1e35f7649 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:14:56 +0000 Subject: [PATCH 152/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index cf6d035ed..1a86de034 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358444888, + "UpdateDate": 1770358491166, "Prerelease": true, "UpdateContents": [ { From 4be6ba7ffcaeca8602fbb84f964a4845f3b6a74c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:15:41 +0000 Subject: [PATCH 153/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1a86de034..8c075bd53 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358491166, + "UpdateDate": 1770358536442, "Prerelease": true, "UpdateContents": [ { From 3fcec5212142affb43a669c68826423342647395 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:16:25 +0000 Subject: [PATCH 154/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8c075bd53..d83a44fdb 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358536442, + "UpdateDate": 1770358579449, "Prerelease": true, "UpdateContents": [ { From 58eb5cdcd4790d2326ade1d011c6783c9678f036 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:17:07 +0000 Subject: [PATCH 155/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d83a44fdb..586898217 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358579449, + "UpdateDate": 1770358622044, "Prerelease": true, "UpdateContents": [ { From e45090f7fcc8dcb7863d8466d69162ec9fadfef2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:17:50 +0000 Subject: [PATCH 156/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 586898217..42e5f165a 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358622044, + "UpdateDate": 1770358665674, "Prerelease": true, "UpdateContents": [ { From 94f05b58585565f57e45623755186486de9e899f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:18:32 +0000 Subject: [PATCH 157/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 42e5f165a..6683bfb61 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358665674, + "UpdateDate": 1770358707662, "Prerelease": true, "UpdateContents": [ { From eb6006cf1c19e1ce9a7fb3ef769ffda0ba61efd7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:19:29 +0000 Subject: [PATCH 158/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6683bfb61..fb0edf8e5 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358707662, + "UpdateDate": 1770358763489, "Prerelease": true, "UpdateContents": [ { From fe9a342726141bb37d107dff8636573446990663 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:20:17 +0000 Subject: [PATCH 159/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index fb0edf8e5..a58147d8c 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358763489, + "UpdateDate": 1770358811169, "Prerelease": true, "UpdateContents": [ { From 698726c241cbff4bf4a0bbe52fe2f68adb4be94e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:21:06 +0000 Subject: [PATCH 160/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a58147d8c..c9b7c38dc 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358811169, + "UpdateDate": 1770358860747, "Prerelease": true, "UpdateContents": [ { From ad5204e75b8f8071106fa85513569b050ede3371 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:21:54 +0000 Subject: [PATCH 161/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c9b7c38dc..7b22ed880 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358860747, + "UpdateDate": 1770358908875, "Prerelease": true, "UpdateContents": [ { From 587297e955cf23e43e5cca4654693b7f729f4d79 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Feb 2026 06:22:44 +0000 Subject: [PATCH 162/234] Update time and description of 2.5.3 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 7b22ed880..b2da406bd 100644 --- a/Update.json +++ b/Update.json @@ -3216,7 +3216,7 @@ "Notes": "No release notes were provided for this release." }, "2.5.3": { - "UpdateDate": 1770358908875, + "UpdateDate": 1770358959413, "Prerelease": true, "UpdateContents": [ { From 83609ecd8622b697ad8cbb578992d2c3ae2a7d9b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 14:28:51 +0000 Subject: [PATCH 163/234] Fix infinite recursion in UpdateVersion workflow Co-authored-by: PythonSmall-Q <106425289+PythonSmall-Q@users.noreply.github.com> --- .github/workflows/UpdateVersion.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/UpdateVersion.yml b/.github/workflows/UpdateVersion.yml index ed9c13b32..74a492246 100644 --- a/.github/workflows/UpdateVersion.yml +++ b/.github/workflows/UpdateVersion.yml @@ -14,6 +14,7 @@ jobs: pull-requests: write contents: write runs-on: ubuntu-latest + if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'github-actions[bot]' steps: - name: Generate a token id: generate_token From d4b577a37bda0ed32be5d07c08c5dc330362d84e Mon Sep 17 00:00:00 2001 From: Shan Wenxiao Date: Sat, 7 Feb 2026 08:53:39 +0800 Subject: [PATCH 164/234] Disable npm publish and checkout steps Comment out the checkout and publish steps in the workflow. Signed-off-by: Shan Wenxiao --- .github/workflows/Prerelease.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/Prerelease.yml b/.github/workflows/Prerelease.yml index d775ea9f2..03bfc8971 100644 --- a/.github/workflows/Prerelease.yml +++ b/.github/workflows/Prerelease.yml @@ -21,13 +21,13 @@ jobs: with: node-version: 16 registry-url: https://registry.npmjs.org/ - - uses: actions/checkout@v6 - with: - fetch-depth: 0 - - name: Publish to npm - run: npm publish --provenance - env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} + # - uses: actions/checkout@v6 + # with: + # fetch-depth: 0 + # - name: Publish to npm + # run: npm publish --provenance + # env: + # NODE_AUTH_TOKEN: ${{secrets.npm_token}} - name: Get version env: GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} From 0d01bd81bd3c6de709bad34167e3c0c8ec8ebf3e Mon Sep 17 00:00:00 2001 From: Shan Wenxiao Date: Sat, 7 Feb 2026 08:54:00 +0800 Subject: [PATCH 165/234] Uncomment checkout action in Prerelease workflow Signed-off-by: Shan Wenxiao --- .github/workflows/Prerelease.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Prerelease.yml b/.github/workflows/Prerelease.yml index 03bfc8971..387437f08 100644 --- a/.github/workflows/Prerelease.yml +++ b/.github/workflows/Prerelease.yml @@ -21,9 +21,9 @@ jobs: with: node-version: 16 registry-url: https://registry.npmjs.org/ - # - uses: actions/checkout@v6 - # with: - # fetch-depth: 0 + - uses: actions/checkout@v6 + with: + fetch-depth: 0 # - name: Publish to npm # run: npm publish --provenance # env: From c1d7885ab3814b362d1e943268bc3e67d3c0f8c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:00:20 +0000 Subject: [PATCH 166/234] 2.6.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 442a50857..faa945095 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.5.3", + "version": "2.6.0", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From 8a29ef204241f763ef56efb12d9472ffb256db1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:00:22 +0000 Subject: [PATCH 167/234] Update to release 2.6.0 --- Update.json | 19 +++++++++++++++++++ XMOJ.user.js | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b2da406bd..78f37695b 100644 --- a/Update.json +++ b/Update.json @@ -3225,6 +3225,25 @@ } ], "Notes": "No release notes were provided for this release." + }, + "2.6.0": { + "UpdateDate": 1770426020324, + "Prerelease": false, + "UpdateContents": [ + { + "PR": 876, + "Description": "refactor: simplify SubmitLink selection by querying all anchors and finding by text" + }, + { + "PR": 877, + "Description": "fix: problem PID 可能为 null" + }, + { + "PR": 888, + "Description": "Fix AC code export for 5-digit question IDs" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index 5c71f748b..89b8004e7 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.5.3 +// @version 2.6.0 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen From ca77197e66889de732e5c066ba6f016f53ae76d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:00:34 +0000 Subject: [PATCH 168/234] 2.6.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index faa945095..481eaaa55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.6.0", + "version": "2.6.1", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From 57df3bc789557da9327d1ea5898cca794f88dc39 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:00:35 +0000 Subject: [PATCH 169/234] Update version info to 2.6.1 --- Update.json | 11 +++++++++++ XMOJ.user.js | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 78f37695b..d01fbbbbc 100644 --- a/Update.json +++ b/Update.json @@ -3244,6 +3244,17 @@ } ], "Notes": "No release notes were provided for this release." + }, + "2.6.1": { + "UpdateDate": 1770426035177, + "Prerelease": true, + "UpdateContents": [ + { + "PR": 892, + "Description": "Update to release 2.6.0" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index 89b8004e7..e20193fb7 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.6.0 +// @version 2.6.1 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen From 2a5d2f01bd36aa64ea8e67b066acc1ddb513516a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:01:11 +0000 Subject: [PATCH 170/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index d01fbbbbc..2a176f23a 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426035177, + "UpdateDate": 1770426066160, "Prerelease": true, "UpdateContents": [ { From 7ea068fe7805ea6362115625f6f9ae737f62bcb7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:01:30 +0000 Subject: [PATCH 171/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 2a176f23a..3f4b95208 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426066160, + "UpdateDate": 1770426089140, "Prerelease": true, "UpdateContents": [ { From ade39a9c5d945dbce4d3b7a7c87d456e8289bb4f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:02:01 +0000 Subject: [PATCH 172/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 3f4b95208..6cadf987e 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426089140, + "UpdateDate": 1770426115384, "Prerelease": true, "UpdateContents": [ { From cd4906af844c9cbb7a688fb549f92ae28996bdd9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:02:17 +0000 Subject: [PATCH 173/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6cadf987e..c55a14b5d 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426115384, + "UpdateDate": 1770426136960, "Prerelease": true, "UpdateContents": [ { From b45110211da0b35b0f57b2e0cba20edc8dd9bb19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:02:51 +0000 Subject: [PATCH 174/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c55a14b5d..67c983ac9 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426136960, + "UpdateDate": 1770426166015, "Prerelease": true, "UpdateContents": [ { From a2af9feaeae7d7e2ab8a8dfff40f37dd26dd427c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:04:27 +0000 Subject: [PATCH 175/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 67c983ac9..cbb84a2ea 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426166015, + "UpdateDate": 1770426261887, "Prerelease": true, "UpdateContents": [ { From 414642c7944721d6b8b7e3f380d1bb4b032b3241 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:05:13 +0000 Subject: [PATCH 176/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index cbb84a2ea..a138b0ead 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426261887, + "UpdateDate": 1770426308245, "Prerelease": true, "UpdateContents": [ { From 9a5b5de5b2743b286125d3162f32b1c7280d1b45 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:05:59 +0000 Subject: [PATCH 177/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a138b0ead..7f158ee98 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426308245, + "UpdateDate": 1770426354000, "Prerelease": true, "UpdateContents": [ { From 92f70773bbfd7c96d3ab66fcf714d5b59f89ccf0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:06:46 +0000 Subject: [PATCH 178/234] Update time and description of 2.6.1 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 7f158ee98..a1349eaf8 100644 --- a/Update.json +++ b/Update.json @@ -3246,7 +3246,7 @@ "Notes": "No release notes were provided for this release." }, "2.6.1": { - "UpdateDate": 1770426354000, + "UpdateDate": 1770426401298, "Prerelease": true, "UpdateContents": [ { From 817c130be078a74b557028eaa849411044af9d23 Mon Sep 17 00:00:00 2001 From: Shan Wenxiao Date: Sat, 7 Feb 2026 09:12:49 +0800 Subject: [PATCH 179/234] Update XMOJ.user.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Shan Wenxiao --- XMOJ.user.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/XMOJ.user.js b/XMOJ.user.js index e20193fb7..90653c02b 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -3008,8 +3008,11 @@ async function main() { let digitMatch = headerLine.match(/\d+/); if (!digitMatch) continue; let CurrentQuestionID = digitMatch[0]; - let newlinePos = CurrentCode.indexOf('\n'); - CurrentCode = CurrentCode.slice(newlinePos + 1); + let bodyStart = lineBreakPos + 1; + if (CurrentCode[lineBreakPos] === '\r' && CurrentCode[lineBreakPos + 1] === '\n') { + bodyStart = lineBreakPos + 2; + } + CurrentCode = CurrentCode.slice(bodyStart); CurrentCode = CurrentCode.replaceAll("\r", ""); Zip.file(CurrentQuestionID + ".cpp", CurrentCode); } From 4cdc54d72345afdae634af15b10204a505e2d2e5 Mon Sep 17 00:00:00 2001 From: Shan Wenxiao Date: Sat, 7 Feb 2026 09:13:55 +0800 Subject: [PATCH 180/234] Modify UpdateToRelease workflow for bot triggers Add condition to skip bot-triggered events and update PR number reference. Signed-off-by: Shan Wenxiao --- .github/workflows/UpdateToRelease.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/UpdateToRelease.yml b/.github/workflows/UpdateToRelease.yml index c66ae4381..5f82aa0fb 100644 --- a/.github/workflows/UpdateToRelease.yml +++ b/.github/workflows/UpdateToRelease.yml @@ -11,6 +11,8 @@ on: jobs: UpdateToRelease: runs-on: ubuntu-latest + # 添加条件:如果是 bot 触发的则跳过,避免无限循环 + if: github.event.pull_request.user.login != 'github-actions[bot]' permissions: pull-requests: write contents: write @@ -25,7 +27,7 @@ jobs: gh pr comment ${{ github.event.pull_request.number }} --body "请向\`dev\`分支提交pull request, 本pull request将被自动关闭" gh pr close ${{ github.event.pull_request.number }} else - node ./Update/UpdateToRelease.js ${{ secrets.GITHUB_TOKEN }} ${{ github.event.number }} "$PR_BODY" + node ./Update/UpdateToRelease.js ${{ secrets.GITHUB_TOKEN }} ${{ github.event.pull_request.number }} "$PR_BODY" fi env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 1dab5cabbcf01ffc4b67d004d168f77acd2d5660 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:14:43 +0000 Subject: [PATCH 181/234] 2.7.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 481eaaa55..50b6dc79e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.6.1", + "version": "2.7.0", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From d2e3f75a27c3704fcae5ef90a41a16c3fc4f18f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:14:44 +0000 Subject: [PATCH 182/234] Update to release 2.7.0 --- Update.json | 11 +++++++++++ XMOJ.user.js | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a1349eaf8..c10e9b709 100644 --- a/Update.json +++ b/Update.json @@ -3255,6 +3255,17 @@ } ], "Notes": "No release notes were provided for this release." + }, + "2.7.0": { + "UpdateDate": 1770426883598, + "Prerelease": false, + "UpdateContents": [ + { + "PR": 892, + "Description": "Update to release 2.6.0" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index 90653c02b..4b501f8b0 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.6.1 +// @version 2.7.0 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen From 7e6bf2b71098b4ca4454512697a9363a97c839a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:14:55 +0000 Subject: [PATCH 183/234] 2.7.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 50b6dc79e..7cc766d6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.7.0", + "version": "2.7.1", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From 4004cc450b707804870a253bb0805c1bb4ffe771 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:14:56 +0000 Subject: [PATCH 184/234] Update version info to 2.7.1 --- Update.json | 11 +++++++++++ XMOJ.user.js | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c10e9b709..c48d22fe7 100644 --- a/Update.json +++ b/Update.json @@ -3266,6 +3266,17 @@ } ], "Notes": "No release notes were provided for this release." + }, + "2.7.1": { + "UpdateDate": 1770426896026, + "Prerelease": true, + "UpdateContents": [ + { + "PR": 895, + "Description": "Update to release 2.7.0" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index 4b501f8b0..f142c6e5f 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.7.0 +// @version 2.7.1 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen From f4f26e6e0314193b7fb7f132335dd1a8797fa373 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:15:20 +0000 Subject: [PATCH 185/234] 2.7.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7cc766d6f..d558b7acf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xmoj-script", - "version": "2.7.1", + "version": "2.7.2", "description": "an improvement script for xmoj.tech", "main": "AddonScript.js", "scripts": { From dd3cce0264911b19bb670c25ce4b2f6e0554e3a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:15:26 +0000 Subject: [PATCH 186/234] Update version info to 2.7.2 --- Update.json | 11 +++++++++++ XMOJ.user.js | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Update.json b/Update.json index c48d22fe7..ed14ad87c 100644 --- a/Update.json +++ b/Update.json @@ -3277,6 +3277,17 @@ } ], "Notes": "No release notes were provided for this release." + }, + "2.7.2": { + "UpdateDate": 1770426921296, + "Prerelease": true, + "UpdateContents": [ + { + "PR": 896, + "Description": "Update to release 2.7.0" + } + ], + "Notes": "No release notes were provided for this release." } } } \ No newline at end of file diff --git a/XMOJ.user.js b/XMOJ.user.js index f142c6e5f..035aa0e00 100644 --- a/XMOJ.user.js +++ b/XMOJ.user.js @@ -1,6 +1,6 @@ // ==UserScript== // @name XMOJ -// @version 2.7.1 +// @version 2.7.2 // @description XMOJ增强脚本 // @author @XMOJ-Script-dev, @langningchen and the community // @namespace https://github/langningchen From 946553f14826c59acbda4c60a95ba57ea26ce7b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:15:37 +0000 Subject: [PATCH 187/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index ed14ad87c..6841bafdc 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770426921296, + "UpdateDate": 1770426936811, "Prerelease": true, "UpdateContents": [ { From a5f2acddedb8ccc26d1c0b009838572e476a03c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:16:12 +0000 Subject: [PATCH 188/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6841bafdc..a5df2e9fa 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770426936811, + "UpdateDate": 1770426967116, "Prerelease": true, "UpdateContents": [ { From 973aaeaa83384a88fe2234ff316798a19a8604d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:17:09 +0000 Subject: [PATCH 189/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a5df2e9fa..0b2cca864 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770426967116, + "UpdateDate": 1770427023962, "Prerelease": true, "UpdateContents": [ { From d383af3a515d5aa9d52dc0aaa4a51aa4748b1167 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:17:57 +0000 Subject: [PATCH 190/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 0b2cca864..ccf9d1dbb 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427023962, + "UpdateDate": 1770427072670, "Prerelease": true, "UpdateContents": [ { From 41832658008ccc535a5224b8655be7456ad14e6d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:18:48 +0000 Subject: [PATCH 191/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index ccf9d1dbb..fe01abe90 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427072670, + "UpdateDate": 1770427122813, "Prerelease": true, "UpdateContents": [ { From e42dce2971a57af207e9ea868bc6af40a93ba67d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:19:37 +0000 Subject: [PATCH 192/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index fe01abe90..cae338abd 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427122813, + "UpdateDate": 1770427172444, "Prerelease": true, "UpdateContents": [ { From 6d059837009ffc7c003257e8f1d694cb8574093a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:20:25 +0000 Subject: [PATCH 193/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index cae338abd..97ed9e6d8 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427172444, + "UpdateDate": 1770427219574, "Prerelease": true, "UpdateContents": [ { From d66370d556788bca500c5e2c7cdd88d1ee37f620 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:21:10 +0000 Subject: [PATCH 194/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 97ed9e6d8..7c0d82e60 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427219574, + "UpdateDate": 1770427265993, "Prerelease": true, "UpdateContents": [ { From fa78980255688ef659743c908b0d3ddb6d014251 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:22:04 +0000 Subject: [PATCH 195/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 7c0d82e60..58e2d4c48 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427265993, + "UpdateDate": 1770427318371, "Prerelease": true, "UpdateContents": [ { From 114fbd1373e19f05fec3e1ea33ce5766bda44fc4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:22:45 +0000 Subject: [PATCH 196/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 58e2d4c48..6b036c7dc 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427318371, + "UpdateDate": 1770427360184, "Prerelease": true, "UpdateContents": [ { From d6ba9865dfab17625607a3938ec2eb54b7240b04 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:23:37 +0000 Subject: [PATCH 197/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 6b036c7dc..b00faf6d8 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427360184, + "UpdateDate": 1770427411451, "Prerelease": true, "UpdateContents": [ { From d6ac92b2b48006924857c4a6b51961ac5519b7d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:24:25 +0000 Subject: [PATCH 198/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b00faf6d8..541f874cd 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427411451, + "UpdateDate": 1770427459910, "Prerelease": true, "UpdateContents": [ { From 847343a4817c6f9e1a53eb26ea210e78eb325878 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:25:13 +0000 Subject: [PATCH 199/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 541f874cd..acd449998 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427459910, + "UpdateDate": 1770427507946, "Prerelease": true, "UpdateContents": [ { From 2b94ef208a895f763cb3c47a87baa145e2658933 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:26:04 +0000 Subject: [PATCH 200/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index acd449998..b4a672231 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427507946, + "UpdateDate": 1770427558834, "Prerelease": true, "UpdateContents": [ { From 7a3a0b99d373b786f866f0b0be9bb0e381f48c90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:26:51 +0000 Subject: [PATCH 201/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b4a672231..8cf094628 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427558834, + "UpdateDate": 1770427606893, "Prerelease": true, "UpdateContents": [ { From f50ae308d614b4bc082154fcebb7c57d12248cea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:27:34 +0000 Subject: [PATCH 202/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8cf094628..aee96336f 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427606893, + "UpdateDate": 1770427649744, "Prerelease": true, "UpdateContents": [ { From d3fd5d60bd420b5637c8734299742d81d5586921 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:28:20 +0000 Subject: [PATCH 203/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index aee96336f..8c0d7a552 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427649744, + "UpdateDate": 1770427694565, "Prerelease": true, "UpdateContents": [ { From 4e61ec497b4cec5151f78056762cc0727984e052 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:29:10 +0000 Subject: [PATCH 204/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 8c0d7a552..1c7623525 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427694565, + "UpdateDate": 1770427745530, "Prerelease": true, "UpdateContents": [ { From a0376cbdbf2a8641dda106545d55a51f9b02cc14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:30:03 +0000 Subject: [PATCH 205/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1c7623525..4bec2963a 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427745530, + "UpdateDate": 1770427798193, "Prerelease": true, "UpdateContents": [ { From b64bcba335e878a1b899c141905d5d8d3ebe8d54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:30:45 +0000 Subject: [PATCH 206/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 4bec2963a..b27fe1e6a 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427798193, + "UpdateDate": 1770427840190, "Prerelease": true, "UpdateContents": [ { From fb1037a3a4f4d94cf73af8936e4e72eca90b7765 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:31:32 +0000 Subject: [PATCH 207/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b27fe1e6a..cb62b2f45 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427840190, + "UpdateDate": 1770427886849, "Prerelease": true, "UpdateContents": [ { From c13fda116003c871cc0407b42bf83229535b8fad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:32:20 +0000 Subject: [PATCH 208/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index cb62b2f45..2530c78a4 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427886849, + "UpdateDate": 1770427934611, "Prerelease": true, "UpdateContents": [ { From acd56865267a305b1419b1d04764fde792250833 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:33:02 +0000 Subject: [PATCH 209/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 2530c78a4..df0822461 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427934611, + "UpdateDate": 1770427976877, "Prerelease": true, "UpdateContents": [ { From 7909fea289d594227c2a92c92d059c1d64d36a9e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:33:45 +0000 Subject: [PATCH 210/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index df0822461..0e30cd6a8 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770427976877, + "UpdateDate": 1770428020390, "Prerelease": true, "UpdateContents": [ { From ea460a3364dbcc84f02c7cbf244f565a426e50dd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:34:31 +0000 Subject: [PATCH 211/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 0e30cd6a8..f71b0b90b 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428020390, + "UpdateDate": 1770428066199, "Prerelease": true, "UpdateContents": [ { From c0035721cb8a08d807b6861bcca4e8b27707b14c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:35:17 +0000 Subject: [PATCH 212/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f71b0b90b..677271c74 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428066199, + "UpdateDate": 1770428111506, "Prerelease": true, "UpdateContents": [ { From 48319db28104be9fdd6ea4c2bebcb6b6acb7c0a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:36:07 +0000 Subject: [PATCH 213/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 677271c74..5874adc1c 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428111506, + "UpdateDate": 1770428162437, "Prerelease": true, "UpdateContents": [ { From b7c8eda1f686945d3b1894acc944785e7cb54582 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:37:03 +0000 Subject: [PATCH 214/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5874adc1c..70d6c9f12 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428162437, + "UpdateDate": 1770428218056, "Prerelease": true, "UpdateContents": [ { From 25247b80e2a48175d15f7a9256a133381b749431 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:38:00 +0000 Subject: [PATCH 215/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 70d6c9f12..5bab847cf 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428218056, + "UpdateDate": 1770428275008, "Prerelease": true, "UpdateContents": [ { From 694e55c9039f650a9df085a39a11fcfe8d1cd4f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:38:47 +0000 Subject: [PATCH 216/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5bab847cf..020783c63 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428275008, + "UpdateDate": 1770428321382, "Prerelease": true, "UpdateContents": [ { From 6bb6ab8a24301c71b7b6d802db9f1dc6d30cf012 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:39:30 +0000 Subject: [PATCH 217/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 020783c63..dfa2a5ee3 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428321382, + "UpdateDate": 1770428365446, "Prerelease": true, "UpdateContents": [ { From a18af6069f4a2221d98803e6526dc7be5b796126 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:40:19 +0000 Subject: [PATCH 218/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index dfa2a5ee3..ba53e1491 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428365446, + "UpdateDate": 1770428414116, "Prerelease": true, "UpdateContents": [ { From 12cc69df545c4e7e0e12a1f65fb1208ec0abe6aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:41:08 +0000 Subject: [PATCH 219/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index ba53e1491..87727c642 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428414116, + "UpdateDate": 1770428463255, "Prerelease": true, "UpdateContents": [ { From 7dd378621fde55a235ac342019ce76ef40493203 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:41:50 +0000 Subject: [PATCH 220/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 87727c642..376392f45 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428463255, + "UpdateDate": 1770428505475, "Prerelease": true, "UpdateContents": [ { From cc59f735f56c8cf6fad205e6dff134de1f5682e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:42:32 +0000 Subject: [PATCH 221/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 376392f45..5ccf95ae1 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428505475, + "UpdateDate": 1770428547875, "Prerelease": true, "UpdateContents": [ { From 4506bcac15bcd6b26348ad2f320dec3e8ac1e6f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:43:17 +0000 Subject: [PATCH 222/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 5ccf95ae1..b7aadb3c7 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428547875, + "UpdateDate": 1770428592452, "Prerelease": true, "UpdateContents": [ { From bcc062a295bea3fbc3c0e60167c6705e08bd5a64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:44:05 +0000 Subject: [PATCH 223/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index b7aadb3c7..120f89ca3 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428592452, + "UpdateDate": 1770428639368, "Prerelease": true, "UpdateContents": [ { From f0df2647d95ea032f32c002d265cf9dc6a546d7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:44:48 +0000 Subject: [PATCH 224/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 120f89ca3..2c5b0d44c 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428639368, + "UpdateDate": 1770428683458, "Prerelease": true, "UpdateContents": [ { From b621ef858fcbae989108cd325ae39a34fc4dfe43 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:45:38 +0000 Subject: [PATCH 225/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 2c5b0d44c..1b8dd64a1 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428683458, + "UpdateDate": 1770428732859, "Prerelease": true, "UpdateContents": [ { From 8ead8ad23f86115bef82aa2dd3c1005556538b7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:46:21 +0000 Subject: [PATCH 226/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 1b8dd64a1..cabc008e3 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428732859, + "UpdateDate": 1770428775786, "Prerelease": true, "UpdateContents": [ { From 81f4b7212323b081c30577626c4988904c37f56a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:47:06 +0000 Subject: [PATCH 227/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index cabc008e3..f9a785f81 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428775786, + "UpdateDate": 1770428820953, "Prerelease": true, "UpdateContents": [ { From 5bbee39e80ec46dc2c1367e4606c78eabdd6209d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:47:51 +0000 Subject: [PATCH 228/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f9a785f81..e82b30232 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428820953, + "UpdateDate": 1770428866529, "Prerelease": true, "UpdateContents": [ { From 852c3cd890059fde24763d1cd0b1d60ad1c25c1b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:48:40 +0000 Subject: [PATCH 229/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index e82b30232..abc46d0a1 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428866529, + "UpdateDate": 1770428914092, "Prerelease": true, "UpdateContents": [ { From a84afef2701a8b6fe5184694042fa659d1fc3410 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:49:32 +0000 Subject: [PATCH 230/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index abc46d0a1..f098cfb4c 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428914092, + "UpdateDate": 1770428966720, "Prerelease": true, "UpdateContents": [ { From 62a39b1b7ff129ba18a6fdf06d982678c5285424 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:50:16 +0000 Subject: [PATCH 231/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index f098cfb4c..020f7662e 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770428966720, + "UpdateDate": 1770429010505, "Prerelease": true, "UpdateContents": [ { From 85ebfbef87a5bba17b025227bbb380bd932054b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:50:58 +0000 Subject: [PATCH 232/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index 020f7662e..a60960a54 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770429010505, + "UpdateDate": 1770429053809, "Prerelease": true, "UpdateContents": [ { From b3de29a75679816115c7e89d15f82389872f2174 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:51:40 +0000 Subject: [PATCH 233/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index a60960a54..e8c83cd11 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770429053809, + "UpdateDate": 1770429095668, "Prerelease": true, "UpdateContents": [ { From 8abf9ea07e20fc62115621c12c3c5230cfa96132 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 01:52:28 +0000 Subject: [PATCH 234/234] Update time and description of 2.7.2 --- Update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update.json b/Update.json index e8c83cd11..1c7bd178f 100644 --- a/Update.json +++ b/Update.json @@ -3279,7 +3279,7 @@ "Notes": "No release notes were provided for this release." }, "2.7.2": { - "UpdateDate": 1770429095668, + "UpdateDate": 1770429143486, "Prerelease": true, "UpdateContents": [ {