1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-11-21 15:44:24 +00:00

Added all the versions I know of.

This commit is contained in:
Dale Floer 2020-05-29 23:36:44 -07:00
parent 8d07171ef9
commit 4fbc952d4e

View file

@ -7,19 +7,50 @@ class Version:
__slots__ = ("id", )
_version_ids = {
12: "1.0.5",
20: "1.0.6",
22: "1.0.6.1",
37: "1.1.1",
39: "1.1.2",
67: "1.2",
71: "1.2.0.3.1",
72: "1.2.1.1",
73: "1.2.1.2",
77: "1.2.2",
104: "1.2.3",
94: "1.2.3.1",
# 104: "1.2.3", This seems like a typo?
101: "1.2.4",
102: "1.2.4.1",
140: "1.3.0.1",
146: "1.3.0.1",
147: "1.3.0.2",
149: "1.3.0.3",
151: "1.3.0.4",
153: "1.3.0.5",
154: "1.3.0.6",
155: "1.3.0.7",
156: "1.3.0.8",
168: "1.3.1",
169: "1.3.1.1",
170: "1.3.2",
173: "1.3.2.1",
174: "1.3.3",
175: "1.3.3.1",
176: "1.3.3.2",
177: "1.3.3.3",
178: "1.3.4",
194: "1.3.5.3"
185: "1.3.4.1",
186: "1.3.4.2",
187: "1.3.4.3",
188: "1.3.4.4",
191: "1.3.5",
192: "1.3.5.1",
193: "1.3.5.2",
194: "1.3.5.3",
225: "1.4.0.1",
226: "1.4.0.2",
227: "1.4.0.3",
228: "1.4.0.4",
}
def __init__(self, data: typing.Union[int, str]):