Skip to content

Commit

Permalink
Fixed "Call alias" action that was broken in v.0.6.2: it would lose p…
Browse files Browse the repository at this point in the history
…arameters if you opened a project created with the older version of a plugin
  • Loading branch information
valerypopoff committed Mar 23, 2018
1 parent cc8bcc1 commit 1ab76bc
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Construct 3/aces.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
"highlight": false,
"params": [
{ "id": "cell-name", "type": "string" },
{ "id": "cell-call-parameters", "type": "variadic" }
{ "id": "js-function-parameters", "type": "variadic" }
]
}

Expand Down
2 changes: 1 addition & 1 deletion Construct 3/addon.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "plugin",
"name": "Valerypopoff JS Plugin",
"id": "ValerypopoffJSPlugin",
"version": "0.6.2.0",
"version": "0.6.2.1",
"author": "Valera Popov",
"website": "http://www.valerypopoff.ru",
"documentation": "https://readymag.com/valerypopoff/valerypopoff-js-plugin/",
Expand Down
Empty file modified Construct 3/c2runtime/runtime.js
100644 → 100755
Empty file.
Empty file modified Construct 3/icon.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Construct 3/instance.js
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion Construct 3/lang/en-US.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@
"name": "Alias expression",
"desc": "Alias expression to call."
},
"cell-call-parameters": {
"js-function-parameters": {
"name": "Parameter {n}",
"desc": "Parameter to pass to the function."
}
Expand Down
2 changes: 1 addition & 1 deletion Construct 3/plugin.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
const PLUGIN_ID = "ValerypopoffJSPlugin";
////////////////////////////////////////////

const PLUGIN_VERSION = "0.6.2.0";
const PLUGIN_VERSION = "0.6.2.1";
const PLUGIN_CATEGORY = "data-and-storage";

let app = null;
Expand Down
Empty file modified Construct 3/type.js
100644 → 100755
Empty file.

0 comments on commit 1ab76bc

Please sign in to comment.