You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New to the SDK side of this so let me know if this isn't the right place!
I'm completely clueless when it comes to SDK generation and patch files but it would be nice to have PersonKinds / PersonType in the SDK. I think this would be helpful for the Cast & Crew sections for clients.
Here is what I made for use in Swiftfin:
enum PersonKind: String, CaseIterable {
case unknown = ""
case actor = "Actor"
case director = "Director"
case composer = "Composer"
case writer = "Writer"
case guestStar = "GuestStar"
case producer = "Producer"
case conductor = "Conductor"
case lyricist = "Lyricist"
case arranger = "Arranger"
case engineer = "Engineer"
case mixer = "Mixer"
case remixer = "Remixer"
case creator = "Creator"
case artist = "Artist"
case albumArtist = "AlbumArtist"
case author = "Author"
case illustrator = "Illustrator"
case penciller = "Penciller"
case inker = "Inker"
case colorist = "Colorist"
case letterer = "Letterer"
case coverArtist = "CoverArtist"
case editor = "Editor"
case translator = "Translator"
}
New to the SDK side of this so let me know if this isn't the right place!
I'm completely clueless when it comes to SDK generation and patch files but it would be nice to have PersonKinds / PersonType in the SDK. I think this would be helpful for the Cast & Crew sections for clients.
Here is what I made for use in Swiftfin:
My source for this can be found here: https://github.com/jellyfin/jellyfin/blob/master/Jellyfin.Data/Enums/PersonKind.cs.
The text was updated successfully, but these errors were encountered: