Skip to content

Commit

Permalink
updated files for 2.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Sep 12, 2018
1 parent 9aaed1d commit e5d0dbb
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,8 +1,15 @@
# Change Log

## [v2.3.0](https://github.com/gitbrent/pptxgenjs/tree/v2.3.0) (2018-??-??)
## [v2.3.0](https://github.com/gitbrent/pptxgenjs/tree/v2.3.0) (2018-09-12)
[Full Changelog](https://github.com/gitbrent/pptxgenjs/compare/v2.2.0...v2.3.0)

**Highlights:**
- New Feature: Placeholders
- New Feature: Speaker Notes
- `addImage()` can now load both local ("../img.png") and remote images ("https://wikimedia.org/logo.jpg")
- Typescript definitions are now available
- `jquery-node` replaced with latest `jquery` package [only affects npm users]

**Fixed Bugs:**
- Remove jquery-node dependency (fixes XSS Vulnerability Security Warning) [\#350](https://github.com/gitbrent/PptxGenJS/issues/350) ([TinkerJack](https://github.com/TinkerJack))
- Cannot set valAxisMinVal to 0 [\#357](https://github.com/gitbrent/PptxGenJS/issues/357) ([GiridharGNair](https://github.com/GiridharGNair))
Expand All @@ -13,6 +20,7 @@
- Bugfix/enhancement for EncodeXML in speaker notes text [\#373](https://github.com/gitbrent/PptxGenJS/pull/373) ([travispwingo](https://github.com/travispwingo))

**Implemented Enhancements:**
- `addImage()` updated with new code allowing both local and remote images to be used (browser and Node). ([gitbrent](https://github.com/gitbrent))
- Typescript definitions have been created for the PptxGenJS API Methods (`pptxgen.d.ts`). ([gitbrent](https://github.com/gitbrent))
- New Feature: Placeholder support in Master Slides [\#359](https://github.com/gitbrent/PptxGenJS/pull/359) ([conbow](https://github.com/conbow))
- New Feature: Speaker Notes [\#239](https://github.com/gitbrent/PptxGenJS/issues/239) [\#361](https://github.com/gitbrent/PptxGenJS/pull/361) ([travispwingo](https://github.com/travispwingo))
Expand Down
4 changes: 2 additions & 2 deletions dist/pptxgen.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pptxgen.bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/pptxgen.js
Expand Up @@ -73,8 +73,8 @@ if ( NODEJS ) {

var PptxGenJS = function(){
// APP
var APP_VER = "2.3.0-beta";
var APP_BLD = "20180825";
var APP_VER = "2.3.0";
var APP_BLD = "20180912";

// CONSTANTS
var MASTER_OBJECTS = {
Expand Down
4 changes: 2 additions & 2 deletions dist/pptxgen.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/pptxgenjs-demo.html
Expand Up @@ -28,8 +28,8 @@

<!-- RELEASE (CDN)
-->
<script src="https://cdn.rawgit.com/gitbrent/PptxGenJS/dccd8f5c/dist/pptxgen.bundle.js"></script>
<script src="https://cdn.rawgit.com/gitbrent/PptxGenJS/dccd8f5c/examples/pptxgenjs-demo.js"></script>
<script src="https://cdn.rawgit.com/gitbrent/PptxGenJS/9aaed1d5/dist/pptxgen.bundle.js"></script>
<script src="https://cdn.rawgit.com/gitbrent/PptxGenJS/9aaed1d5/examples/pptxgenjs-demo.js"></script>
<!-- OFFICE365 TESTING:
<script src="../SiteAssets/pptxgenjs/libs/jquery.min.js"></script>
<script src="../SiteAssets/pptxgenjs/libs/jszip.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "pptxgenjs",
"version": "2.3.0-beta",
"version": "2.3.0",
"author": {
"name": "Brent Ely",
"url": "https://github.com/gitbrent/"
Expand Down

0 comments on commit e5d0dbb

Please sign in to comment.