diff --git a/docs/aeq.Comp.html b/docs/aeq.Comp.html index ddfba82..f1ab731 100644 --- a/docs/aeq.Comp.html +++ b/docs/aeq.Comp.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -489,7 +489,7 @@
Returns:

diff --git a/docs/aeq.Key.html b/docs/aeq.Key.html index 7cecee8..a2293d3 100644 --- a/docs/aeq.Key.html +++ b/docs/aeq.Key.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1744,7 +1744,7 @@
Returns:

diff --git a/docs/aeq.Layer.html b/docs/aeq.Layer.html index 2a3ecb3..c582e91 100644 --- a/docs/aeq.Layer.html +++ b/docs/aeq.Layer.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -919,7 +919,7 @@
Parameters:

diff --git a/docs/aeq.Property_.html b/docs/aeq.Property_.html index 9737358..3805356 100644 --- a/docs/aeq.Property_.html +++ b/docs/aeq.Property_.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -2469,7 +2469,7 @@
Returns:

diff --git a/docs/aeq.app.html b/docs/aeq.app.html index 5d50800..7b396d4 100644 --- a/docs/aeq.app.html +++ b/docs/aeq.app.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1190,7 +1190,7 @@
Returns:

diff --git a/docs/aeq.arrayEx.html b/docs/aeq.arrayEx.html index ddbd9fa..97c8bb9 100644 --- a/docs/aeq.arrayEx.html +++ b/docs/aeq.arrayEx.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1888,7 +1888,7 @@
Returns:

diff --git a/docs/aeq.command.html b/docs/aeq.command.html index 1907d07..b68ca6a 100644 --- a/docs/aeq.command.html +++ b/docs/aeq.command.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -530,7 +530,12 @@
Example

Open file in Finder/Explorer. (aeq.command.revealFile)

-
aeq.command.call('Explorer /select,', 'open -R', '"' + file.fsName + '"' )
aeq.command.call({
    windows: 'Explorer /select,',
    mac: 'open -R',
    arg: '"' + file.fsName + '"'
})
+
aeq.command.call('Explorer /select,', 'open -R', '"' + file.fsName + '"' )
+aeq.command.call({
+    windows: 'Explorer /select,',
+    mac: 'open -R',
+    arg: '"' + file.fsName + '"'
+})
@@ -1004,7 +1009,7 @@
Example

diff --git a/docs/aeq.comp_.html b/docs/aeq.comp_.html index c5271da..41dc9b5 100644 --- a/docs/aeq.comp_.html +++ b/docs/aeq.comp_.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -584,14 +584,21 @@
Returns:
Examples
-

Create a comp in the project root, with name "Example", and a duration of 10 seconds. And use default values for the other options

+

Create a comp in the project root, with name "Example", + and a duration of 10 seconds. And use default values for the + other options

-
var comp = aeq.comp.create({
    name: 'Example',
    duration: 10
})
+
var comp = aeq.comp.create({
+    name: 'Example',
+    duration: 10
+})

Create comp in a folder, with name "Example"

-
var comp = aeq.comp.create(compFolder, {
    name: "Example"
})
+
var comp = aeq.comp.create(compFolder, {
+    name: "Example"
+})

Create a comp with all default values

@@ -810,7 +817,8 @@
Returns:
Example
-

Get all `RenderQueueItem`s that references the comp.

+

Get all `RenderQueueItem`s that references + the comp.

var RQItems = aeq.comp.getCompInQueue( comp, false )
@@ -1138,7 +1146,7 @@
Returns:

diff --git a/docs/aeq.file.html b/docs/aeq.file.html index 8071491..fd3024d 100644 --- a/docs/aeq.file.html +++ b/docs/aeq.file.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1794,7 +1794,7 @@
Returns:

diff --git a/docs/aeq.html b/docs/aeq.html index 513c0c0..b4cbb9e 100644 --- a/docs/aeq.html +++ b/docs/aeq.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -2247,7 +2247,19 @@
Returns:
Example
-
var objectA = {
    test: "example"
};

aeq.extend( objectA, {
    prop: "prop"
});

