Skip to content
Merged
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
58dd67a
WIP, backward traversal issues
adamgerhant Mar 29, 2024
7cbff5d
Fix some tool issues
0HyperCube Mar 29, 2024
54f0b0d
Remove debugging
Keavon Mar 29, 2024
51c61ba
Change some indices
0HyperCube Mar 29, 2024
c290cbd
WIP: new artboard node
adamgerhant Mar 30, 2024
e1498f8
WIP: add artboard node
adamgerhant Mar 30, 2024
077a1ba
WIP: Artboard node and create_artboard
adamgerhant Apr 3, 2024
769f3f4
WIP: Artboard node implementation complete
adamgerhant Apr 3, 2024
7be8bcb
WIP: Artboards input for output node
adamgerhant Apr 4, 2024
6901f49
Complete Artboard node
adamgerhant Apr 4, 2024
367199e
Generalize LayerNodeIdentifier, monitor_nodes support for Artboard n…
adamgerhant Apr 8, 2024
7a649cc
Fix misaligned artboard click targets
Keavon Apr 8, 2024
c189af3
Generalize/clarify create_layer and insert_between
adamgerhant Apr 9, 2024
e9992a4
non-negative dimensions for resize_artboard
adamgerhant Apr 9, 2024
9589d7f
Show artboards in layer panel
adamgerhant Apr 11, 2024
221440f
Generalize create_layer for layer output node
adamgerhant Apr 13, 2024
36df33b
Generalize delete_layer/delete_artboard to NodeGraphMessage::DeleteNo…
adamgerhant Apr 17, 2024
431f20f
remove old primary_input function
adamgerhant Apr 18, 2024
abbda86
Vertical node visuals, remove is_layer function, rename Layer node to…
adamgerhant Apr 19, 2024
b150486
Fix demo artwork
adamgerhant Apr 20, 2024
f85bd44
Layer display context menu
adamgerhant Apr 20, 2024
89cff28
Automatically select artboard, fix warnings
adamgerhant Apr 21, 2024
da66f57
Improvements to context menu and layer invariant enforcement
adamgerhant Apr 22, 2024
4b7cac7
Remove display_as_layer and update load_structure
adamgerhant Apr 25, 2024
cc0bb44
Improve load_structure to show more layers, improve FlowIter, improve…
adamgerhant Apr 25, 2024
a66e61a
Clean up demo artwork using generalized layers
Keavon Apr 26, 2024
9471ea0
Improve design of Layers panel and graph nodes
Keavon Apr 26, 2024
ab366cf
MoveSelectedLayersTo rewrite to support generalized layer nodes
adamgerhant Apr 27, 2024
6ca4a5d
Include artboards in deepest_common_ancestor, fix resize_artboard/del…
adamgerhant Apr 27, 2024
8a04bc8
MoveSelectedLayersTo adjustments
adamgerhant Apr 27, 2024
43ae283
Sync non layer node visibility with metadata
adamgerhant Apr 27, 2024
a6a35aa
Include non layer nodes when moving/creating layer
adamgerhant Apr 27, 2024
6c9d68b
Fix group layers and get_post_node_with_index
adamgerhant Apr 28, 2024
52546ee
Include non layer nodes in UngroupSelectedLayers
adamgerhant Apr 28, 2024
c2395ef
GroupSelected for all selected nodes, UnGroupSelected position adjust…
adamgerhant Apr 29, 2024
76ec270
Add grouping for layers in different folders
adamgerhant Apr 29, 2024
d96db73
Fix hidden layers
adamgerhant Apr 29, 2024
18449a6
Prevent node from connecting to itself, fix undo automatic node inser…
adamgerhant Apr 30, 2024
ebd3f33
Fix undo CreateEmptyFolder, fix grouping nested layer nodes
adamgerhant Apr 30, 2024
5409e27
Formatting
Keavon Apr 30, 2024
650f6ea
Merge branch 'master' into adjustment-layers
Keavon Apr 30, 2024
531136b
Remove test and check if node is layer from network
adamgerhant Apr 30, 2024
e7ee147
Fix undo group layers
adamgerhant Apr 30, 2024
febb8d0
Check off roadmap
Keavon May 1, 2024
f650566
MoveUpstreamSiblingsToChild adjustments
adamgerhant May 1, 2024
fa2cb39
Replace tabs with spaces, remove mut from argument
adamgerhant May 1, 2024
ceb3fde
Final code review pass
Keavon May 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@
"eslint.format.enable": true,
"eslint.workingDirectories": ["./frontend", "./website/other/bezier-rs-demos", "./website"],
"eslint.validate": ["javascript", "typescript", "svelte"],
// Svelte config
"svelte.plugin.svelte.compilerWarnings": {
// NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts`
"css-unused-selector": "ignore",
"vite-plugin-svelte-css-no-scopable-elements": "ignore",
"a11y-no-static-element-interactions": "ignore",
"a11y-no-noninteractive-element-interactions": "ignore"
},
// VS Code config
"html.format.wrapLineLength": 200,
"files.eol": "\n",
Expand Down
Loading