Commit Graph

469 Commits

Author SHA1 Message Date
084712baba Simple Blender render: pass frame range in Blender notation
Pass the frame range in Blender notation (`n..m`) instead of "printer"
notation (`n-m`).
2022-03-17 13:08:37 +01:00
1bcf4139bf Worker: be a bit faster in requesting a new task 2022-03-17 13:07:48 +01:00
8d52a03648 Manager: fix bug in task scheduler
The task scheduler was handing out tasks for which any dependency (instead
of all dependencies) were completed.
2022-03-17 13:07:20 +01:00
c5a2a23f6e Manager: reduce log levels 2022-03-17 11:47:53 +01:00
ec77de886b Manager: remove invalid comment 2022-03-17 11:46:04 +01:00
517b007ae5 Manager: improve logging of created tasks 2022-03-17 11:45:56 +01:00
bedf7869f8 Manager: replace "direction=twoway" with "is_twoway=true" in config
A boolean provides less context to the setting, so it's not as easy to
understand. However, in this case the simple case will have `is_twoway=false` and be ommitted from the configuration file. This makes the simple case even simpler.
2022-03-17 11:33:41 +01:00
5728884fed FEATURES: add issue with "add task" log entry 2022-03-17 11:25:58 +01:00
3c01c18634 Manager: remove unsupported settings & rename existing one
Comment out all unused-but-desired-in-the-future settings, remove some
settings that will never be used, and rename `ssdp_discovery` to
`autodiscoverable`.
2022-03-17 11:25:40 +01:00
882c5ee478 Manager: include the version of Flamenco Manager in the written config 2022-03-17 11:19:00 +01:00
50cc1e64d0 Manager: add -write-config CLI option to create config file and quit 2022-03-17 11:18:26 +01:00
3f081d8c7b Update debug-job-render.sh to use current settings 2022-03-17 11:10:27 +01:00
dbc5109058 Manager: reduce logging of configuration service 2022-03-17 11:10:13 +01:00
22ea599554 Manager: periodically run the SQL VACUUM command 2022-03-17 11:03:29 +01:00
e7a5e0565d FEATURES: add new feature idea 2022-03-17 10:53:15 +01:00
93616cef3a Manager: reduce log level of "worker requesting task" 2022-03-17 10:53:00 +01:00
d3a3543fdc Features: add more things to do 2022-03-15 19:21:40 +01:00
59f58d92b8 Addon: add file browser buttons to file/directory path settings/properties 2022-03-15 18:45:28 +01:00
6764ee8259 Addon: actually allow setting the job storage path 2022-03-15 18:37:48 +01:00
1fcbba79d7 Cleanup: addon, fix MyPy error 2022-03-15 18:36:53 +01:00
b69b3b6b10 Addon: nicer layout for the Flamenco panel 2022-03-15 18:36:40 +01:00
9066fcacff Manager: reorder Simple Blender Render settings 2022-03-15 17:49:20 +01:00
f593ef4a3e Addon: nicer error message when the Manager cannot be reached 2022-03-15 17:49:06 +01:00
abe46c264e Add idea to FEATURES.md 2022-03-15 17:48:54 +01:00
2187464d5e Allow the render output path to have a {timestamp} field 2022-03-15 17:18:11 +01:00
09a476e11a Compute render output path when evaluating job settings
Compute render output path when evaluating job settings, which is done
within the Flamenco add-on, instead of in the job compiler script. This
allows the UI to show the render path, rather than it only being known
after the job has been submitted.
2022-03-15 16:56:44 +01:00
7bfde1df0b Manager: determine final render output path in job compiler
This might not be the best way to do things, but it is very flexible and
allows TDs to determine the behaviour in their own job compiler script.
It doesn't allow a preview of "this is what the final render path will be"
in the Blender GUI though.
2022-03-15 13:17:55 +01:00
2cf388566f Cleanup: manager, remove unused code 2022-03-15 13:16:21 +01:00
8382fde977 README: just some small updates to the 'building' section 2022-03-15 12:06:38 +01:00
6d492a48b4 Manager: tooltip for frame range setting 2022-03-15 11:32:59 +01:00
4ca71d96ce Manager: fix pythonisms in JS code 2022-03-15 11:32:23 +01:00
f9d9bc99bc Addon: nicer layout of Flamenco panel 2022-03-15 11:03:12 +01:00
a8d11f4f45 Addon: make job settings non-animatable 2022-03-15 11:02:45 +01:00
e15f066dde Automatically evaluate hidden job settings
Job settings that are not visible and have an `eval` key will be
automatically evaluated when the job is submitted.
2022-03-15 10:56:58 +01:00
4e570d601c Manager: fix tests for recent change from filepath to blendfile setting
4196460c29a607e1d3d2d052bf2bf546d5c05616 changed the name of the job
setting used to communicate the input blend file path, but the tests
weren't updated for this.
2022-03-15 10:46:58 +01:00
04ac003ed6 Features: add new feature to prevent job submission with outdated job type 2022-03-15 10:34:27 +01:00
f1a13ad521 Addon: allow undoing setting evaluation 2022-03-14 18:45:29 +01:00
a6ac331612 Allow Python evaluation for computing job settings in the addon 2022-03-14 18:44:39 +01:00
4196460c29 Automatically include input blend file path in job settings 2022-03-14 18:18:10 +01:00
9fec9c479f Cleanup: Addon, remove unused imports 2022-03-14 18:17:32 +01:00
ab526a30a9 Cleanup: Addon, remove test files 2022-03-14 17:01:47 +01:00
b5053734dd Addon: submit job to Manager after packing the files 2022-03-14 17:00:12 +01:00
7352b0950b Addon: remove debug prints 2022-03-14 17:00:12 +01:00
33b5faff2b Addon: fix MyPy errors 2022-03-14 17:00:12 +01:00
7b090bdbd6 OAPI: job submission endpoint now returns Job instead of SubmittedJob 2022-03-14 16:59:59 +01:00
f6e636f8de Addon: cleanup, prefix TYPE_CHECKING imports with underscores
Prefix anything that's imported in an `if TYPE_CHECKING` block with
underscores, to indicate they're not the real types.
2022-03-14 16:35:21 +01:00
b993f38889 Addon: store available job types on scene
Storing the available job types on the Scene makes it possible to restore
the Flamenco job submission UI without communication with the Manager.
2022-03-14 15:36:44 +01:00
c8ae856131 Features: add reminder to hide custom RNA options 2022-03-14 14:40:27 +01:00
76ba0a201b OAPI: remove Configuration component schema
Nothing was using the `Configuration` schema, so I removed it from the
flamenco-manager.yaml OpenAPI definition file.
2022-03-14 14:40:16 +01:00
ad3750dfbe Addon: cleanup, split propgroup generator from job type code 2022-03-14 14:39:10 +01:00