Manager: reorder job table columns
Reorder from name/type/priority/updated to name/updated/priority/type. The new ordering moves the more important info into (according to Blender Studio) view when the job table is narrow.
This commit is contained in:
parent
a6db15fdfa
commit
6711f9dabe
@ -6,6 +6,7 @@ bugs in actually-released versions.
|
||||
|
||||
## 3.3.1 - released 2023-12-14
|
||||
|
||||
- Reorder the Jobs table, so that it lists 'Name', 'Updated', 'Priority', 'Job Type'.
|
||||
- Upgrade Blender Asset Tracer to 1.17 to fix a bug with non-IES lights ([#104269](https://projects.blender.org/studio/flamenco/issues/104269)).
|
||||
- Perform databases migration on both Manager and Worker with [Goose](https://pressly.github.io/goose/) instead of GORM Automigrate. This is invisible to users of Flamenco, but will help developers in the future.
|
||||
- Improve Worker performance a tiny bit by enabling *write-ahead journaling* for its database. This will likely go unnoticed, but might help when there is a lot of logs being produced by Blender, and they all need to be cached on the Worker because Flamenco Manager is unreachable.
|
||||
|
@ -64,8 +64,6 @@ export default {
|
||||
},
|
||||
},
|
||||
{ title: 'Name', field: 'name', sorter: 'string' },
|
||||
{ title: 'Type', field: 'type', sorter: 'string' },
|
||||
{ title: 'Prio', field: 'priority', sorter: 'number' },
|
||||
{
|
||||
title: 'Updated',
|
||||
field: 'updated',
|
||||
@ -79,6 +77,8 @@ export default {
|
||||
return datetime.relativeTime(cellValue);
|
||||
},
|
||||
},
|
||||
{ title: 'Prio', field: 'priority', sorter: 'number' },
|
||||
{ title: 'Type', field: 'type', sorter: 'string' },
|
||||
],
|
||||
rowFormatter(row) {
|
||||
const data = row.getData();
|
||||
|
Loading…
x
Reference in New Issue
Block a user