Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alphabetize all user settings #2038

Merged
merged 1 commit into from
Nov 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 61 additions & 61 deletions settings/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@
}
]
},
{
"title": "Cinema Mode",
"description": "Bring the theater experience straight to your living room with the ability to play custom intros before the main feature.",
"settingName": "playback.cinemamode",
"type": "bool",
"default": "false"
},
{
"title": "Compatibility",
"description": "Attempt to prevent playback failures.",
Expand All @@ -49,6 +56,13 @@
}
]
},
{
"title": "Custom Subtitles",
"description": "Replace Roku's default subtitle functions with custom functions that support CJK fonts. Fallback fonts must be configured and enabled on the server for CJK rendering to work.",
"settingName": "playback.subs.custom",
"type": "bool",
"default": "false"
},
{
"title": "Maximum Resolution",
"description": "Configure the maximum resolution when playing video files on this device.",
Expand Down Expand Up @@ -113,60 +127,6 @@
}
]
},
{
"title": "Video Codec Support",
"description": "Enable or disable Direct Play support for certain codecs.",
"children": [
{
"title": "MPEG-2",
"description": "Support Direct Play of MPEG-2 content (e.g., Live TV). This will prevent transcoding of MPEG-2 content, but uses significantly more bandwidth.",
"settingName": "playback.mpeg2",
"type": "bool",
"default": "false"
},
{
"title": "MPEG-4",
"description": "Support Direct Play of MPEG-4 content. This may need to be disabled for playback of DIVX encoded video files.",
"settingName": "playback.mpeg4",
"type": "bool",
"default": "true"
}
]
},
{
"title": "Video Profile Level Support",
"description": "Attempt Direct Play of potentially unsupported profile levels",
"children": [
{
"title": "H.264",
"description": "Attempt Direct Play for H.264 media with unsupported profile levels before falling back to transcoding if it fails.",
"settingName": "playback.tryDirect.h264ProfileLevel",
"type": "bool",
"default": "false"
},
{
"title": "HEVC",
"description": "Attempt Direct Play for HEVC media with unsupported profile levels before falling back to transcoding if it fails.",
"settingName": "playback.tryDirect.hevcProfileLevel",
"type": "bool",
"default": "false"
}
]
},
{
"title": "Cinema Mode",
"description": "Bring the theater experience straight to your living room with the ability to play custom intros before the main feature.",
"settingName": "playback.cinemamode",
"type": "bool",
"default": "false"
},
{
"title": "Custom Subtitles",
"description": "Replace Roku's default subtitle functions with custom functions that support CJK fonts. Fallback fonts must be configured and enabled on the server for CJK rendering to work.",
"settingName": "playback.subs.custom",
"type": "bool",
"default": "false"
},
{
"title": "Next Episode Button Time",
"description": "Set how many seconds before the end of an episode the Next Episode button should appear. Set to 0 to disable.",
Expand Down Expand Up @@ -230,6 +190,46 @@
"settingName": "playback.subs.onlytext",
"type": "bool",
"default": "false"
},
{
"title": "Video Codec Support",
"description": "Enable or disable Direct Play support for certain codecs.",
"children": [
{
"title": "MPEG-2",
"description": "Support Direct Play of MPEG-2 content (e.g., Live TV). This will prevent transcoding of MPEG-2 content, but uses significantly more bandwidth.",
"settingName": "playback.mpeg2",
"type": "bool",
"default": "false"
},
{
"title": "MPEG-4",
"description": "Support Direct Play of MPEG-4 content. This may need to be disabled for playback of DIVX encoded video files.",
"settingName": "playback.mpeg4",
"type": "bool",
"default": "true"
}
]
},
{
"title": "Video Profile Level Support",
"description": "Attempt Direct Play of potentially unsupported profile levels",
"children": [
{
"title": "H.264",
"description": "Attempt Direct Play for H.264 media with unsupported profile levels before falling back to transcoding if it fails.",
"settingName": "playback.tryDirect.h264ProfileLevel",
"type": "bool",
"default": "false"
},
{
"title": "HEVC",
"description": "Attempt Direct Play for HEVC media with unsupported profile levels before falling back to transcoding if it fails.",
"settingName": "playback.tryDirect.hevcProfileLevel",
"type": "bool",
"default": "false"
}
]
}
]
},
Expand Down Expand Up @@ -423,6 +423,13 @@
"title": "Movies",
"description": "Settings relating to the appearance of pages in Movie Libraries.",
"children": [
{
"title": "Community and Critical Ratings",
"description": "Ratings for how good a movie is.",
"settingName": "ui.movies.showRatings",
"type": "bool",
"default": "true"
},
{
"title": "Default View",
"description": "Default view for Movie Libraries.",
Expand All @@ -439,13 +446,6 @@
"id": "MoviesGrid"
}
]
},
{
"title": "Community and Critical Ratings",
"description": "Ratings for how good a movie is.",
"settingName": "ui.movies.showRatings",
"type": "bool",
"default": "true"
}
]
},
Expand Down
Loading