92e6c4fe1e
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
28 lines
519 B
Go
28 lines
519 B
Go
package projection
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// Type represents a visual projection type.
|
|
type Type string
|
|
|
|
// String returns the type as string.
|
|
func (t Type) String() string {
|
|
return string(t)
|
|
}
|
|
|
|
// Unknown checks if the type is unknown.
|
|
func (t Type) Unknown() bool {
|
|
return t == Unknown
|
|
}
|
|
|
|
// Equal checks if the type matches.
|
|
func (t Type) Equal(s string) bool {
|
|
return strings.EqualFold(s, t.String())
|
|
}
|
|
|
|
// NotEqual checks if the type is different.
|
|
func (t Type) NotEqual(s string) bool {
|
|
return !t.Equal(s)
|
|
}
|