Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge dep changes to pixi-v7 branch #71

Merged
merged 44 commits into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
b68ea02
bump pixi to v7
jameslaneconkling Aug 9, 2023
9d5845f
render 100k circles at 25 - 45 fps
jameslaneconkling Aug 13, 2023
13738b3
interpolate viewport position
jameslaneconkling Aug 14, 2023
be1572c
improve interaction perf
jameslaneconkling Aug 14, 2023
5ad3e02
add node renderer
jameslaneconkling Aug 16, 2023
cb74f07
create super performant static renderer with bitmap labels and culling
jameslaneconkling Aug 20, 2023
43ca0b5
ensure positioning consistency via a single setPosition method and re…
jameslaneconkling Aug 20, 2023
8c14bc0
position viewport x/y relative to root container, taking zoom into ac…
jameslaneconkling Aug 21, 2023
f948d9b
add node event handlers
jameslaneconkling Aug 23, 2023
ffa0d1d
fade out labels
jameslaneconkling Aug 23, 2023
e6432b0
add viewport position interpolation
jameslaneconkling Aug 26, 2023
4a98280
add node strokes
jameslaneconkling Aug 26, 2023
31a746d
add dynamic edge style
jameslaneconkling Aug 27, 2023
fae3048
disable node events on zoom out
jameslaneconkling Aug 27, 2023
dd70152
reposition node on coordinate update
jameslaneconkling Sep 2, 2023
8d5fbd8
improve low zoom performance via partical container
jameslaneconkling Sep 3, 2023
632ea78
Revert "improve low zoom performance via partical container"
jameslaneconkling Sep 4, 2023
6dbf94f
update node stroke and label
jameslaneconkling Sep 4, 2023
9797155
add node arrows
jameslaneconkling Sep 9, 2023
b8d3407
bugfix edge arrows
jameslaneconkling Sep 10, 2023
2287481
add text orientation option
jameslaneconkling Sep 10, 2023
2711b81
move circle and arrow sprites to textures
jameslaneconkling Sep 10, 2023
0be7eff
add arrow object
jameslaneconkling Sep 10, 2023
d5b3782
add node fill object
jameslaneconkling Sep 10, 2023
ccc9600
add node strokes object
jameslaneconkling Sep 10, 2023
1d45704
add node position interpolation
jameslaneconkling Sep 11, 2023
d49ef8c
render non-ascii text
jameslaneconkling Sep 14, 2023
19c7f0b
rename label orientation -> position
jameslaneconkling Sep 14, 2023
3221609
merge pixi-v7 static renderer into renderers/webgl
jameslaneconkling Sep 14, 2023
0432df9
Merge branch 'feature/pixi-v7'
mggower Sep 14, 2023
47e1632
format files
mggower Sep 14, 2023
a8831a0
fix conflicts with package-lock
mggower Sep 14, 2023
66cc8ac
fix tsc build
jameslaneconkling Sep 28, 2023
a013f6e
Merge branch 'feature/pixi-v7' into feature/merge-pixi-v7
mggower Sep 28, 2023
10f7b41
install to resolve errors
mggower Sep 28, 2023
79ed02a
use umd index file for build
mggower Sep 28, 2023
7527958
update build pipeline
mggower Sep 28, 2023
a0e4463
Merge branch 'master' into feature/merge-pixi-v7
mggower Sep 28, 2023
6dbf746
clean up package.json
jameslaneconkling Sep 28, 2023
020b233
0.7.0-rc.10
jameslaneconkling Sep 28, 2023
bc2bdc1
bugfix umd build
jameslaneconkling Sep 30, 2023
e1b8b6b
remove canvas support
jameslaneconkling Sep 30, 2023
976f6d3
0.7.0-rc.11
jameslaneconkling Sep 30, 2023
fab022e
prevent prototype pollution
jameslaneconkling Sep 30, 2023
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ node_modules/
dist/
.cache/
.vscode
.parcel-cache
.parcel-cache
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ npm version [premajor|preminor|prepatch|prerelease] --preid rc

git push --follow-tags

npm publish --tag next
npm run copy

npm publish dist/ --tag next
```

release
Expand All @@ -78,5 +80,7 @@ npm version [major|minor|patch]

git push --follow-tags

npm publish
npm run copy

npm publish dist/
```
Loading
Loading