// ObjectA is now
{
    test: "example",
    prop: "prop"
}
+
var objectA = {
+    test: "example"
+};
+
+aeq.extend( objectA, {
+    prop: "prop"
+});
+
+// ObjectA is now
+{
+    test: "example",
+    prop: "prop"
+}
@@ -13845,7 +13857,10 @@
Returns:
Example
-
function say( greeting ) {
    a = aeq.setDefault( greeting, 'Hello World!' )
    alert( a )
}
+
function say( greeting ) {
+    a = aeq.setDefault( greeting, 'Hello World!' )
+    alert( a )
+}
@@ -14984,17 +14999,20 @@
Examples
    aeq("comp[width=1920 heigth=1080]")
-

Get all properties of layers that are selected and does not have audio:

+

Get all properties of layers that are selected and + does not have audio:

    aeq("layer[selected hasAudio=false] prop")
-

Get properties that have `PropertyValueType.OneD` and are not selected.

+

Get properties that have `PropertyValueType.OneD` and are + not selected.

    aeq("prop[propertyValueType=" + PropertyValueType.OneD + "]:not(selected)");
-

Get layers that do not have audio inside comps that are selected:

+

Get layers that do not have audio inside comps + that are selected:

   aeq("comp:is(selected) layer:not(hasAudio)")
@@ -15019,7 +15037,7 @@
Examples

diff --git a/docs/aeq.layer_.html b/docs/aeq.layer_.html index 93c54ec..fd1a046 100644 --- a/docs/aeq.layer_.html +++ b/docs/aeq.layer_.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1467,7 +1467,7 @@
Returns:

diff --git a/docs/aeq.project.html b/docs/aeq.project.html index 111e76e..a978e91 100644 --- a/docs/aeq.project.html +++ b/docs/aeq.project.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -3074,7 +3074,7 @@
Returns:

diff --git a/docs/aeq.property.html b/docs/aeq.property.html index da83cdf..c9de39e 100644 --- a/docs/aeq.property.html +++ b/docs/aeq.property.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -645,7 +645,7 @@
Example

diff --git a/docs/aeq.renderqueue.html b/docs/aeq.renderqueue.html index 6a534e4..1b87877 100644 --- a/docs/aeq.renderqueue.html +++ b/docs/aeq.renderqueue.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1630,7 +1630,7 @@


diff --git a/docs/aeq.settings.html b/docs/aeq.settings.html index 3a2811e..dbd5bb2 100644 --- a/docs/aeq.settings.html +++ b/docs/aeq.settings.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -2045,7 +2045,7 @@
Returns:

diff --git a/docs/aeq.snippet.html b/docs/aeq.snippet.html index 41cf4b2..37afefb 100644 --- a/docs/aeq.snippet.html +++ b/docs/aeq.snippet.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1423,7 +1423,7 @@
Returns:

diff --git a/docs/aeq.ui.Container.html b/docs/aeq.ui.Container.html index e29373c..e51dbaa 100644 --- a/docs/aeq.ui.Container.html +++ b/docs/aeq.ui.Container.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -4119,7 +4119,7 @@
Returns:

diff --git a/docs/aeq.ui.Window.html b/docs/aeq.ui.Window.html index 0f06e54..cdd9145 100644 --- a/docs/aeq.ui.Window.html +++ b/docs/aeq.ui.Window.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -709,7 +709,7 @@
Returns:

diff --git a/docs/aeq.ui.html b/docs/aeq.ui.html index 13ecd56..267221a 100644 --- a/docs/aeq.ui.html +++ b/docs/aeq.ui.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1021,7 +1021,7 @@
Returns:

diff --git a/docs/assert.js.html b/docs/assert.js.html index 9d40048..23a4243 100644 --- a/docs/assert.js.html +++ b/docs/assert.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -169,7 +169,7 @@

assert.js


diff --git a/docs/attr.js.html b/docs/attr.js.html index 0864157..a2055cb 100644 --- a/docs/attr.js.html +++ b/docs/attr.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -144,7 +144,7 @@

attr.js


diff --git a/docs/dom.js.html b/docs/dom.js.html index 8a5d862..3acf5e3 100644 --- a/docs/dom.js.html +++ b/docs/dom.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -525,7 +525,7 @@

dom.js


