Elena Torro
a8322215dd
🔧 Optimize pan/zoom tile handling
...
- Add incremental tile update that preserves cache during pan
- Only invalidate tile cache when zoom changes
- Force visible tiles to render synchronously (no yielding)
- Increase interest area threshold from 2 to 3 tiles
2026-02-09 09:38:01 +01:00
Elena Torro
e1ce97a2b4
🔧 Prioritize visible tiles over interest-area tiles
...
Partition pending tiles into 4 groups by visibility and cache status.
Visible tiles are processed first to eliminate empty squares during
pan/zoom. Cached tiles within each group are processed before uncached.
2026-02-09 09:38:01 +01:00
Elena Torro
2ccd2a6679
🔧 Use HashSet for grid layout children lookup
...
HashSet provides O(1) contains() vs Vec's O(n), improving
child lookup performance in grid cell data creation.
2026-02-09 09:38:01 +01:00
Elena Torro
2d9a2e0d50
🔧 Use swap_remove in flex layout distribution
...
swap_remove is O(1) vs remove's O(n) when order doesn't matter.
These loops iterate backwards, so swap_remove is safe.
2026-02-09 09:38:01 +01:00
Elena Torro
216d400262
🔧 Prevent duplicate layout calculations
...
Use HashSet for layout_reflows to avoid processing the same
layout multiple times. Also use std::mem::take instead of
creating a new Vec on each iteration.
2026-02-09 09:37:58 +01:00
Elena Torro
c87ffdcd30
🔧 Add forward children iterator for flex layout
...
Avoid Vec allocation + reverse for reversed flex layouts.
The new children_ids_iter_forward returns children in original order,
eliminating the need to collect and reverse.
2026-02-09 09:35:04 +01:00
Elena Torro
8ef6600cdc
🔧 Return HashSet from update_shape_tiles
...
Avoid final collect() allocation by returning HashSet directly.
Callers already use extend() which works with both types.
2026-02-09 09:35:04 +01:00
Elena Torro
a3764b9713
🔧 Avoid clone in rebuild_touched_tiles
...
Use std::mem::take instead of clone to avoid HashSet allocation.
The set was cleared anyway by clean_touched(), so take() is safe.
2026-02-09 09:35:03 +01:00
Alejandro Alonso
e5cdb5b163
Merge pull request #8290 from penpot/alotor-fix-alt-duplicate
...
🐛 Fix problem with alt+move for duplicate shapes
2026-02-09 06:33:13 +01:00
David Barragán Merino
a4f2641cc9
🔧 Enable observability for plugin docs and packages
2026-02-06 18:01:11 +01:00
Alejandro Alonso
a164a1bab3
🐛 Fix dashboard navigation from workspace
2026-02-06 12:58:56 +01:00
alonso.torres
a0cbb392af
🐛 Fix problem with alt+move for duplicate shapes
2026-02-06 12:20:43 +01:00
Alejandro Alonso
ccfee34e76
Merge pull request #8289 from penpot/niwinz-staging-exporter-fix
...
🐛 Fix issue with pdf render on exporter
2026-02-06 11:40:18 +01:00
Andrey Antukh
989eb12139
🔥 Remove merge conflict from plugins api ns
2026-02-06 11:38:36 +01:00
Eva Marco
a5e36dbb3d
🐛 Fix broken attribute on numeric input ( #8250 )
...
* 🐛 Fix broken attribute on numeric input
* 🐛 Fix tooltip position
2026-02-06 11:32:16 +01:00
Alejandro Alonso
8acd031ab2
Merge remote-tracking branch 'origin/staging-render' into develop
2026-02-06 11:23:50 +01:00
Andrey Antukh
6f3f2f9a71
🐛 Fix issue with pdf render on exporter
...
When paired with release build penpot app
2026-02-06 11:19:56 +01:00
Elena Torro
a7c1de6478
🐛 Fix lazy load intersection on dragging at the beginning
2026-02-06 10:59:05 +01:00
Elena Torro
184487f568
🐛 Fix lazy load intersection on dragging at the beginning
2026-02-06 10:53:11 +01:00
Andrey Antukh
c00d512193
✨ Add the concept of version to plugins
...
And make mcp plugin version 2
2026-02-06 09:42:59 +01:00
alonso.torres
af5dbf2fbc
🐛 Set objects modified instead of modif-tree
2026-02-06 09:34:58 +01:00
Alejandro Alonso
7c7e32d85f
🐛 Fix grid lines
2026-02-06 09:34:58 +01:00
Andrey Antukh
2ccb33ba89
📎 Add missing for-update for the migration 145
2026-02-05 18:12:11 +01:00
Andrey Antukh
ee88ee63a2
✨ Add data migration for fix plugins data on profiles
2026-02-05 18:08:28 +01:00
alonso.torres
fd3d549f9c
✨ Batch text layout updates
2026-02-05 17:29:43 +01:00
alonso.torres
53c2acb3e6
🐛 Fix several problems with layouts and texts
2026-02-05 17:29:43 +01:00
Belén Albeza
8a72eb64c3
✨ Add integration test for 13267
2026-02-05 16:37:21 +01:00
alonso.torres
1d45ca7019
🐛 Fix problem propagating geometry changes to instances
2026-02-05 16:37:21 +01:00
Eva Marco
f961f9a123
🐛 Fix several bugs ( #8267 )
...
* ♻️ Remove rename warning
* 🐛 Fix opacity value
2026-02-05 11:34:14 +01:00
Eva Marco
dda3377596
🐛 Allow detach broken token from input ( #8242 )
...
* 🐛 Allow detach broken token from input
* 🐛 Fix multiselection on multiple token applied
* ♻️ Remove detach-token new fn
2026-02-05 11:28:47 +01:00
Andrey Antukh
17935443df
✨ Move all tokenscript related adaptations to a separared package
2026-02-05 09:45:55 +01:00
Florian Schroedl
150d57b1eb
✨ Add tokenscript MVP
2026-02-05 09:45:55 +01:00
Alejandro Alonso
ad5e8ccdb3
🐛 Fix pdf sizing issue on export ( #8274 )
2026-02-05 09:23:14 +01:00
Andrey Antukh
490619119e
🐛 Use correct listen address for mcp server
2026-02-04 18:57:53 +01:00
Belén Albeza
834b513562
🔧 Fix typo in workspace spec ( #8272 )
2026-02-04 17:05:49 +01:00
Andrey Antukh
1656fefdc9
Merge remote-tracking branch 'origin/staging-render' into develop
2026-02-04 16:23:46 +01:00
Andrey Antukh
7f318bb110
Merge remote-tracking branch 'origin/staging' into staging-render
2026-02-04 16:22:13 +01:00
Andrey Antukh
44c7d3fbd6
✨ Backport .github workflows from develop
2026-02-04 16:21:19 +01:00
Andrey Antukh
3d50aa6cb2
⬆️ Update imagemagick version
2026-02-04 16:21:19 +01:00
Andrey Antukh
06afd94a74
⬆️ Update backend dependencies (mainly bugfixes)
2026-02-04 16:21:19 +01:00
Andrey Antukh
e7d9dca55e
⬆️ Update jdk and node on devenv and other images
2026-02-04 16:21:19 +01:00
Andrey Antukh
c14ccc18b8
✨ Import mcp from develop
2026-02-04 16:21:19 +01:00
Andrey Antukh
ca4d00df69
🐛 Fix latest error report related migration
2026-02-04 15:36:07 +01:00
Andrey Antukh
9667477d6b
🐛 Add missing dep for rpc routes on backend
2026-02-04 15:26:02 +01:00
Alejandro Alonso
485005477e
🐛 Fix WasmWorkspacePage import
2026-02-04 14:02:38 +01:00
Alejandro Alonso
86ca260ea2
Merge remote-tracking branch 'origin/staging-render' into develop
2026-02-04 13:50:13 +01:00
Andrey Antukh
d80ba1856a
✨ Add several improvements to frontend error reporting
...
* ✨ Add major improvement on error handling
* ✨ Add the ability to store frontend reports
* 📎 Add PR feedback changes
2026-02-04 12:45:38 +01:00
Alejandro Alonso
ebb7d01bc9
🐛 Fix entering decimal values in dimension fields causes internal server error ( #8263 )
2026-02-04 12:44:19 +01:00
Andrey Antukh
a1bfb2781e
📎 Update mcp readme
2026-02-04 12:22:36 +01:00
Andrey Antukh
08e8787568
✨ Add mcp types generator build script
2026-02-04 12:22:36 +01:00