Skip to content

Commit de34d99

Browse files
authored
Merge branch 'master' into 3318-jpeg-size-determination
2 parents 205585e + a504e97 commit de34d99

File tree

111 files changed

+3833
-3773
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+3833
-3773
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
- name: Install Node.js
13-
uses: actions/setup-node@v4
13+
uses: actions/setup-node@v6
1414
with:
1515
node-version: 20
1616
cache: npm
@@ -31,9 +31,9 @@ jobs:
3131
name: Node.js ${{ matrix.node-version }} test
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
- name: Install Node.js ${{ matrix.node-version }}
36-
uses: actions/setup-node@v4
36+
uses: actions/setup-node@v6
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939
cache: npm
@@ -54,9 +54,9 @@ jobs:
5454
name: Typings tests (typescript@${{ matrix.ts-version.ts }})
5555
steps:
5656
- name: Checkout
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
- name: Install Node.js
59-
uses: actions/setup-node@v4
59+
uses: actions/setup-node@v6
6060
with:
6161
node-version: 20
6262
cache: npm
@@ -74,9 +74,9 @@ jobs:
7474
name: Lint
7575
steps:
7676
- name: Checkout
77-
uses: actions/checkout@v4
77+
uses: actions/checkout@v5
7878
- name: Install Node.js
79-
uses: actions/setup-node@v4
79+
uses: actions/setup-node@v6
8080
with:
8181
node-version: 20
8282
cache: npm

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
publish-npm:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
14+
- uses: actions/checkout@v5
15+
- uses: actions/setup-node@v6
1616
with:
1717
node-version: 20
1818
registry-url: https://registry.npmjs.org/

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/stale@v9
13+
- uses: actions/stale@v10
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. It will be closed soon. Please comment/reopen if this issue is still relevant.'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ yarn add jspdf
2929
Alternatively, load it from a CDN:
3030

3131
```html
32-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/3.0.3/jspdf.umd.min.js"></script>
32+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/3.0.4/jspdf.umd.min.js"></script>
3333
```
3434

3535
Or always get latest version via [unpkg](https://unpkg.com/browse/jspdf/)
@@ -178,7 +178,7 @@ Alternatively, you can load the prebundled polyfill file. This is not recommende
178178
loading polyfills multiple times. Might still be nifty for small applications or quick POCs.
179179

180180
```html
181-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/3.0.3/polyfills.umd.js"></script>
181+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/3.0.4/polyfills.umd.js"></script>
182182
```
183183

184184
## Use of Unicode Characters / UTF-8:

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspdf",
3-
"version": "3.0.3",
3+
"version": "3.0.4",
44
"homepage": "https://github.com/parallax/jsPDF",
55
"description": "PDF Document creation from JavaScript",
66
"main": [

0 commit comments

Comments
 (0)