diff --git a/docs/forEach.js.html b/docs/forEach.js.html index 56af0fc..77d6573 100644 --- a/docs/forEach.js.html +++ b/docs/forEach.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -294,7 +294,7 @@

forEach.js


diff --git a/docs/global.html b/docs/global.html index 0fab2ed..cd71739 100644 --- a/docs/global.html +++ b/docs/global.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -1747,7 +1747,7 @@
Properties:

diff --git a/docs/index.html b/docs/index.html index d789667..140eb96 100644 --- a/docs/index.html +++ b/docs/index.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -109,7 +109,7 @@

Development

Make sure you have node

diff --git a/docs/main.js.html b/docs/main.js.html index 2694188..580fa19 100644 --- a/docs/main.js.html +++ b/docs/main.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -122,7 +122,7 @@

main.js

return result; }; -aeq.version = "0.2.0" +aeq.version = "0.2.1" aeq.thisObj = this; @@ -341,7 +341,7 @@

main.js


diff --git a/docs/misc_error.js.html b/docs/misc_error.js.html index e5fb5c2..41c853c 100644 --- a/docs/misc_error.js.html +++ b/docs/misc_error.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -101,7 +101,7 @@

misc/error.js


diff --git a/docs/misc_file.js.html b/docs/misc_file.js.html index e22a6f5..265d995 100644 --- a/docs/misc_file.js.html +++ b/docs/misc_file.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -167,7 +167,7 @@

misc/file.js


diff --git a/docs/misc_modifiers.js.html b/docs/misc_modifiers.js.html index 5bca5a4..d57ccf9 100644 --- a/docs/misc_modifiers.js.html +++ b/docs/misc_modifiers.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -92,7 +92,7 @@

misc/modifiers.js


diff --git a/docs/misc_resourceFiles.js.html b/docs/misc_resourceFiles.js.html index 8b2a9c1..11366a1 100644 --- a/docs/misc_resourceFiles.js.html +++ b/docs/misc_resourceFiles.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -151,7 +151,7 @@

misc/resourceFiles.js


diff --git a/docs/misc_system.js.html b/docs/misc_system.js.html index a276ec4..efecc6d 100644 --- a/docs/misc_system.js.html +++ b/docs/misc_system.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -104,7 +104,7 @@

misc/system.js


diff --git a/docs/misc_undoGroup.js.html b/docs/misc_undoGroup.js.html index 2319360..a619f31 100644 --- a/docs/misc_undoGroup.js.html +++ b/docs/misc_undoGroup.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -101,7 +101,7 @@

misc/undoGroup.js


diff --git a/docs/misc_valueInObject.js.html b/docs/misc_valueInObject.js.html index 90de7ab..116f877 100644 --- a/docs/misc_valueInObject.js.html +++ b/docs/misc_valueInObject.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -111,7 +111,7 @@

misc/valueInObject.js


diff --git a/docs/modules_app.js.html b/docs/modules_app.js.html index 3ccc424..67008f2 100644 --- a/docs/modules_app.js.html +++ b/docs/modules_app.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -236,7 +236,7 @@

modules/app.js


diff --git a/docs/modules_command.js.html b/docs/modules_command.js.html index 7e38237..e1df32b 100644 --- a/docs/modules_command.js.html +++ b/docs/modules_command.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -196,7 +196,7 @@

modules/command.js


diff --git a/docs/modules_comp.js.html b/docs/modules_comp.js.html index 88123f9..9a337ff 100644 --- a/docs/modules_comp.js.html +++ b/docs/modules_comp.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -214,7 +214,7 @@

modules/comp.js


diff --git a/docs/modules_file.js.html b/docs/modules_file.js.html index d5f219a..f0c9716 100644 --- a/docs/modules_file.js.html +++ b/docs/modules_file.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -301,7 +301,7 @@

modules/file.js


diff --git a/docs/modules_layer.js.html b/docs/modules_layer.js.html index 89fc768..fdd4440 100644 --- a/docs/modules_layer.js.html +++ b/docs/modules_layer.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -180,7 +180,7 @@

modules/layer.js


