Skip to content

Commit

Permalink
Deployed ed16cc7 with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Aug 20, 2024
0 parents commit 98bfdf8
Show file tree
Hide file tree
Showing 95 changed files with 9,062 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
1 change: 1 addition & 0 deletions 404.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions advanced/multiple-instances/index.html

Large diffs are not rendered by default.

294 changes: 294 additions & 0 deletions advanced/outputs-alsa/index.html

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions advanced/outputs-pulse/index.html

Large diffs are not rendered by default.

37 changes: 37 additions & 0 deletions advanced/radio-streams/index.html

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions advanced/remote-access/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions artwork/index.html

Large diffs are not rendered by default.

86 changes: 86 additions & 0 deletions assets/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/*
* MkDocs Material theme buttons have wrong colors for the theme
* setting:
*
* palette:
* scheme: default
* primary: white
*
* Thus the following CSS overwrites the button background- and
* text-colors.
*/
.md-button {
color: var(--md-accent-fg-color) !important;
border-color: currentColor !important;
}
.md-button:focus,
.md-button:hover {
color: var(--md-primary-fg-color) !important;
background-color: var(--md-accent-fg-color) !important;
border-color: var(--md-accent-fg-color) !important;
}

/*
* The nav title has a click handler to scroll to the top
*/
.md-header-nav__title {
cursor: pointer;
}

/*
* Text alignment
*/
.text-center {
text-align: center;
}

/*
* Custom CSS for images
*/
.hidden {
visibility: hidden;
opacity: 0;
transition: visibility 0s linear 300ms, opacity 300ms;
}
.visible {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0s, opacity 300ms;
}
.fullscreen-image-background {
z-index: 25;
background-color: rgba(10, 10, 10, 0.5);
position: fixed;
bottom: 0;
left: 0;
right: 0;
top: 0;
}
.fullscreen-image-background img {
transition: opacity 1s;
cursor: zoom-out;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
z-index: 100;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: 1rem auto;
max-height: calc(100vh - 2rem);
width: auto;
}
.zoom {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 0.2rem;
margin: 0.5rem;
width: 25%;
cursor: zoom-in;
}
.zoom-wrapper {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
32 changes: 32 additions & 0 deletions assets/extra.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Add click event handler for images with class="zoom"
*/
document.querySelectorAll('img.zoom').forEach(item => {
const p = item.parentElement;
if (!p.classList.contains('processed')) {
p.classList.add('processed');
if (p.querySelectorAll('img.zoom').length === p.children.length) {
p.classList.add('zoom-wrapper');
}
}
item.addEventListener('click', function () {
const img = document.getElementById('fullscreen-image-img');
img.setAttribute('src', this.getAttribute('src'));
img.setAttribute('alt', this.getAttribute('alt'));

const div = document.getElementById('fullscreen-image');
div.classList.replace('hidden', 'visible');
})
});

var div = document.createElement('div');
div.classList.add('fullscreen-image-background', 'hidden');
div.id = 'fullscreen-image';
var img = document.createElement('img');
img.id = 'fullscreen-image-img';
div.appendChild(img);

div.addEventListener('click', function () {
this.classList.replace('visible', 'hidden');
});
document.body.appendChild(div);
Binary file added assets/favicon.ico
Binary file not shown.
Binary file added assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-audiobooks-authors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-audiobooks-books.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-files.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-music-album.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-music-albums.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-music-artist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-music-artists.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-music-browse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-music-spotify.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-now-playing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-outputs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-podcast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-podcasts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-queue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/screenshot-search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions assets/javascripts/bundle.471ce7a9.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions assets/javascripts/bundle.471ce7a9.min.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/javascripts/lunr/min/lunr.ar.min.js

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions assets/javascripts/lunr/min/lunr.da.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions assets/javascripts/lunr/min/lunr.de.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions assets/javascripts/lunr/min/lunr.du.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 98bfdf8

Please sign in to comment.