rfsbraz / deleterr

Deleterr is a Python script designed to help you manage available disk space in your Plex media server.
MIT License
118 stars 6 forks source link

Support configuring sort parameters for media #24

Closed rfsbraz closed 10 months ago

rfsbraz commented 10 months ago

I'm implementing media sort based on the following parameters:

All parameters support both asc and desc modes, and configurations will be per library.

libraries:
  - name: 'Movies'
    type: 'Radarr'
    sort:
      field: 'title'  # Can be 'title', 'added_date', etc.
      order: 'asc'  # Can be 'asc' or 'desc'
  - name: 'TV Shows'
    type: 'Sonarr'
    sort:
      field: 'added_date'
      order: 'desc'
rfsbraz commented 10 months ago

Closed by #28