Skip to content

Commit 06d7938

Browse files
committed
release v3.10.0
1 parent 581f660 commit 06d7938

16 files changed

+28
-28
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Notes]
99

10-
## [3.10.0] - 2022-04-1?
10+
## [3.10.0] - 2022-04-10
1111

1212
### Added
1313

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ Visit the demos page to create a simple presentation to see how easy it is to us
8585
Bundle: Modern Browsers and IE11
8686

8787
```html
88-
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.9.0/dist/pptxgen.bundle.js"></script>
88+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.10.0/dist/pptxgen.bundle.js"></script>
8989
```
9090

9191
Min files: Modern Browsers
9292

9393
```html
94-
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.9.0/libs/jszip.min.js"></script>
95-
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.9.0/dist/pptxgen.min.js"></script>
94+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.10.0/libs/jszip.min.js"></script>
95+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.10.0/dist/pptxgen.min.js"></script>
9696
```
9797

9898
## Download

demos/browser/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<meta name="author" content="https://github.com/gitbrent">
77
<meta name="website" content="https://github.com/gitbrent/PptxGenJS/">
8-
<meta name="version" content="3.10.0-beta">
9-
<meta name="updated" content="2022-01-30">
8+
<meta name="version" content="3.10.0">
9+
<meta name="updated" content="2022-04-10">
1010
<link rel="icon" href="images/favicon-32x32.png" sizes="32x32" type="image/png">
1111
<link rel="icon" href="images/favicon-16x16.png" sizes="16x16" type="image/png">
1212
<link rel="icon" href="images/favicon.png">
@@ -28,9 +28,9 @@
2828
crossorigin="anonymous"></script>
2929

3030
<!-- RELEASE (CDN)
31+
-->
3132
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@latest/dist/pptxgen.bundle.js"></script>
3233
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@latest/demos/modules/demos.mjs" type="module"></script>
33-
-->
3434
<!--
3535
TODO: [only used during `-beta` dev cycles; update to below on release]
3636
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@master/dist/pptxgen.bundle.js"></script>
@@ -42,9 +42,9 @@
4242
<script src="../modules/demos.mjs" type="module"></script>
4343
-->
4444
<!-- LOCAL TESTING: bundle
45+
<script src="./js/pptxgen.bundle.js"></script>
46+
<script src="../modules/demos.mjs" type="module"></script>
4547
-->
46-
<script src="./js/pptxgen.bundle.js"></script>
47-
<script src="../modules/demos.mjs" type="module"></script>
4848

4949
<script type="module">
5050
import { buildDataTable, doAppStart, execGenSlidesFunc, runAllDemos, table2slides1, table2slides2, table2slidesDemoForTab } from './js/browser.js';

demos/browser/js/pptxgen.bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/browser/js/pptxgen.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pptxgenjs-demos-node",
3-
"version": "3.9.0",
3+
"version": "3.10.0",
44
"author": {
55
"name": "Brent Ely",
66
"url": "https://github.com/gitbrent/"
@@ -20,6 +20,6 @@
2020
},
2121
"license": "MIT",
2222
"dependencies": {
23-
"pptxgenjs": "^3.8.0"
23+
"pptxgenjs": "^3.10.0"
2424
}
2525
}

demos/react-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"@testing-library/jest-dom": "^5.16.1",
88
"@testing-library/react": "^11.2.7",
99
"@testing-library/user-event": "^12.8.3",
10-
"pptxgenjs": "^3.8.0",
10+
"pptxgenjs": "^3.10.0",
1111
"react": "^17.0.2",
1212
"react-dom": "^17.0.2",
1313
"react-scripts": "4.0.3",

demos/react-demo/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function App() {
7474
<nav className="navbar navbar-expand-lg navbar-dark bg-primary">
7575
<div className="container-fluid">
7676
<a className="navbar-brand" href="https://gitbrent.github.io/PptxGenJS/">
77-
<img src={logo} width="30" height="24" />
77+
<img src={logo} alt="logo" width="30" height="24" />
7878
PptxGenJS
7979
</a>
8080
<button

dist/pptxgen.bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pptxgen.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)