mirror of
https://github.com/godotengine/issue-stats.git
synced 2026-01-01 01:48:12 +03:00
Remove very old macOS, Android and iOS versions in build.py
This fixes some entries being shown with invalid colors in the chart legend, as they no longer had associated colors. Each of these had a very low number of reports anyway (usually 0).
This commit is contained in:
9
build.py
9
build.py
@@ -435,11 +435,6 @@ def main() -> None:
|
||||
or "macosmojave" in system_information_trimmed
|
||||
):
|
||||
statistics["os"]["macos"]["macos_10.14"].add(user)
|
||||
elif (
|
||||
"macos10.13" in system_information_trimmed
|
||||
or "macoshighsierra" in system_information_trimmed
|
||||
):
|
||||
statistics["os"]["macos"]["macos_10.13"].add(user)
|
||||
elif "macos" in system_information_trimmed:
|
||||
statistics["os"]["macos"]["unknown"].add(user)
|
||||
|
||||
@@ -463,8 +458,6 @@ def main() -> None:
|
||||
statistics["os"]["android"]["android_8"].add(user)
|
||||
elif "android7" in system_information_trimmed:
|
||||
statistics["os"]["android"]["android_7"].add(user)
|
||||
elif "android6" in system_information_trimmed:
|
||||
statistics["os"]["android"]["android_6"].add(user)
|
||||
elif "android" in system_information_trimmed:
|
||||
statistics["os"]["android"]["unknown"].add(user)
|
||||
|
||||
@@ -484,8 +477,6 @@ def main() -> None:
|
||||
statistics["os"]["ios"]["ios_13"].add(user)
|
||||
elif "ios12" in system_information_trimmed:
|
||||
statistics["os"]["ios"]["ios_12"].add(user)
|
||||
elif "ios11" in system_information_trimmed:
|
||||
statistics["os"]["ios"]["ios_11"].add(user)
|
||||
elif "ios" in system_information_trimmed:
|
||||
statistics["os"]["ios"]["unknown"].add(user)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user