Skip to content

Commit 8c697bb

Browse files
committed
updated for v3.13.0-beta
1 parent 5a30b0f commit 8c697bb

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Notes]
99

10+
## [3.13.0] - 2023-0?-0?
11+
1012
## [3.12.0] - 2023-03-19
1113

1214
### Added

demos/browser/index.html

Lines changed: 4 additions & 4 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.12.0">
9-
<meta name="updated" content="2023-03-19">
8+
<meta name="version" content="3.13.0">
9+
<meta name="updated" content="2023-04-15">
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">
@@ -27,9 +27,9 @@
2727
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
2828
crossorigin="anonymous"></script>
2929

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

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

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pptxgenjs",
3-
"version": "3.12.0",
3+
"version": "3.13.0-beta",
44
"author": {
55
"name": "Brent Ely",
66
"url": "https://github.com/gitbrent/"

src/pptxgen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ import * as genMedia from './gen-media'
9898
import * as genTable from './gen-tables'
9999
import * as genXml from './gen-xml'
100100

101-
const VERSION = '3.12.0'
101+
const VERSION = '3.13.0-beta-20230415-2112'
102102

103103
export default class PptxGenJS implements IPresentationProps {
104104
// Property getters/setters

0 commit comments

Comments
 (0)