16 hours ago
vuetify

v4.0.5

[!IMPORTANT] Vuetify Needs Your Support! The OpenCollective funds have been fully exhausted. We are currently unable to compensate our contributors for their continued work on the framework and the ecosystem tools.

If Vuetify is part of your stack, please consider sponsoring the project so we can continue delivering updates and fixes.

Sponsor via Open Collective | Sponsor via GitHub

Every contribution helps us keep Vuetify alive and ship exciting new features.

Thank you.


🔧 Bug Fixes

  • SSR: avoid errors when rendering with latest Vue (#22764) (ecbe030), closes #22762
  • types: support noUncheckedSideEffectImports (2098fb1), closes #22766
  • useActivator: avoid closing hovered menu when tooltip hides (131e659), closes #22759
  • VSnackbar: avoid blocking navigation (143ceaa), closes #18283

🧪 Labs

  • VPie: shrink back hovered slices on mouseleave (1893748)
17 hours ago
vuetify

v3.12.5

🔧 Bug Fixes

  • useActivator: avoid closing hovered menu when tooltip hides (71d657b), closes #22759

Other Commits

  • chore(release): publish v3.12.5 (9394e4b)
  • docs(VNumberInput): correct description of control-variant prop (94240b3), closes #22782
  • docs(Sponsors): use visibility scope for Home page (#22751) (b19c82a)
18 hours ago
drawio
18 hours ago
tdesign-react

tdesign-react@1.16.8

🌈 1.16.8 2026-04-02

🚀 Features

  • 新增导出当前版本号,用于具体业务中判断版本号进行下一步逻辑处理 @uyarn (#4199)
  • DatePicker:
    • 新增 rangepanelActiveDate API,用于支持定义日期选择范围,具体使用请参考示例 @HaixingOoO (#4139)
    • 新增 cell API,支持如自定义日期单元格、农历等内容,具体使用请查看示例。 @uyarn (#4200)
  • DateRangePicker:
    • 新增 rangepanelActiveDate API,用于支持定义日期选择范围,具体使用请参考示例 @HaixingOoO @uyarn (#4139)
    • 新增 cell API,支持如自定义日期单元格、农历等内容,具体使用请参考示例 @uyarn (#4200)

🐞 Bug Fixes

  • Calendar: 修复 className 没传参时,被转为 undefined 字符串的问题 @RylanBot (#4175)
  • EnhancedTable: 修复 disableDataPage 不生效的问题 @HaixingOoO (#4186)
  • Form: 修复 initialData 覆盖 setFieldsValue 设置值的问题 @RylanBot (#4201)
  • FormList:
    • 修复 setFieldsValue 缺乏拷贝从而污染数据的问题 @RylanBot (#4174)
    • 修复 React 17 环境下首次渲染后,异步更新中 setFieldsValue 失败的问题 @RylanBot (#4179)
  • MessagePlugin: 修复 zIndex 不生效的问题 @TidySongS (#4077)
  • Select: 修复 onScrollToBottom 在浏览器缩放时无法触发的问题 @RylanBot (#4181)
  • TagInput: 修复 excessTagsDisplayType="break-line" 时,suffix 没有固定在右侧的问题 @RylanBot (#4178)
18 hours ago
neutralinojs

Neutralinojs v6.7.0 released!

What's new

API: Input device simulation and handling

New functions were added to the computer namespace to update the mouse position, confine the mouse cursor within the window, and simulate keyboard events. These functions work on Windows and macOS, but only work under the X windowing system on Linux (or FreeBSD). On Wayland, these functions will throw NE_CO_UNLTOSC, NE_CO_UNLTOMG, or NE_CO_UNLTOSK error messages.

  • Implement computer.setMousePosition(x, y) to update the current mouse cursor position.
  • Implement computer.setMouseGrabbing(grabbing; boolean) to activate/deactivate confining the mouse cursor within the native app window. If grabbing is set to true, the mouse cursor always stays within the window boundaries, so this feature helps create interactive games and similar apps operated using the mouse.
  • Implement computer.sendKey(keyCode, keyState) to simulate keyboard events. App developers can use a platform-specific key code and states (press, down, and up) to simulate from simple single key strokes to complex key combinations:
// Simulate letter 'a' press on GNU/Linux:
await Neutralino.computer.sendKey(38)

// Simulate Ctrl + V keyboard shortcut on GNU/Linux:
await Neutralino.computer.sendKey(105, 'down')    // Hold right control
await Neutralino.computer.sendKey(55, 'down')     // Hold letter 'v' 
await Neutralino.computer.sendKey(55, 'up')       // Release letter 'v'
await Neutralino.computer.sendKey(105, 'up')      // Release right control

API: os

  • Add useTemplateIcon: bool option to os.setTray(options) for activating adaptive tray icon with the current color-scheme on macOS.

Improvements/bugfixes

  • Display the app icon properly with the os.showNotification() function when the app is launched from a Mac app bundle.
  • Fix the window-ordering issue with window.focus() on macOS.
  • Auto-focus the app window when the Mac dock app icon is clicked.
  • Write full C++ exception messages to the terminal to improve the framework-related bug-reporting experience.

Update the config file option cli.binaryVersion with 6.7.0 and enter neu update to fetch this version.

Get started: https://neutralino.js.org/docs


This release was auto-generated by ReleaseZri 🚀

18 hours ago
neutralinojs

Neutralinojs nightly release

⚠️ Nightly build: This nightly-release may contain experimental features and breaking changes.

What's new

API: Input device simulation and handling

New functions were added to the computer namespace to update the mouse position, confine the mouse cursor within the window, and simulate keyboard events. These functions work on Windows and macOS, but only work under the X windowing system on Linux (or FreeBSD). On Wayland, these functions will throw NE_CO_UNLTOSC, NE_CO_UNLTOMG, or NE_CO_UNLTOSK error messages.

  • Implement computer.setMousePosition(x, y) to update the current mouse cursor position.
  • Implement computer.setMouseGrabbing(grabbing; boolean) to activate/deactivate confining the mouse cursor within the native app window. If grabbing is set to true, the mouse cursor always stays within the window boundaries, so this feature helps create interactive games and similar apps operated using the mouse.
  • Implement computer.sendKey(keyCode, keyState) to simulate keyboard events. App developers can use a platform-specific key code and states (press, down, and up) to simulate from simple single key strokes to complex key combinations:
// Simulate letter 'a' press on GNU/Linux:
await Neutralino.computer.sendKey(38)

// Simulate Ctrl + V keyboard shortcut on GNU/Linux:
await Neutralino.computer.sendKey(105, 'down')    // Hold right control
await Neutralino.computer.sendKey(55, 'down')     // Hold letter 'v' 
await Neutralino.computer.sendKey(55, 'up')       // Release letter 'v'
await Neutralino.computer.sendKey(105, 'up')      // Release right control

API: os

  • Add useTemplateIcon: bool option to os.setTray(options) for activating adaptive tray icon with the current color-scheme on macOS.

Improvements/bugfixes

  • Display the app icon properly with the os.showNotification() function when the app is launched from a Mac app bundle.
  • Fix the window-ordering issue with window.focus() on macOS.
  • Auto-focus the app window when the Mac dock app icon is clicked.
  • Write full C++ exception messages to the terminal to improve the framework-related bug-reporting experience.

Update the config file option cli.binaryVersion with nightly and enter neu update to fetch this version.

Get started: https://neutralino.js.org/docs


This release was auto-generated by ReleaseZri 🚀

19 hours ago
tiptap

v3.22.1

@tiptap/extension-drag-handle

Patch Changes

  • Fixed drag handle ghost image for RTL and mixed-direction content: the ghost wrapper now uses the dragged block’s computed direction (via domAtPos), and the drag image hotspot uses the cursor position relative to the ghost wrapper so the preview aligns with the pointer in both LTR and RTL.

@tiptap/core

Patch Changes

  • Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
  • Don't stop dragover/dragenter events in NodeViews, to prevent spurious drag-copy cursors

@tiptap/react

Patch Changes

  • Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
  • Prevent React node views from crashing during deferred selection updates when ProseMirror has already detached the node view position lookup.

@tiptap/vue-3

Patch Changes

  • Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)

@tiptap/vue-2

Patch Changes

  • Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
20 hours ago
hono

v4.12.10

What's Changed

New Contributors

Full Changelog: https://github.com/honojs/hono/compare/v4.12.9...v4.12.10

22 hours ago
modern.js

v3.1.2

What's Changed

New Features 🎉

Bug Fixes 🐞

Other Changes ✨

Rsbuild Update 📦

  • Upgrade @rsbuild/core from v2.0.0-beta.4 to v2.0.0-rc.0. See v2.0.0-rc.0 for details.

更新内容

新特性 🎉

Bug 修复 🐞

Rsbuild 更新 📦

  • 升级 @rsbuild/core 从 v2.0.0-beta.4 到 v2.0.0-rc.0,查看 v2.0.0-rc.0 了解详情。
1 days ago
Babylon.js

9.1.0

Addons

  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)

Core

  • WebGPU: Add async render pipeline pre-warming API - [New Feature] by Popov72 (#18220)
  • Gaussian splatting GPU picker exclude inactive parts - by spsDrop (#18090)
  • Fix issue with O(N^2) performance issue for addPart - by spsDrop (#17928)
  • Downsampled SphericalHarmonics Creation - [New Feature] by kzhsw (#18186)
  • Change GS SH degree at runtime - by CedricGuillemet (#18215)
  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
  • Flow Graph Editor: Physics blocks (Phase 2 — PR 3) - by RaananW (#18212)
  • Fix hand pose rotation for right handed HandContraintBehaviors - by klibertowski (#18193)
  • WebGPU: Clamp SSR value to avoid artifacts on mobile - [Bug Fix] by Popov72 (#18209)
  • Flow Graph Editor: Audio blocks using Audio V2 (Phase 2 — PR 4) - by RaananW (#18213)
  • feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
  • WebGPU: Add vertex pulling support for Standard, PBR, and OpenPBR materials - [New Feature] by Popov72 (#18201)
  • Fix for coord flip of irradiance - [Bug Fix] by MiiBond (#18205)
  • Add metadata and update copyTo to Particle class - by lockphase (#18187)
  • Add comprehensive WebXR unit tests - by RaananW (#18189)
  • Replace unnecessary Engine imports with EngineStore and Constants - by ryantrem (#18191)
  • Fix parabolic ray distance calculation in XR teleportation - [Bug Fix] by RaananW (#18154)
  • stringTools: ES2026 proposal-arraybuffer-base64 support - by kzhsw (#18063)
  • Allow switching pointer selection controller during session - by RaananW (#18143)
  • Scene isReady: check that custom render targets are ready - [Bug Fix] by Popov72 (#18167)
  • WebGPU: add support for read/write storage textures - by Popov72 (#18170)
  • Add mirror behavior on scaling gizmo - by tibotiber (#18053)
  • Flow Graph Editor - by RaananW (#18114)
  • Update dependencies - by RaananW (#18178)
  • Increase maximum bone count limit - by noname0310 (#18149)

GUI

  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
  • feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
  • Make CDN port configurable - by VicenteCartas (#18206)

Inspector

Loaders

  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
  • feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
  • Update dependencies - by RaananW (#18178)

Materials

  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
  • feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)

Node Editor

Node Geometry Editor

Node Particle Editor

Node Render Graph Editor

Playground

  • Make CDN port configurable - by VicenteCartas (#18206)
  • Fix playground webpack build error caused by duplicate ReactRefreshWebpackPlugin - by VicenteCartas (#18198)
  • Enhance toolkit localStorage handling in CommandBar and MonacoManager - by RaananW (#18179)
  • refactor(playground): use @tools/snippet-loader for loading and saving snippets - by RaananW (#18156)
  • Playground: Log warning if string too big to be stored to local store - [Bug Fix] by Popov72 (#18177)
  • Add version 8.56.2 with updated script URLs to Versions object - by RaananW (#18168)

Post Processes

  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
  • feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)

Procedural Textures

  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
  • feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)

Sandbox

Serializers

  • chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
  • feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)

Smart Filters

  • Update dependencies - by RaananW (#18178)
  • Remove unneeded peer dependencies from smartFiltersEditorControl package.json - by RaananW (#18176)

Viewer