Skip to content

Commit

Permalink
updated to v3.10.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Jan 30, 2022
1 parent 8ec933e commit f1686a4
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Notes]

## [3.10.0] - 2022-??-??

## [3.9.0] - 2021-12-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2020 Brent Ely
Copyright (c) 2015-2022 Brent Ely

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This library creates Open Office XML (OOXML) Presentations which are compatible
**Works Everywhere**

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

**Full Featured**
Expand All @@ -58,7 +58,7 @@ This library creates Open Office XML (OOXML) Presentations which are compatible

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

**Export Your Way**

Expand Down
4 changes: 3 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dist/pptxgen.js"
],
"dependencies": {
"jszip": "^3.4.0"
"jszip": "^3.7.1"
},
"authors": [
"Brent Ely <https://github.com/gitbrent>"
Expand Down Expand Up @@ -37,6 +37,8 @@
"**/.*",
"node_modules",
"bower_components",
"demo",
"docs",
"test",
"tests"
]
Expand Down
8 changes: 4 additions & 4 deletions demos/browser/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="https://github.com/gitbrent">
<meta name="website" content="https://github.com/gitbrent/PptxGenJS/">
<meta name="version" content="3.9.0">
<meta name="updated" content="2021-12-12">
<meta name="version" content="3.10.0-beta">
<meta name="updated" content="2022-01-30">
<link rel="icon" href="images/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="icon" href="images/favicon-16x16.png" sizes="16x16" type="image/png">
<link rel="icon" href="images/favicon.png">
Expand All @@ -27,9 +27,9 @@
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
crossorigin="anonymous"></script>

<!-- RELEASE (CDN)
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@latest/dist/pptxgen.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/gitbrent/pptxgenjs@latest/demos/modules/demos.mjs" type="module"></script>
<!-- RELEASE (CDN)
-->
<!--
TODO: [only used during `-beta` dev cycles; update to below on release]
Expand All @@ -42,9 +42,9 @@
<script src="../modules/demos.mjs" type="module"></script>
-->
<!-- LOCAL TESTING: bundle
-->
<script src="./js/pptxgen.bundle.js"></script>
<script src="../modules/demos.mjs" type="module"></script>
-->

<script type="module">
import { buildDataTable, doAppStart, execGenSlidesFunc, runAllDemos, table2slides1, table2slides2, table2slidesDemoForTab } from './js/browser.js';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pptxgenjs",
"version": "3.9.0",
"version": "3.10.0-beta",
"author": {
"name": "Brent Ely",
"url": "https://github.com/gitbrent/"
Expand Down
2 changes: 1 addition & 1 deletion src/pptxgen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ import * as genMedia from './gen-media'
import * as genTable from './gen-tables'
import * as genXml from './gen-xml'

const VERSION = '3.9.0'
const VERSION = '3.10.0-beta-20220130-1457'

export default class PptxGenJS implements IPresentationProps {
// Property getters/setters
Expand Down
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for pptxgenjs 3.9.0
// Type definitions for pptxgenjs 3.10.0
// Project: https://gitbrent.github.io/PptxGenJS/
// Definitions by: Brent Ely <https://github.com/gitbrent/>
// Michael Beaumont <https://github.com/michaelbeaumont>
Expand Down

0 comments on commit f1686a4

Please sign in to comment.