Group sorting in project.yml

The project.yml file provides a ‘groups’ section to group apps. The sorting of the groups is based on the order of the groups listed.
Example:

default_group: Studio
  groups:
  - matches:
    - '*Max*'
    - '*Maya*'
    - '*Nuke*'
    name: Creative Tools
  - matches:
    - '*Hiero*'
    name: Editorial Tools
  - matches:
      - '*Alias*'
      - '*VRED*'
    name: Automotive Tools

How do I specify the default_group to be in a particular order in the groups sections?
I tried adding to the end:

  - name: Studio

But this stalls sg desktop on load up.

Thanks,

Mark

1 Like

Hi Mark!

I just had play around with the groups and this worked for me

  default_group: Misc
  groups:
  - matches:
    - "*Fla*"
    - "*Houdini*"
    - "*Mari*"
    - "*Max*"
    - "*Maya*"
    - "*Motion*"
    - "*Photoshop*"
    - "*After*"
    - "*Effects*"
    name: Creative Tools
  - matches:
    - "*Hiero*"
    name: Editorial Tools
  - matches:
    - "*Alias*"
    - "*VRED*"
    name: Automotive Tools
  - matches:
    - ""
    name: "Misc"

The “Misc” group was the default and it followed the order as described in the settings. I did have to make sure that the group had at least one match item, which I just left as an empty string.

1 Like