4 Commits

Author SHA1 Message Date
378853c641 bundle: update (2026-06-22)
All checks were successful
version / update-version (release) Successful in 10s
2026-06-22 09:22:23 +00:00
7aea02f3af version: knoxmakers-inkscape-20260621
All checks were successful
bundle / bundle (push) Successful in 22s
2026-06-21 09:22:32 +00:00
337b00601a bundle: update (2026-06-21)
All checks were successful
version / update-version (release) Successful in 12s
2026-06-21 09:22:22 +00:00
ee650f2b71 version: knoxmakers-inkscape-20260122
All checks were successful
bundle / bundle (push) Successful in 27s
2026-01-22 15:00:59 +00:00
8 changed files with 96 additions and 18 deletions

View File

@@ -1,6 +1,9 @@
# Hidden files and directories (everything starting with .) # Hidden files and directories (everything starting with .)
.* .*
# Build output (release zips and their signatures)
dist/
# Python cache (but keep bundled deps/) # Python cache (but keep bundled deps/)
__pycache__/ __pycache__/
*.py[cod] *.py[cod]

View File

@@ -0,0 +1 @@
1.0.1

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (C) 2026 jondale
import sys import sys
from pathlib import Path from pathlib import Path

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (C) 2026 jondale
import sys import sys
from pathlib import Path from pathlib import Path

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (C) 2026 jondale
import math import math

View File

@@ -0,0 +1,70 @@
#!/usr/bin/env bash
# Build a distributable Inkscape extension zip at dist/boxbot-<version>.zip
#
# Usage:
# ./package.sh [version] [--sign]
#
# version Set the version explicitly (used as-is, no bump). Saved to VERSION.
# With no version, the patch number in VERSION is incremented (x.y.Z+1).
# --sign Also produce a detached GPG signature (dist/boxbot-<version>.zip.sig).
#
# The zip bundles only the extension's own files in a boxbot/ folder. It does
# NOT include deps/ — the extension falls back to the inkex shipped with
# Inkscape (the sys.path shim is a no-op when deps/ is absent).
set -euo pipefail
repo_root="$(cd "$(dirname "$0")" && pwd)"
cd "$repo_root"
# Files that go into the package (allowlist: anything not here is excluded).
files="boxbot.inx boxbot.py offset.py placements.py livinghinge.py LICENSE README.md"
pkg="boxbot"
# Increment the patch component of a MAJOR.MINOR.PATCH version string.
bump_patch() {
local major minor patch
IFS='.' read -r major minor patch <<< "$1"
printf '%s.%s.%s' "${major:-0}" "${minor:-0}" "$(( ${patch:-0} + 1 ))"
}
version=""
sign=0
while [ $# -gt 0 ]; do
case "$1" in
--sign) sign=1 ;;
-*) echo "error: unknown option: $1" >&2; exit 1 ;;
*) version="$1" ;;
esac
shift
done
if [ -z "$version" ]; then
current="$(cat VERSION 2>/dev/null || true)"
[ -n "$current" ] || { echo "error: no VERSION file to increment" >&2; exit 1; }
version="$(bump_patch "$current")"
fi
# Persist so the next run increments from here.
printf '%s\n' "$version" > VERSION
stage="$(mktemp -d)"
trap 'rm -rf "$stage"' EXIT
mkdir -p "$stage/$pkg"
for f in $files; do
[ -f "$f" ] || { echo "error: missing file: $f" >&2; exit 1; }
cp "$f" "$stage/$pkg/"
done
mkdir -p dist
out="dist/boxbot-${version}.zip"
rm -f "$out"
( cd "$stage" && zip -rq "$repo_root/$out" "$pkg" )
if [ "$sign" -eq 1 ]; then
rm -f "$out.sig"
gpg --output "$out.sig" --detach-sign "$out"
echo "signed -> $out.sig"
fi
echo "built $out"
unzip -l "$out"

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (C) 2026 jondale
import sys import sys
from pathlib import Path from pathlib import Path
@@ -82,6 +84,16 @@ def point_at_length(path, target_length):
return (last_point[0], last_point[1]), (1.0, 0.0) return (last_point[0], last_point[1]), (1.0, 0.0)
def _apply_placement(item, x, y, angle):
# Bake placement into the path data; leaving it as a transform attr lets
# Inkscape shift the shape on ungroup (near-identity matrices lose the X translate).
transform = Transform()
transform.add_translate(x, y)
transform.add_rotate(angle)
item.path = item.path.transform(transform)
return item
def pattern_along_path(path, num_items, item_width, start_offset, spacing, create_shape_fn): def pattern_along_path(path, num_items, item_width, start_offset, spacing, create_shape_fn):
if isinstance(path, str): if isinstance(path, str):
@@ -104,12 +116,7 @@ def pattern_along_path(path, num_items, item_width, start_offset, spacing, creat
angle = math.degrees(math.atan2(tangent[1], tangent[0])) angle = math.degrees(math.atan2(tangent[1], tangent[0]))
item = create_shape_fn(i) item = create_shape_fn(i)
_apply_placement(item, point[0], point[1], angle)
transform = Transform()
transform.add_translate(point[0], point[1])
transform.add_rotate(angle)
item.transform = transform
items.append(item) items.append(item)
elif spacing == "endpoints": elif spacing == "endpoints":
@@ -120,12 +127,7 @@ def pattern_along_path(path, num_items, item_width, start_offset, spacing, creat
angle = math.degrees(math.atan2(tangent[1], tangent[0])) angle = math.degrees(math.atan2(tangent[1], tangent[0]))
item = create_shape_fn(i) item = create_shape_fn(i)
_apply_placement(item, point[0], point[1], angle)
transform = Transform()
transform.add_translate(point[0], point[1])
transform.add_rotate(angle)
item.transform = transform
items.append(item) items.append(item)
elif spacing == "simple": elif spacing == "simple":
@@ -138,12 +140,7 @@ def pattern_along_path(path, num_items, item_width, start_offset, spacing, creat
angle = math.degrees(math.atan2(tangent[1], tangent[0])) angle = math.degrees(math.atan2(tangent[1], tangent[0]))
item = create_shape_fn(i) item = create_shape_fn(i)
_apply_placement(item, point[0], point[1], angle)
transform = Transform()
transform.add_translate(point[0], point[1])
transform.add_rotate(angle)
item.transform = transform
items.append(item) items.append(item)
return items return items

1
version Normal file
View File

@@ -0,0 +1 @@
knoxmakers-inkscape-20260621