Commit Graph
244 Commits
Author SHA1 Message Date
Neko Ayaka bf6849297e feat(docs): lollipop pattern animation 2025-11-27 01:00:42 +08:00
Neko Ayaka c3a4b29991 feat(stage-web,docs): configured open graph protocol image 2025-11-27 00:40:16 +08:00
Neko Ayaka e34e7aa389 release: v0.8.0-alpha.4 2025-11-24 16:36:27 +08:00
Neko Ayaka 08664e3e3c release: v0.8.0-alpha.3 2025-11-24 12:35:12 +08:00
Neko Ayaka 052da41a89 release: v0.8.0-alpha.2 2025-11-24 03:59:01 +08:00
Neko Ayaka 091b980ae1 release: v0.8.0-alpha.1 2025-11-24 02:48:49 +08:00
Neko Ayaka 3240276e40 style: lint & build naming 2025-11-16 02:32:36 +08:00
Neko Ayaka 3e741d57ec chore(deps): bump dependencies 2025-11-16 02:21:38 +08:00
Neko Ayaka 5b9bf180e9 Revert "chore(deps): bump dependencies"
This reverts commit 38401084e1.
2025-11-16 01:28:29 +08:00
Neko Ayaka 38401084e1 chore(deps): bump dependencies 2025-11-15 23:45:01 +08:00
Rafael-ban c3782fef4f docs(README.md, CONTRIBUTING.md): sync README.md, outdated links (#738) 2025-11-14 19:27:06 +08:00
Lovehsigure_520 2ef450dd48 feat(docs):Added dev logs and improved navigation (#713) 2025-11-03 00:42:34 +08:00
藍+85CD 03cd3ff5fd chore(docs): fix lint warn 2025-11-02 12:54:58 +08:00
Neko Ayaka a7a1302b99 chore(deps): bump dependencies 2025-11-01 16:03:45 +08:00
이윤진(Lee Yunjin) 1e58126f35 chore(ci): flatpak included in artifacts (#685) 2025-10-31 02:53:16 +08:00
Neko Ayaka 58530dae23 style: lint 2025-10-31 02:02:41 +08:00
Lovehsigure_520 04730002cf docs(blog): Add Halloween celebration article and optimize blog list display logic (#686) 2025-10-31 01:52:39 +08:00
Neko Ayaka 3cb8f74840 feat(docs): Happy Halloween! 🎃 2025-10-29 03:38:41 +08:00
Lovehsigure_520 4887b6feba docs(docs): DevLog 2025.10.20 (#679) 2025-10-27 02:17:09 +08:00
reonokiy bc9f4ddeee docs: add docs for release versions (#669) 2025-10-22 12:48:48 +08:00
Neko AyakaandLovehsigure_520 ad82a6ef83 chore(docs): updated banner cover for dark mode with better visibility
Co-authored-by: Lovehsigure_520 <62863834+Neko-233@users.noreply.github.com>
2025-10-22 00:31:29 +08:00
Neko Ayaka 1463b5794e chore(docs): improved the style, fixed many issues 2025-10-22 00:13:55 +08:00
Neko Ayaka 37d16fa20f docs(README): updated devlog recent update 2025-10-21 23:34:12 +08:00
Neko Ayaka 3e0e4961c9 docs(README): remove preview image 2025-10-21 23:30:09 +08:00
Neko Ayaka 6dc7809e9c docs: new cover with new model 2025-10-21 23:27:49 +08:00
藍+85CD ee42ab85b1 chore(eslint): use moeru config (#664) 2025-10-18 19:02:01 +08:00
藍+85CD 4154cb80f2 docs: remove husbando (#655) 2025-10-17 14:20:42 +08:00
Neko Ayaka 0b85ab78fc chore(deps): bump dependencies 2025-10-12 00:36:21 +08:00
Neko Ayaka 0de306f668 chore(deps): bump dependencies 2025-10-09 02:35:44 +08:00
Neko Ayaka cf93a9a78a chore(docs): cleanup 2025-10-08 22:39:59 +08:00
Neko Ayaka 6cfc9c8ee0 fix(stage-tamagotchi): icon 2025-10-06 14:57:49 +08:00
Sline d744bec754 refactor: start websocket server by server-runtime (#634) 2025-10-04 21:56:30 +08:00
Neko Ayaka 75321a4cd9 chore(deps): bump dependencies 2025-10-03 16:54:50 +08:00
Neko Ayaka 13f32255bd fix(docs): incorrect sitemap config for hostname 2025-09-30 23:54:23 +08:00
Neko Ayaka 372125fb89 chore(deps): bump dependencies
Notice: after bumping up to three 0.180.0 with @types/three 0.180.0,
  Argument of type 'Group<Object3DEventMap>' is not assignable to parameter of type 'Object3D<Object3DEventMap>'.
    Type 'Group<Object3DEventMap>' is missing the following properties from type 'Object3D<Object3DEventMap>': setPointerCapture, releasePointerCapture, hasPointerCapture

Currently, AFAIK, clearly, three, and @types/three doesn't have the setPointerCapture, releasePointerCapture, hasPointerCapture method / getters
The only place I found on GitHub, points out that https://github.com/pmndrs/xr/blob/456aa380206e93888cd3a5741a1534e672ae3106/packages/pointer-events/src/pointer.ts#L69-L100 declares

```js
declare module 'three' {
  interface Object3D {
    setPointerCapture(pointerId: number): void
    releasePointerCapture(pointerId: number): void
    hasPointerCapture(pointerId: number): boolean

    intersectChildren?: boolean
    interactableDescendants?: Array<Object3D>
    /**
     * @deprecated
     */
    ancestorsHaveListeners?: boolean
    ancestorsHavePointerListeners?: boolean
    ancestorsHaveWheelListeners?: boolean
  }
}
```

And in @tresjs/core v5, it uses the @pmndrs/pointer-events internally.
Somehow the Object3D from @types/three and the one augmented by @pmndrs/pointer-events are not compatible.

`new Object3D() as unknown as Object3D` works as workaround here but there should be no need to do such a thing since these two Object3D should be the same.
With no updates from `typescript`, I assume there is no breaking change or regression from `typescript` side.
2025-09-26 17:07:07 +08:00
Neko Ayaka 4a31fda922 feat(stage-ui/providers): added 302.AI 2025-09-25 15:14:14 +08:00
Makito b8d419fb13 fix: lint errors 2025-09-21 19:01:34 +09:00
Kthunda 0e39750586 feat(i18n): French translation (#540) 2025-09-21 13:50:33 +08:00
Neko Ayaka 84d7e08355 refactor(docs): split utils 2025-09-16 00:13:12 +08:00
Neko Ayaka c2b2f120e0 refactor(docs): split styles 2025-09-16 00:11:48 +08:00
RainbowBird 4befe055c0 chore: clean netlify config (#591) 2025-09-16 00:04:05 +08:00
Neko Ayaka dd73845ed3 release: v0.7.2-beta.3 2025-09-11 15:18:02 +08:00
Neko Ayaka 696b97bded fix(docs): bad prose style 2025-09-07 21:20:39 +08:00
Neko Ayaka ab10782c65 chore(deps): bump dependencies 2025-09-03 13:25:12 +08:00
Neko Ayaka a63478eb64 fix: typecheck 2025-09-01 19:56:33 +08:00
LemonNeko a1f13e4ce7 feat(devlog): add nms example for devlog-2026-08-26 (#537) 2025-09-01 00:41:55 +08:00
Chenyang Li 72982a9fdf typo corrected (#528) 2025-08-30 21:19:38 +08:00
Neko Ayaka dc6dff5a6d chore(deps): bump dependencies 2025-08-29 01:38:04 +08:00
Lovehsigure_520 50ecabf27f Rename README.ru.md to README.ru-RU.md (#514) 2025-08-29 01:01:57 +08:00
Neko Ayaka 77958ff0d0 fix: lint 2025-08-28 15:45:00 +08:00