diff --git a/docs/modules_project.js.html b/docs/modules_project.js.html index 37d6374..f4b14f0 100644 --- a/docs/modules_project.js.html +++ b/docs/modules_project.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -409,7 +409,7 @@

modules/project.js


diff --git a/docs/modules_property.js.html b/docs/modules_property.js.html index 630b047..cc240fd 100644 --- a/docs/modules_property.js.html +++ b/docs/modules_property.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -159,7 +159,7 @@

modules/property.js


diff --git a/docs/modules_renderqueue.js.html b/docs/modules_renderqueue.js.html index 608b6bb..f770781 100644 --- a/docs/modules_renderqueue.js.html +++ b/docs/modules_renderqueue.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -287,7 +287,7 @@

modules/renderqueue.js


diff --git a/docs/modules_settings.js.html b/docs/modules_settings.js.html index 227b033..2f96e3f 100644 --- a/docs/modules_settings.js.html +++ b/docs/modules_settings.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -256,7 +256,7 @@

modules/settings.js


diff --git a/docs/modules_snippet.js.html b/docs/modules_snippet.js.html index d1224bb..ecdf738 100644 --- a/docs/modules_snippet.js.html +++ b/docs/modules_snippet.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -260,7 +260,7 @@

modules/snippet.js


diff --git a/docs/objects_array.js.html b/docs/objects_array.js.html index 2169451..580ab06 100644 --- a/docs/objects_array.js.html +++ b/docs/objects_array.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -352,7 +352,7 @@

objects/array.js


diff --git a/docs/objects_comp.js.html b/docs/objects_comp.js.html index 993672b..71a75d5 100644 --- a/docs/objects_comp.js.html +++ b/docs/objects_comp.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -129,7 +129,7 @@

objects/comp.js


diff --git a/docs/objects_key.js.html b/docs/objects_key.js.html index 3478aef..0bb3286 100644 --- a/docs/objects_key.js.html +++ b/docs/objects_key.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -507,7 +507,7 @@

objects/key.js


diff --git a/docs/objects_layer.js.html b/docs/objects_layer.js.html index 5bcf581..a49c207 100644 --- a/docs/objects_layer.js.html +++ b/docs/objects_layer.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -387,7 +387,7 @@

objects/layer.js


diff --git a/docs/objects_property.js.html b/docs/objects_property.js.html index 148ede6..24339e3 100644 --- a/docs/objects_property.js.html +++ b/docs/objects_property.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -365,7 +365,7 @@

objects/property.js


diff --git a/docs/select.js.html b/docs/select.js.html index 890992c..8c08ada 100644 --- a/docs/select.js.html +++ b/docs/select.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -341,7 +341,7 @@

select.js


diff --git a/docs/types.js.html b/docs/types.js.html index c8be1fe..ee3f7d8 100644 --- a/docs/types.js.html +++ b/docs/types.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -481,7 +481,7 @@

types.js


diff --git a/docs/ui_container.js.html b/docs/ui_container.js.html index b8b2898..bc862ae 100644 --- a/docs/ui_container.js.html +++ b/docs/ui_container.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -531,7 +531,7 @@

ui/container.js


diff --git a/docs/ui_main.js.html b/docs/ui_main.js.html index 4f3ca92..e8ac05e 100644 --- a/docs/ui_main.js.html +++ b/docs/ui_main.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -163,7 +163,7 @@

ui/main.js


diff --git a/docs/ui_window.js.html b/docs/ui_window.js.html index 8d89194..6e4fb87 100644 --- a/docs/ui_window.js.html +++ b/docs/ui_window.js.html @@ -35,7 +35,7 @@

- 0.2.0 + 0.2.1

@@ -139,7 +139,7 @@

ui/window.js


diff --git a/lib/main.js b/lib/main.js index 36355bc..6db771d 100644 --- a/lib/main.js +++ b/lib/main.js @@ -64,7 +64,7 @@ var aeq = function(selector, context) { return result; }; -aeq.version = "0.2.0" +aeq.version = "0.2.1" aeq.thisObj = this; diff --git a/package.json b/package.json index d859dbf..77ccb08 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aequery", - "version": "0.2.0", + "version": "0.2.1", "description": "General purpose after effects scripting library", "main": "dist/aequery.js", "scripts": {