@nexrender/core 1.50.6 → 1.50.7
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 +2 -2
- package/src/tasks/render.js +1 -1
- package/src/tasks/setup.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexrender/core",
|
|
3
|
-
"version": "1.50.
|
|
3
|
+
"version": "1.50.7",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"author": "Inlife",
|
|
6
6
|
"homepage": "https://www.nexrender.com",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "007bcea7cc5837f89de5087bc2e7337fea2838cb"
|
|
41
41
|
}
|
package/src/tasks/render.js
CHANGED
|
@@ -277,7 +277,7 @@ Estimated date of change to the new behavior: 2023-06-01.\n`);
|
|
|
277
277
|
fs.writeFileSync(logPath, outputStr);
|
|
278
278
|
|
|
279
279
|
/* resolve job without checking if file exists, or its size for image sequences */
|
|
280
|
-
if (settings.skipRender || job.template.imageSequence || ['jpeg', 'jpg', 'png', 'tif'].indexOf(outputFile) !== -1) {
|
|
280
|
+
if (settings.skipRender || job.template.imageSequence || ['jpeg', 'jpg', 'png', 'tif', 'tga'].indexOf(outputFile) !== -1) {
|
|
281
281
|
settings.track('Job Render Finished', {
|
|
282
282
|
job_id: job.uid, // anonymized internally
|
|
283
283
|
job_finish_reason: 'skipped_check',
|
package/src/tasks/setup.js
CHANGED
|
@@ -36,7 +36,7 @@ An example of how that might look like: { "outputModule": "h264", "outputExt": "
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
// NOTE: for still (jpg) image sequence frame filename will be changed to result_[#####].jpg
|
|
39
|
-
if (job.template.outputExt && ['jpeg', 'jpg', 'png', 'tif'].indexOf(job.template.outputExt) !== -1) {
|
|
39
|
+
if (job.template.outputExt && ['jpeg', 'jpg', 'png', 'tif', 'tga'].indexOf(job.template.outputExt) !== -1) {
|
|
40
40
|
job.resultname = 'result_[#####].' + job.template.outputExt;
|
|
41
41
|
job.template.imageSequence = true;
|
|
42
42
|
}
|