Skip to content

Commit bc535a9

Browse files
Publish
1 parent dc2df09 commit bc535a9

22 files changed

Lines changed: 78 additions & 40 deletions

File tree

packages/arcball/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
- **Last updated**: 2026-07-02T14:22:51Z
3+
- **Last updated**: 2026-07-16T20:38:41Z
44
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
55

66
All notable changes to this project will be documented in this file.
@@ -11,6 +11,15 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
1111
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
1212
and/or version bumps of transitive dependencies.
1313

14+
## [1.2.0](https://codeberg.org/thi.ng/umbrella/src/tag/@thi.ng/arcball@1.2.0/packages/arcball) (2026-07-16)
15+
16+
#### 🚀 Features
17+
18+
- add `defArcballController()`, restructure package ([9e20ead](https://codeberg.org/thi.ng/umbrella/commit/9e20ead))
19+
- add configurable, rstream-gestures based arcball controller
20+
- update deps
21+
- split up source files
22+
1423
## [1.1.0](https://codeberg.org/thi.ng/umbrella/src/tag/@thi.ng/arcball@1.1.0/packages/arcball) (2025-11-25)
1524

1625
#### 🚀 Features

packages/arcball/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thi.ng/arcball",
3-
"version": "1.1.24",
3+
"version": "1.2.0",
44
"description": "3D arcball controller for intuitive click & drag gesture-based camera view rotations. Quaternion-based.",
55
"type": "module",
66
"module": "./index.js",
@@ -42,7 +42,7 @@
4242
"dependencies": {
4343
"@thi.ng/api": "^8.12.27",
4444
"@thi.ng/matrices": "^3.0.52",
45-
"@thi.ng/rstream-gestures": "^5.0.177",
45+
"@thi.ng/rstream-gestures": "^5.0.178",
4646
"@thi.ng/vectors": "^8.6.37"
4747
},
4848
"devDependencies": {

packages/fibers/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
- **Last updated**: 2026-07-02T14:22:51Z
3+
- **Last updated**: 2026-07-16T20:38:41Z
44
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
55

66
All notable changes to this project will be documented in this file.
@@ -11,6 +11,18 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
1111
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
1212
and/or version bumps of transitive dependencies.
1313

14+
## [1.1.0](https://codeberg.org/thi.ng/umbrella/src/tag/@thi.ng/fibers@1.1.0/packages/fibers) (2026-07-16)
15+
16+
#### 🚀 Features
17+
18+
- update timeSlice() to reproduce wrapped fiber's result or error ([3e6ff31](https://codeberg.org/thi.ng/umbrella/commit/3e6ff31))
19+
- add `DEFAULT_LOGGER` mechanism ([b5601c2](https://codeberg.org/thi.ng/umbrella/commit/b5601c2))
20+
- use `DEFAULT_LOGGER` if no logger is given
21+
- initially is unset, keeping existing behavior
22+
- add `setDefaultLogger()` to configure
23+
- update `Fiber` ctor
24+
- update `FiberOpts` docs
25+
1426
### [1.0.67](https://codeberg.org/thi.ng/umbrella/src/tag/@thi.ng/fibers@1.0.67/packages/fibers) (2025-12-03)
1527

1628
#### ♻️ Refactoring

packages/fibers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thi.ng/fibers",
3-
"version": "1.0.88",
3+
"version": "1.1.0",
44
"description": "Process hierarchies & operators for cooperative multitasking",
55
"type": "module",
66
"module": "./index.js",

packages/geom-io-obj/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
- **Last updated**: 2026-07-02T14:22:51Z
3+
- **Last updated**: 2026-07-16T20:38:41Z
44
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
55

66
All notable changes to this project will be documented in this file.
@@ -11,6 +11,23 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
1111
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
1212
and/or version bumps of transitive dependencies.
1313

14+
# [1.0.0](https://codeberg.org/thi.ng/umbrella/src/tag/@thi.ng/geom-io-obj@1.0.0/packages/geom-io-obj) (2026-07-16)
15+
16+
#### 🛑 Breaking changes
17+
18+
- add support for stream parsing ([887eba5](https://codeberg.org/thi.ng/umbrella/commit/887eba5))
19+
- BREAKING CHANGE: rename `parseOBJ()` => `parseOBJFromString()`. All parse functions async now
20+
- add `parseOBJFromStream()`
21+
- add `parseOBJFromIterable()`
22+
- rename `parseOBJ()` => `parseOBJFromString()`
23+
- extract main parser to separate internal HOF for better re-use
24+
- add/update doc strings
25+
- add stream test & bunny fixture
26+
27+
#### 🚀 Features
28+
29+
- [#405](https://codeberg.org/thi.ng/umbrella/issues/405) add `parseOBJGenerator()` for coroutine/fiber based processing ([2899c1c](https://codeberg.org/thi.ng/umbrella/commit/2899c1c))
30+
1431
### [0.3.128](https://codeberg.org/thi.ng/umbrella/src/tag/@thi.ng/geom-io-obj@0.3.128/packages/geom-io-obj) (2024-06-21)
1532

1633
#### ♻️ Refactoring

packages/geom-io-obj/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thi.ng/geom-io-obj",
3-
"version": "0.3.221",
3+
"version": "1.0.0",
44
"description": "Wavefront OBJ parser (& exporter soon)",
55
"type": "module",
66
"module": "./index.js",

packages/geom-webgl/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thi.ng/geom-webgl",
3-
"version": "0.1.122",
3+
"version": "0.1.123",
44
"description": "WebGL geometry/shape conversion & interop",
55
"type": "module",
66
"module": "./index.js",
@@ -49,7 +49,7 @@
4949
"@thi.ng/transducers": "^9.6.41",
5050
"@thi.ng/vector-pools": "^3.2.105",
5151
"@thi.ng/vectors": "^8.6.37",
52-
"@thi.ng/webgl": "^6.9.115"
52+
"@thi.ng/webgl": "^6.9.116"
5353
},
5454
"devDependencies": {
5555
"esbuild": "^0.28.1",

packages/pixel-io-geotiff/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
- **Last updated**: 2026-07-02T14:22:51Z
3+
- **Last updated**: 2026-07-16T20:38:41Z
44
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
55

66
All notable changes to this project will be documented in this file.

packages/pixel-io-geotiff/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thi.ng/pixel-io-geotiff",
3-
"version": "0.2.15",
3+
"version": "0.2.16",
44
"description": "GeoTIFF reader support for @thi.ng/pixel",
55
"type": "module",
66
"module": "./index.js",

packages/rdom-canvas/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thi.ng/rdom-canvas",
3-
"version": "1.1.31",
3+
"version": "1.1.32",
44
"description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing",
55
"type": "module",
66
"module": "./index.js",
@@ -45,7 +45,7 @@
4545
"@thi.ng/checks": "^3.10.1",
4646
"@thi.ng/hiccup-canvas": "^3.2.28",
4747
"@thi.ng/object-utils": "^1.3.19",
48-
"@thi.ng/rdom": "^2.0.7",
48+
"@thi.ng/rdom": "^2.0.8",
4949
"@thi.ng/rstream": "^9.5.11"
5050
},
5151
"devDependencies": {

0 commit comments

Comments
 (0)