Skip to content

Commit 555774d

Browse files
committed
updated for v3.11.0 release
1 parent 5f1df2b commit 555774d

14 files changed

+52
-45
lines changed

README.md

Lines changed: 29 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,17 @@
1616
- [Table of Contents](#table-of-contents)
1717
- [Introduction](#introduction)
1818
- [Features](#features)
19+
- [Works Everywhere](#works-everywhere)
20+
- [Full Featured](#full-featured)
21+
- [Simple and Powerful](#simple-and-powerful)
22+
- [Export Your Way](#export-your-way)
23+
- [HTML to PowerPoint](#html-to-powerpoint)
1924
- [Live Demos](#live-demos)
2025
- [Installation](#installation)
21-
- [CDN](#cdn)
22-
- [Download](#download)
2326
- [Npm](#npm)
2427
- [Yarn](#yarn)
28+
- [CDN](#cdn)
29+
- [Download](#download)
2530
- [Additional Builds](#additional-builds)
2631
- [Documentation](#documentation)
2732
- [Quick Start Guide](#quick-start-guide)
@@ -42,31 +47,31 @@ This library creates Open Office XML (OOXML) Presentations which are compatible
4247

4348
# Features
4449

45-
**Works Everywhere**
50+
## Works Everywhere
4651

4752
- Every modern desktop and mobile browser is supported
4853
- Integrates with Node, Angular, React, and Electron
4954
- Compatible with PowerPoint, Keynote, and more
5055

51-
**Full Featured**
56+
## Full Featured
5257

5358
- All major object types are available (charts, shapes, tables, etc.)
5459
- Master Slides for academic/corporate branding
5560
- SVG images, animated gifs, YouTube videos, RTL text, and Asian fonts
5661

57-
**Simple And Powerful**
62+
## Simple and Powerful
5863

5964
- The absolute easiest PowerPoint library to use
6065
- Learn as you code will full typescript definitions included
6166
- Tons of demo code comes included (over 75 slides of features)
6267

63-
**Export Your Way**
68+
## Export Your Way
6469

6570
- Exports files direct to client browsers with proper MIME-type
6671
- Other export formats available: base64, blob, stream, etc.
6772
- Presentation compression options and more
6873

69-
**HTML to PowerPoint**
74+
## HTML to PowerPoint
7075

7176
- Includes powerful [HTML-to-PowerPoint](#html-to-powerpoint-feature) feature to transform HTML tables into presentations with a single line of code
7277

@@ -78,21 +83,35 @@ Visit the demos page to create a simple presentation to see how easy it is to us
7883

7984
# Installation
8085

86+
## Npm
87+
88+
[PptxGenJS NPM Home](https://www.npmjs.com/package/pptxgenjs)
89+
90+
```bash
91+
npm install pptxgenjs --save
92+
```
93+
94+
## Yarn
95+
96+
```bash
97+
yarn add pptxgenjs
98+
```
99+
81100
## CDN
82101

83102
[jsDelivr Home](https://www.jsdelivr.com/package/gh/gitbrent/pptxgenjs)
84103

85104
Bundle: Modern Browsers and IE11
86105

87106
```html
88-
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.10.0/dist/pptxgen.bundle.js"></script>
107+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.11.0/dist/pptxgen.bundle.js"></script>
89108
```
90109

91110
Min files: Modern Browsers
92111

93112
```html
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>
113+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.11.0/libs/jszip.min.js"></script>
114+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@3.11.0/dist/pptxgen.min.js"></script>
96115
```
97116

98117
## Download
@@ -114,20 +133,6 @@ Min files: Modern Browsers
114133
<script src="PptxGenJS/dist/pptxgen.min.js"></script>
115134
```
116135

117-
## Npm
118-
119-
[PptxGenJS NPM Home](https://www.npmjs.com/package/pptxgenjs)
120-
121-
```bash
122-
npm install pptxgenjs --save
123-
```
124-
125-
## Yarn
126-
127-
```bash
128-
yarn add pptxgenjs
129-
```
130-
131136
## Additional Builds
132137

133138
- CommonJS: `dist/pptxgen.cjs.js`

demos/browser/index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="author" content="https://github.com/gitbrent">
77
<meta name="website" content="https://github.com/gitbrent/PptxGenJS/">
88
<meta name="version" content="3.11.0">
9-
<meta name="updated" content="2022-06-12">
9+
<meta name="updated" content="2022-08-06">
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,10 @@
4242
<script src="../modules/demos.mjs" type="module"></script>
4343
-->
4444
<!-- LOCAL TESTING: bundle
45-
-->
4645
<script src="./js/pptxgen.bundle.js"></script>
4746
<script src="../modules/demos.mjs" type="module"></script>
47+
-->
48+
4849
<script type="module">
4950
import { buildDataTable, doAppStart, execGenSlidesFunc, runAllDemos, table2slides1, table2slides2, table2slidesDemoForTab } from './js/browser.js';
5051

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.10.0",
3+
"version": "3.11.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.10.0"
23+
"pptxgenjs": "^3.11.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.10.0",
10+
"pptxgenjs": "^3.11.0",
1111
"react": "^17.0.2",
1212
"react-dom": "^17.0.2",
1313
"react-scripts": "5.0.0",

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.

dist/pptxgen.cjs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* PptxGenJS 3.11.0-beta @ 2022-08-06T16:38:54.960Z */
1+
/* PptxGenJS 3.11.0 @ 2022-08-06T19:31:52.315Z */
22
'use strict';
33

44
var JSZip = require('jszip');
@@ -6697,7 +6697,7 @@ function createSvgPngPreview(rel) {
66976697
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
66986698
* SOFTWARE.
66996699
*/
6700-
var VERSION = '3.11.0-beta-20220725-2230';
6700+
var VERSION = '3.11.0';
67016701
var PptxGenJS = /** @class */ (function () {
67026702
function PptxGenJS() {
67036703
var _this = this;

dist/pptxgen.es.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* PptxGenJS 3.11.0-beta @ 2022-08-06T16:38:54.969Z */
1+
/* PptxGenJS 3.11.0 @ 2022-08-06T19:31:52.331Z */
22
import JSZip from 'jszip';
33

44
/******************************************************************************
@@ -6691,7 +6691,7 @@ function createSvgPngPreview(rel) {
66916691
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
66926692
* SOFTWARE.
66936693
*/
6694-
var VERSION = '3.11.0-beta-20220725-2230';
6694+
var VERSION = '3.11.0';
66956695
var PptxGenJS = /** @class */ (function () {
66966696
function PptxGenJS() {
66976697
var _this = this;

0 commit comments

Comments
 (0)