Author SHA1 Message Date
ff14wedandgithub-actions[bot] 0d851d2d4f Update for 7.45h (2026.03.07.0000.0000) 2026-03-11 08:31:58 +00:00
FlawedandGitHub 65e6d9a197 Hack to support hotfixes for now
Will make this check more robust later
2026-03-11 01:30:39 -07:00
4 changed files with 7494 additions and 1468 deletions
+2 -2
View File
@@ -131,8 +131,8 @@ def extract_patch_version(html):
if not html or not (m := re.search(r"patch\s+(\d+\.\d+)", html, re.I)): if not html or not (m := re.search(r"patch\s+(\d+\.\d+)", html, re.I)):
return None return None
v = m.group(1) v = m.group(1)
return v + "0" if len(v.split(".")[1]) == 1 else v v = v + "0" if len(v.split(".")[1]) == 1 else v
return v + "h" if "HotFixes" in html else v
def is_maintenance_post(title): def is_maintenance_post(title):
"""Returns True if the title represents a primary world maintenance post.""" """Returns True if the title represents a primary world maintenance post."""
+1 -1
View File
@@ -132,7 +132,7 @@
"version_string": "2026.02.20.0000.0000" "version_string": "2026.02.20.0000.0000"
}, },
{ {
"retail_version": "7.45", "retail_version": "7.45h",
"version_string": "2026.03.07.0000.0000" "version_string": "2026.03.07.0000.0000"
} }
] ]
+1465 -1465
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff