@rpgm-tools/neo-angband-core 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/mod/save-blocks.d.ts +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ import { Rng, ENGINE_VERSION, PARITY_BASELINE } from "@rpgm-tools/neo-angband-co
|
|
|
32
32
|
const rng = new Rng(1234);
|
|
33
33
|
console.log(rng.damroll(3, 6), rng.damroll(3, 6), rng.damroll(3, 6)); // 9 13 8
|
|
34
34
|
|
|
35
|
-
console.log(ENGINE_VERSION, PARITY_BASELINE); // 1.
|
|
35
|
+
console.log(ENGINE_VERSION, PARITY_BASELINE); // 1.3.0 4.2.6
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
Two entry points:
|
|
@@ -145,7 +145,7 @@ export type OrphanStore = Record<string, OrphanEntry[]>;
|
|
|
145
145
|
* core pack outright, and versionMap's versions are only ever used to key
|
|
146
146
|
* quarantined MOD entities. An existing save keeps whatever it recorded.
|
|
147
147
|
*/
|
|
148
|
-
export declare const CORE_PACK_VERSION = "1.
|
|
148
|
+
export declare const CORE_PACK_VERSION = "1.3.0";
|
|
149
149
|
/** A core-only manifest: the base game with no mods, deterministic. */
|
|
150
150
|
export declare function coreOnlyManifest(): SaveManifest;
|
|
151
151
|
/**
|
package/dist/version.d.ts
CHANGED
|
@@ -22,5 +22,5 @@ export declare const PARITY_BASELINE = "4.2.6";
|
|
|
22
22
|
* warrants, because a published tag is pinned by digest in a catalogue and
|
|
23
23
|
* must never be moved.
|
|
24
24
|
*/
|
|
25
|
-
export declare const ENGINE_VERSION = "1.
|
|
25
|
+
export declare const ENGINE_VERSION = "1.3.0";
|
|
26
26
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -22,5 +22,5 @@ export const PARITY_BASELINE = "4.2.6";
|
|
|
22
22
|
* warrants, because a published tag is pinned by digest in a catalogue and
|
|
23
23
|
* must never be moved.
|
|
24
24
|
*/
|
|
25
|
-
export const ENGINE_VERSION = "1.
|
|
25
|
+
export const ENGINE_VERSION = "1.3.0";
|
|
26
26
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
package/src/version.ts
CHANGED