@thi.ng/timestep 0.5.0 → 0.5.1

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-10-27T16:56:24Z
3
+ - **Last updated**: 2023-10-30T14:31:56Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -13,6 +13,7 @@ This project is part of the
13
13
  - [About](#about)
14
14
  - [Managing fixed timestep updates](#managing-fixed-timestep-updates)
15
15
  - [Status](#status)
16
+ - [Related packages](#related-packages)
16
17
  - [Installation](#installation)
17
18
  - [Dependencies](#dependencies)
18
19
  - [Usage examples](#usage-examples)
@@ -133,6 +134,10 @@ after 1 second (25 frames)...
133
134
 
134
135
  [Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Btimestep%5D+in%3Atitle)
135
136
 
137
+ ## Related packages
138
+
139
+ - [@thi.ng/boids](https://github.com/thi-ng/umbrella/tree/develop/packages/boids) - n-dimensional boids simulation with highly configurable behaviors
140
+
136
141
  ## Installation
137
142
 
138
143
  ```bash
@@ -163,11 +168,9 @@ Package sizes (brotli'd, pre-treeshake): ESM: 821 bytes
163
168
 
164
169
  ## Usage examples
165
170
 
166
- Several demos in this repo's
171
+ One project in this repo's
167
172
  [/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
168
- directory are using this package.
169
-
170
- A selection:
173
+ directory is using this package:
171
174
 
172
175
  | Screenshot | Description | Live demo | Source |
173
176
  |:-------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------|:--------------------------------------------------|:-------------------------------------------------------------------------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/timestep",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Deterministic fixed timestep simulation updates with state interpolation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,8 +35,8 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@thi.ng/api": "^8.9.6",
38
- "@thi.ng/math": "^5.7.0",
39
- "@thi.ng/vectors": "^7.8.0"
38
+ "@thi.ng/math": "^5.7.1",
39
+ "@thi.ng/vectors": "^7.8.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@microsoft/api-extractor": "^7.38.0",
@@ -85,8 +85,11 @@
85
85
  }
86
86
  },
87
87
  "thi.ng": {
88
+ "related": [
89
+ "boids"
90
+ ],
88
91
  "status": "alpha",
89
92
  "year": 2023
90
93
  },
91
- "gitHead": "502e8fa937677ff7bc4fbd0906d8c8b4b0b471e5\n"
94
+ "gitHead": "bfa16829786146bd24df3cdbd44649a45a603e44\n"
92
95
  }