Skip to content

Commit

Permalink
Version 0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fcamarlinghi committed Mar 7, 2018
1 parent 2d5d957 commit d308ca7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,20 @@ It is based on the `csxs` command line tool by [Creative Market](https://github.

## Changelog
### Latest Version
**0.4.5**:

* Fixed CEFCommandLine parameters not being applied to all builds.
* Updated dependencies to the latest available versions.

Thanks to *alebianco* for contributing these changes.

### Previous Releases
**0.4.4**:

* Fixed extension packaging for Animate CC 2017 and CC 2018.

Thanks to *alebianco* for contributing this fix.

### Previous Releases
**0.4.3**:

* Added support for CC2018.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-cep",
"description": "A Grunt plugin that helps debugging and packaging HTML5-based extensions for Adobe Creative Cloud applications.",
"version": "0.4.4",
"version": "0.4.5",
"homepage": "https://github.com/fcamarlinghi/grunt-cep",
"author": {
"name": "Francesco Camarlinghi",
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/xml.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ module.exports = function (grunt)
build.extensions.forEach(function (extension)
{
//<CEFCommandLine>
var cef_params = [];
if (Array.isArray(extension.cef_params))
{
var cef_params = [];
extension.cef_params.forEach(function (cef_param)
{
cef_params.push('<Parameter>' + cef_param + '</Parameter>')
Expand Down
1 change: 1 addition & 0 deletions tasks/lib/zxp.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ module.exports = function (grunt)
var zxp_path = (function ()
{
var exec_name = require('zxp-provider').bin;
// grunt.util.spawn will complain if exec is wrapped in quotes
exec_name = exec_name.replace(/"(.*)"/, "$1");
return exec_name;
})();
Expand Down

0 comments on commit d308ca7

Please sign in to comment.