Skip to content
Merged
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# EditorConfig is awesome: https://editorconfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Allow tabs in JSON
[*.json]
indent_style = tab
1 change: 1 addition & 0 deletions .github/workflows/differential-shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # @v5.0.0
with:
fetch-depth: 0
persist-credentials: false

- name: Differential ShellCheck
# yamllint disable-line rule:line-length
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
## Full git history is needed to get a proper list of changed files
## within `super-linter`
fetch-depth: 0
persist-credentials: false

- name: Lint Code Base
# yamllint disable-line rule:line-length
uses: super-linter/super-linter@5119dcd8011e92182ce8219d9e9efc82f16fddb6 # @v8.0.0
uses: super-linter/super-linter@7bba2eeb89d01dc9bfd93c497477a57e72c83240 # @v8.2.0
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: "main"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Thumbs.db
!.bash_aliases.example
!.bash_rc.example
!CHANGELOG.md
!.editorconfig
!.gitignore
!docker-compose.yml
!LICENSE
Expand Down
38 changes: 19 additions & 19 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"git.enableCommitSigning": true,
"files.watcherExclude": {
"/appdata/bazarr/config/cache": true,
"/appdata/calibre/config": true,
"/appdata/jellyfin/config/data": true,
"/appdata/jellyfin/config/metadata": true,
"/appdata/jellyfin/transcodes": true,
"/appdata/mariadb/data": true,
"/appdata/nextcloud": true,
"/appdata/nextcloud/config*/**": false,
"/appdata/postgres/data": true,
"/appdata/qbittorrent*/config/qBittorrent": true,
"/appdata/recyclarr/config/repo*/**": true,
"/appdata/redis/data": true,
"/appdata/tdarr/server": true,
"/appdata/vaultwarden/data/icon_cache": true,
"/appdata/vscode/config": true,
"**/MediaCover": true
}
"git.enableCommitSigning": true,
"files.watcherExclude": {
"/appdata/bazarr/config/cache": true,
"/appdata/calibre/config": true,
"/appdata/jellyfin/config/data": true,
"/appdata/jellyfin/config/metadata": true,
"/appdata/jellyfin/transcodes": true,
"/appdata/mariadb/data": true,
"/appdata/nextcloud": true,
"/appdata/nextcloud/config*/**": false,
"/appdata/postgres/data": true,
"/appdata/qbittorrent*/config/qBittorrent": true,
"/appdata/recyclarr/config/repo*/**": true,
"/appdata/redis/data": true,
"/appdata/tdarr/server": true,
"/appdata/vaultwarden/data/icon_cache": true,
"/appdata/vscode/config": true,
"**/MediaCover": true
}
}
99 changes: 52 additions & 47 deletions appdata/jellyfin/config/web-config.example.json
Original file line number Diff line number Diff line change
@@ -1,49 +1,54 @@
{
"includeCorsCredentials": false,
"multiserver": false,
"themes": [
{
"name": "Apple TV",
"id": "appletv"
}, {
"name": "Blue Radiance",
"id": "blueradiance"
}, {
"name": "Dark",
"id": "dark",
"default": true
}, {
"name": "Light",
"id": "light"
}, {
"name": "Purple Haze",
"id": "purplehaze"
}, {
"name": "WMC",
"id": "wmc"
}
],
"servers": [],
"plugins": [
"playAccessValidation/plugin",
"experimentalWarnings/plugin",
"htmlAudioPlayer/plugin",
"htmlVideoPlayer/plugin",
"photoPlayer/plugin",
"comicsPlayer/plugin",
"bookPlayer/plugin",
"backdropScreensaver/plugin",
"pdfPlayer/plugin",
"logoScreensaver/plugin",
"sessionPlayer/plugin",
"chromecastPlayer/plugin",
"plugins/youtubePlayer/plugin"
],
"menuLinks": [
{
"name": "Request Something New",
"icon": "library_add",
"url": "https://example.com"
}
]
"includeCorsCredentials": false,
"multiserver": false,
"themes": [
{
"name": "Apple TV",
"id": "appletv"
},
{
"name": "Blue Radiance",
"id": "blueradiance"
},
{
"name": "Dark",
"id": "dark",
"default": true
},
{
"name": "Light",
"id": "light"
},
{
"name": "Purple Haze",
"id": "purplehaze"
},
{
"name": "WMC",
"id": "wmc"
}
],
"servers": [],
"plugins": [
"playAccessValidation/plugin",
"experimentalWarnings/plugin",
"htmlAudioPlayer/plugin",
"htmlVideoPlayer/plugin",
"photoPlayer/plugin",
"comicsPlayer/plugin",
"bookPlayer/plugin",
"backdropScreensaver/plugin",
"pdfPlayer/plugin",
"logoScreensaver/plugin",
"sessionPlayer/plugin",
"chromecastPlayer/plugin",
"plugins/youtubePlayer/plugin"
],
"menuLinks": [
{
"name": "Request Something New",
"icon": "library_add",
"url": "https://example.com"
}
]
}