typed-factorio 0.13.1 → 0.13.2

Sign up to get free protection for your applications and to get access to all the features.
package/Changelog.md CHANGED
@@ -1,6 +1,9 @@
1
- # v0.13.1
1
+ # v0.13.2
2
2
 
3
3
  - Fix: resize_to_sprite property should not be on subclass sprite-button
4
+ - Fix: ChooseElemButtonSpec filters should be named elem_filters
5
+ - Switch back to `/latest` api docs link
6
+ - New version of web api docs is now active
4
7
 
5
8
  # v0.13.0
6
9
 
@@ -7,62 +7,62 @@
7
7
  * numbers, when a function takes a float, the game engine will immediately convert the double-precision number to
8
8
  * single-precision.
9
9
  *
10
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#float View documentation}
10
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#float View documentation}
11
11
  */
12
12
  type float = number
13
13
 
14
14
  /**
15
15
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
16
16
  *
17
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#double View documentation}
17
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#double View documentation}
18
18
  */
19
19
  type double = number
20
20
 
21
21
  /**
22
22
  * 32-bit signed integer. Possible values are -2,147,483,648 to 2,147,483,647.
23
23
  *
24
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#int View documentation}
24
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#int View documentation}
25
25
  */
26
26
  type int = number
27
27
 
28
28
  /**
29
29
  * 8-bit signed integer. Possible values are -128 to 127.
30
30
  *
31
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#int8 View documentation}
31
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#int8 View documentation}
32
32
  */
33
33
  type int8 = number
34
34
 
35
35
  /**
36
36
  * 32-bit unsigned integer. Possible values are 0 to 4,294,967,295.
37
37
  *
38
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#uint View documentation}
38
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#uint View documentation}
39
39
  */
40
40
  type uint = number
41
41
 
42
42
  /**
43
43
  * 8-bit unsigned integer. Possible values are 0 to 255.
44
44
  *
45
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#uint8 View documentation}
45
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#uint8 View documentation}
46
46
  */
47
47
  type uint8 = number
48
48
 
49
49
  /**
50
50
  * 16-bit unsigned integer. Possible values are 0 to 65535.
51
51
  *
52
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#uint16 View documentation}
52
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#uint16 View documentation}
53
53
  */
54
54
  type uint16 = number
55
55
 
56
56
  /**
57
57
  * 64-bit unsigned integer. Possible values are 0 to 18,446,744,073,709,551,615.
58
58
  *
59
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#uint64 View documentation}
59
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#uint64 View documentation}
60
60
  */
61
61
  type uint64 = number
62
62
 
63
63
  /**
64
64
  * Tables are enclosed in curly brackets, like this `{}`
65
65
  *
66
- * {@link https://lua-api.factorio.com/next/Builtin-Types.html#table View documentation}
66
+ * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#table View documentation}
67
67
  */
68
68
  type table = object