@nexrender/core 1.43.1 → 1.43.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexrender/core",
|
|
3
|
-
"version": "1.43.
|
|
3
|
+
"version": "1.43.3",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"author": "Inlife",
|
|
6
6
|
"scripts": {
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "9f836119c0636690b8ab32f73e4fb6919ae484f5"
|
|
34
34
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
module.exports = /*syntax:js*/ `// Command line renderer for After Effects. (nexrender-patch-v1.0.
|
|
1
|
+
module.exports = /*syntax:js*/ `// Command line renderer for After Effects. (nexrender-patch-v1.0.4)
|
|
2
2
|
|
|
3
3
|
// This function constructs an AECommandLineRenderer object.
|
|
4
4
|
// One and only one of these will be created to perform rendering tasks
|
|
@@ -254,7 +254,7 @@ function AECommandLineRenderer() {
|
|
|
254
254
|
|
|
255
255
|
// ExtendScript too old to have str.trim(), replace when it does
|
|
256
256
|
function trim(s) {
|
|
257
|
-
return s.replace(
|
|
257
|
+
return s.replace(/^s+|s+$/g, '');
|
|
258
258
|
}
|
|
259
259
|
|
|
260
260
|
for (var i in keyValuePairs) {
|
package/src/tasks/render.js
CHANGED
|
@@ -3,7 +3,7 @@ const path = require('path')
|
|
|
3
3
|
const {spawn} = require('child_process')
|
|
4
4
|
const {expandEnvironmentVariables, checkForWSL} = require('../helpers/path')
|
|
5
5
|
|
|
6
|
-
const progressRegex = /([\d]{1,2}:[\d]{2}:[\d]{2}:[\d]{2})\s+(\(\d
|
|
6
|
+
const progressRegex = /([\d]{1,2}:[\d]{2}:[\d]{2}:[\d]{2})\s+(\(\d+[UL]?\))/gi;
|
|
7
7
|
const durationRegex = /Duration:\s+([\d]{1,2}:[\d]{2}:[\d]{2}:[\d]{2})/gi;
|
|
8
8
|
const startRegex = /Start:\s+([\d]{1,2}:[\d]{2}:[\d]{2}:[\d]{2})/gi;
|
|
9
9
|
const nexrenderErrorRegex = /Error:\s+(nexrender:.*)$/gim;
|