Skip to content

Commit

Permalink
Release (#1588)
Browse files Browse the repository at this point in the history
* fix: use willReadFrequently when creating offscreen canvas (#1586)

* fix: create canvas2d context with willReadFrequently attribute

* fix: path should not downgrade to line when billboard enabled

* chore: commit changeset

* chore: add deploy gh-pages action

* chore(release): bump version (#1587)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Nov 16, 2023
1 parent 6d0af1d commit 9bc34e8
Show file tree
Hide file tree
Showing 100 changed files with 554 additions and 57 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy

on:
workflow_dispatch:
push:
branches:
- next

jobs:
deploy-site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: cd site && yarn install
- run: cd site && npm run build
- run: cp ./site/CNAME ./site/dist/CNAME
- run: |
cd site/dist
git init
git config --local user.name antv
git config --local user.email [email protected]
git add .
git commit -m "update by release action"
- uses: ad-m/github-push-action@master
with:
github_token: ${{secrets.PERSONAL_ACCESS_TOKEN}}
directory: site/dist
branch: gh-pages
force: true
7 changes: 7 additions & 0 deletions packages/g-camera-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-camera-api

## 1.2.20

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 1.2.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-camera-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-camera-api",
"version": "1.2.19",
"version": "1.2.20",
"description": "A simple implementation of Camera API.",
"keywords": [
"antv",
Expand Down
13 changes: 13 additions & 0 deletions packages/g-canvas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @antv/g-canvas

## 1.11.24

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19
- @antv/g-plugin-canvas-path-generator@1.3.19
- @antv/g-plugin-canvas-picker@1.10.21
- @antv/g-plugin-canvas-renderer@1.9.21
- @antv/g-plugin-dom-interaction@1.9.19
- @antv/g-plugin-html-renderer@1.9.22
- @antv/g-plugin-image-loader@1.3.19

## 1.11.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-canvas",
"version": "1.11.23",
"version": "1.11.24",
"description": "A renderer implemented by Canvas 2D API",
"keywords": [
"antv",
Expand Down
13 changes: 13 additions & 0 deletions packages/g-canvaskit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @antv/g-canvaskit

## 0.10.24

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19
- @antv/g-plugin-canvas-path-generator@1.3.19
- @antv/g-plugin-canvas-picker@1.10.21
- @antv/g-plugin-canvaskit-renderer@1.3.20
- @antv/g-plugin-dom-interaction@1.9.19
- @antv/g-plugin-html-renderer@1.9.22
- @antv/g-plugin-image-loader@1.3.19

## 0.10.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-canvaskit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-canvaskit",
"version": "0.10.23",
"version": "0.10.24",
"description": "A renderer implemented by CanvasKit",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-components

## 1.9.19

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 1.9.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-components",
"version": "1.9.18",
"version": "1.9.19",
"description": "Components for g",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-dom-mutation-observer-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-dom-mutation-observer-api

## 1.2.19

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 1.2.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-dom-mutation-observer-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-dom-mutation-observer-api",
"version": "1.2.18",
"version": "1.2.19",
"description": "A simple implementation of DOM MutationObserver API.",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-gesture/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-gesture

## 2.2.22

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 2.2.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-gesture/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-gesture",
"version": "2.2.21",
"version": "2.2.22",
"description": "G Gesture",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-image-exporter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-image-exporter

## 0.7.19

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 0.7.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-image-exporter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-image-exporter",
"version": "0.7.18",
"version": "0.7.19",
"description": "A image exporter for G using DOM API",
"keywords": [
"antv",
Expand Down
6 changes: 6 additions & 0 deletions packages/g-lite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-lite

## 1.2.19

### Patch Changes

- 6492cdf1: Path should not downgrade to line when billboard enabled.

## 1.2.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-lite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-lite",
"version": "1.2.18",
"version": "1.2.19",
"description": "A core module for rendering engine implements DOM API.",
"keywords": [
"antv",
Expand Down
15 changes: 12 additions & 3 deletions packages/g-lite/src/services/OffscreenCanvasCreator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,28 @@ export class OffscreenCanvasCreator {
// user-defined offscreen canvas
if (offscreenCanvas || runtime.offscreenCanvas) {
this.canvas = offscreenCanvas || runtime.offscreenCanvas;
this.context = this.canvas.getContext('2d', contextAttributes);
this.context = this.canvas.getContext('2d', {
willReadFrequently: true,
...contextAttributes,
});
} else {
try {
// OffscreenCanvas2D measureText can be up to 40% faster.
this.canvas = new window.OffscreenCanvas(0, 0) as unknown as CanvasLike;
this.context = this.canvas.getContext('2d', contextAttributes);
this.context = this.canvas.getContext('2d', {
willReadFrequently: true,
...contextAttributes,
});
if (!this.context || !this.context.measureText) {
this.canvas = document.createElement('canvas');
this.context = this.canvas.getContext('2d');
}
} catch (ex) {
this.canvas = document.createElement('canvas');
this.context = this.canvas.getContext('2d', contextAttributes);
this.context = this.canvas.getContext('2d', {
willReadFrequently: true,
...contextAttributes,
});
}
}

Expand Down
7 changes: 7 additions & 0 deletions packages/g-lottie-player/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-lottie-player

## 0.2.19

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 0.2.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-lottie-player/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-lottie-player",
"version": "0.2.18",
"version": "0.2.19",
"description": "A lottie player for G",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-mobile-canvas-element/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-mobile-canvas-element

## 0.8.19

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 0.8.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-mobile-canvas-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-mobile-canvas-element",
"version": "0.8.18",
"version": "0.8.19",
"description": "Create a CanvasLike element from existed context in mobile environment",
"keywords": [
"antv",
Expand Down
14 changes: 14 additions & 0 deletions packages/g-mobile-canvas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @antv/g-mobile-canvas

## 0.11.12

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19
- @antv/g-plugin-canvas-path-generator@1.3.19
- @antv/g-plugin-canvas-picker@1.10.21
- @antv/g-plugin-canvas-renderer@1.9.21
- @antv/g-plugin-dragndrop@1.8.19
- @antv/g-plugin-gesture@1.2.7
- @antv/g-plugin-image-loader@1.3.19
- @antv/g-plugin-mobile-interaction@0.9.19

## 0.11.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-mobile-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-mobile-canvas",
"version": "0.11.11",
"version": "0.11.12",
"description": "A renderer implemented with Canvas2D API in mobile environment",
"keywords": [
"antv",
Expand Down
12 changes: 12 additions & 0 deletions packages/g-mobile-svg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @antv/g-mobile-svg

## 0.10.24

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19
- @antv/g-plugin-dragndrop@1.8.19
- @antv/g-plugin-gesture@1.2.7
- @antv/g-plugin-mobile-interaction@0.9.19
- @antv/g-plugin-svg-picker@1.9.23
- @antv/g-plugin-svg-renderer@1.10.23

## 0.10.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-mobile-svg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-mobile-svg",
"version": "0.10.23",
"version": "0.10.24",
"description": "A renderer implemented by SVG in mobile environment",
"keywords": [
"antv",
Expand Down
13 changes: 13 additions & 0 deletions packages/g-mobile-webgl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @antv/g-mobile-webgl

## 0.9.32

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-plugin-device-renderer@1.9.28
- @antv/g-lite@1.2.19
- @antv/g-plugin-dragndrop@1.8.19
- @antv/g-plugin-gesture@1.2.7
- @antv/g-plugin-html-renderer@1.9.22
- @antv/g-plugin-image-loader@1.3.19
- @antv/g-plugin-mobile-interaction@0.9.19

## 0.9.31

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-mobile-webgl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-mobile-webgl",
"version": "0.9.31",
"version": "0.9.32",
"description": "A renderer implemented by WebGL1/2 in mobile environment",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-pattern/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-pattern

## 1.2.19

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-lite@1.2.19

## 1.2.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-pattern/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-pattern",
"version": "1.2.18",
"version": "1.2.19",
"description": "A pattern libs for G",
"keywords": [
"antv",
Expand Down
8 changes: 8 additions & 0 deletions packages/g-plugin-3d/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @antv/g-plugin-3d

## 1.9.28

### Patch Changes

- Updated dependencies [6492cdf1]
- @antv/g-plugin-device-renderer@1.9.28
- @antv/g-lite@1.2.19

## 1.9.27

### Patch Changes
Expand Down
Loading

0 comments on commit 9bc34e8

Please sign in to comment.