mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
* feat: Render List<String> as raw paths in SVG and Vell mode * chore: code review * chore: change the hardcoded layout bounds to parley's * chore: code review * feat: Split text node to text_layer and text_to_vector node * fix: CI fail because of difference in nature of Mac and github action * chore: fix * chore: replace FontStack as it got removed in parley 0.9 * chore: fmt * chore: migrate the rendering as of new resource architechture * chore: add text_layer node to text tool for testing * code review * Make boolean ops support the Text type * chore: Move fallback_font_resource authority from editor to text node * Fix 'Text Layer' node missing font dropdown * Change node doc comments from Vec<T> to T[] * Add migrations from the old Text node to Text -> Text to Vector * Consolidate * Rename the text attributes and reorder tilt to come before max_width/height * Detect legacy Text nodes in the split migration by their trailing separate_glyphs input * Code review * Frame Text layer thumbnails by laying out their text for bounds * Give Text layers click targets and selection outlines via collect_metadata * Route Text tool through Text to Vector with fill, fixing editing-preview placement --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
37 lines
1007 B
TOML
37 lines
1007 B
TOML
[package]
|
|
name = "rendering"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "SVG rendering for Graphene"
|
|
authors = ["Graphite Authors <contact@graphite.art>"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
serde = ["dep:serde", "core-types/serde", "vector-types/serde", "graphic-types/serde"]
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
dyn-any = { workspace = true }
|
|
core-types = { workspace = true }
|
|
graphene-hash = { workspace = true }
|
|
graphene-resource = { workspace = true }
|
|
text-nodes = { workspace = true }
|
|
|
|
# Workspace dependencies
|
|
glam = { workspace = true }
|
|
base64 = { workspace = true }
|
|
log = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
usvg = { workspace = true }
|
|
kurbo = { workspace = true }
|
|
vector-types = { workspace = true }
|
|
graphic-types = { workspace = true }
|
|
vello = { workspace = true }
|
|
vello_encoding = { workspace = true }
|
|
parley = { workspace = true }
|
|
skrifa = { workspace = true }
|
|
|
|
# Optional workspace dependencies
|
|
serde = { workspace = true, optional = true }
|