typed-factorio 0.18.1 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
package/Changelog.md CHANGED
@@ -1,3 +1,13 @@
1
+ # v0.19.0
2
+
3
+ - Updated to factorio version 1.1.53
4
+ - Updated to json api version 2
5
+ - Improved documentation comments
6
+
7
+ ## Changes
8
+
9
+ - `Position`, `PositionArray`, and `PositionTable` have been replaced by `MapPosition`, `MapPositionArray`, and `MapPositionTable` respectively. These are now deprecated and may be removed in a future version.
10
+
1
11
  # v0.18.1
2
12
 
3
13
  - `TechnologyIdentification` now also has a more specific type when read.
@@ -3,9 +3,7 @@
3
3
  /** @noSelfInFile */
4
4
 
5
5
  /**
6
- * A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision
7
- * numbers, when a function takes a float, the game engine will immediately convert the double-precision number to
8
- * single-precision.
6
+ * A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
9
7
  *
10
8
  * {@link https://lua-api.factorio.com/latest/Builtin-Types.html#float View documentation}
11
9
  */