Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy authored Jul 2, 2019
1 parent 4349c05 commit 61608a7
Show file tree
Hide file tree
Showing 21 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The following dependencies are required in order to publishing FLA document crea
If you are trying to install with Adobe Animate CC 2015, you **cannot** install the ZXP with Adobe Extension Manager CC (this not longer is supported in CC 2015). There are two ways to install:

* [Enable syncing](https://www.adobeexchange.com/resources/19) in your Adobe CC desktop application (**recommended**); or
* Use the [Manage Extension utility](http://blogs.adobe.com/animate/installing-zxp-extensions-using-the-manage-extensions-utility/) to manually install.
* Use [Anastasiy’s Extension Manager](https://install.anastasiy.com/) to manually install.

## Building

Expand Down Expand Up @@ -52,13 +52,13 @@ gulp --install
To build the extension in debug mode and allow for remote debugging, run this command. Navigate to http://localhost:8008 to get the DevTools for the Publish Settings dialog.

```bash
gulp --debug --install
gulp --buildDebug --install
```

To rebuild the C++ code on the current platform, use the `--plugin` flag. This will build the plugin for both debug and release.

```bash
gulp --debug --install --plugin
gulp --buildDebug --install --plugin
```

Or to ONLY build the plugin without building the rest of the extension.
Expand Down
2 changes: 1 addition & 1 deletion build/tasks/build-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function(gulp, options, plugins) {
gulp,
options.buildDialog,
plugins,
options.argv.debug
options.argv.buildDebug
);
});
};
2 changes: 1 addition & 1 deletion build/tasks/build-preview-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function(gulp, options, plugins) {
gulp,
options.buildPreviewApp,
plugins,
options.argv.debug
options.argv.buildDebug
);
});
};
2 changes: 1 addition & 1 deletion build/tasks/build-preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function(gulp, options, plugins) {
gulp,
options.buildPreview,
plugins,
options.argv.debug
options.argv.buildDebug
);
});
};
2 changes: 1 addition & 1 deletion build/tasks/build-publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function(gulp, options, plugins) {
gulp,
options.buildPublish,
plugins,
options.argv.debug
options.argv.buildDebug
);
});
};
2 changes: 1 addition & 1 deletion build/tasks/build-spritesheets.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function(gulp, options, plugins) {
gulp,
options.buildSpritesheets,
plugins,
options.argv.debug
options.argv.buildDebug
);
});
};
2 changes: 1 addition & 1 deletion build/tasks/clean.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = function(gulp, options, plugins) {
gulp.task('clean', function(){
var output = options.argv.debug ?
var output = options.argv.buildDebug ?
options.outputDebugName :
options.outputName;
return plugins.del([
Expand Down
2 changes: 1 addition & 1 deletion build/tasks/default.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = function(gulp, options, plugins) {
gulp.task('default', function(done){

var debug = options.argv.debug;
var debug = options.argv.buildDebug;
var plugin = options.argv.plugin;
var install = options.argv.install;

Expand Down
4 changes: 2 additions & 2 deletions build/tasks/install.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = function(gulp, options, plugins) {
var output = options.argv.debug ?
var output = options.argv.buildDebug ?
options.outputDebugName :
options.outputName;

Expand All @@ -8,6 +8,6 @@ module.exports = function(gulp, options, plugins) {
.replace('${output}', output);

gulp.task('install', plugins.shell.task([cmd], {
'quiet': !options.argv.debug
'quiet': !options.argv.buildDebug
}));
};
2 changes: 1 addition & 1 deletion build/tasks/package.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = function(gulp, options, plugins) {
var output = options.argv.debug ?
var output = options.argv.buildDebug ?
options.outputDebugName :
options.outputName;
var cmd = options.packager + ' -sign ' +
Expand Down
2 changes: 1 addition & 1 deletion build/tasks/plugin-copy-mac.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = function(gulp, options) {
var src = options.argv.debug ?
var src = options.argv.buildDebug ?
options.mac.pluginTempDebug :
options.mac.pluginTempRelease;

Expand Down
2 changes: 1 addition & 1 deletion build/tasks/plugin-copy-win.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var path = require('path');
module.exports = function(gulp, options, plugins) {
var src = options.argv.debug ?
var src = options.argv.buildDebug ?
options.win.pluginTempDebug :
options.win.pluginTempRelease;

Expand Down
2 changes: 1 addition & 1 deletion build/tasks/watch.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = function(gulp, options) {
gulp.task('watch', ['default'], function(){
options.argv.debug = true;
options.argv.buildDebug = true;
return gulp.watch(options.watchFiles, ['default']);
});
};
6 changes: 3 additions & 3 deletions extension/CSXS/manifest.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<ExtensionManifest Version="6.0" ExtensionBundleId="com.jibo.PixiAnimate" ExtensionBundleVersion="1.3.4"
<ExtensionManifest Version="6.0" ExtensionBundleId="com.jibo.PixiAnimate" ExtensionBundleVersion="1.4.0"
ExtensionBundleName="PixiAnimate" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionList>
<Extension Id="com.jibo.PixiAnimate.PublishSettings" Version="1.3.4" />
<Extension Id="com.jibo.PixiAnimate.Plugin" Version="1.3.4" />
<Extension Id="com.jibo.PixiAnimate.PublishSettings" Version="1.4.0" />
<Extension Id="com.jibo.PixiAnimate.Plugin" Version="1.4.0" />
</ExtensionList>
<ExecutionEnvironment>
<HostList>
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": "pixi-animate-extension",
"private": true,
"version": "1.3.4",
"version": "1.4.0",
"repository": {
"url": "https://github.com/jiborobot/pixi-animate-extension",
"type": "git"
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@
*
* @brief Minor version of the plugin
*/
#define PIXIJS_PLUGIN_VERSION_MINOR 0x03
#define PIXIJS_PLUGIN_VERSION_MINOR 0x04


/**
* @def PIXIJS_PLUGIN_VERSION_MAINTENANCE
*
* @brief Plugin version's maintenance number.
*/
#define PIXIJS_PLUGIN_VERSION_MAINTENANCE 0x04
#define PIXIJS_PLUGIN_VERSION_MAINTENANCE 0x00


/**
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/PixiAnimate/include/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@
*
* @brief Minor version of the plugin
*/
#define PIXIJS_PLUGIN_VERSION_MINOR 0x03
#define PIXIJS_PLUGIN_VERSION_MINOR 0x04


/**
* @def PIXIJS_PLUGIN_VERSION_MAINTENANCE
*
* @brief Plugin version's maintenance number.
*/
#define PIXIJS_PLUGIN_VERSION_MAINTENANCE 0x04
#define PIXIJS_PLUGIN_VERSION_MAINTENANCE 0x00


/**
Expand Down

0 comments on commit 61608a7

Please sign in to comment.