Bump version to 1.5.0.19 and update changelog for recent changes
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 57s
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 57s
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||||
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
||||||
<Authors>CodeDevMLH</Authors>
|
<Authors>CodeDevMLH</Authors>
|
||||||
<Version>1.5.0.18</Version>
|
<Version>1.5.0.19</Version>
|
||||||
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -605,7 +605,11 @@ const SlideUtils = {
|
|||||||
getOrCreateSlidesContainer() {
|
getOrCreateSlidesContainer() {
|
||||||
let container = document.getElementById("slides-container");
|
let container = document.getElementById("slides-container");
|
||||||
if (!container) {
|
if (!container) {
|
||||||
container = this.createElement("div", { id: "slides-container" });
|
container = this.createElement("div", {
|
||||||
|
id: "slides-container",
|
||||||
|
className: "focuscontainer-y",
|
||||||
|
tabIndex: "-1"
|
||||||
|
});
|
||||||
document.body.appendChild(container);
|
document.body.appendChild(container);
|
||||||
}
|
}
|
||||||
return container;
|
return container;
|
||||||
@@ -1932,7 +1936,7 @@ const SlideCreator = {
|
|||||||
createPlayButton(itemId) {
|
createPlayButton(itemId) {
|
||||||
const playText = LocalizationUtils.getLocalizedString('Play', 'Play');
|
const playText = LocalizationUtils.getLocalizedString('Play', 'Play');
|
||||||
return SlideUtils.createElement("button", {
|
return SlideUtils.createElement("button", {
|
||||||
className: "detailButton btnPlay play-button",
|
className: "detailButton btnPlay play-button focusable",
|
||||||
innerHTML: `
|
innerHTML: `
|
||||||
<span class="play-text">${playText}</span>
|
<span class="play-text">${playText}</span>
|
||||||
`,
|
`,
|
||||||
@@ -1952,7 +1956,7 @@ const SlideCreator = {
|
|||||||
*/
|
*/
|
||||||
createDetailButton(itemId) {
|
createDetailButton(itemId) {
|
||||||
return SlideUtils.createElement("button", {
|
return SlideUtils.createElement("button", {
|
||||||
className: "detailButton detail-button",
|
className: "detailButton detail-button focusable",
|
||||||
tabIndex: "0",
|
tabIndex: "0",
|
||||||
onclick: (e) => {
|
onclick: (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@@ -1978,7 +1982,7 @@ const SlideCreator = {
|
|||||||
const isFavorite = item.UserData && item.UserData.IsFavorite === true;
|
const isFavorite = item.UserData && item.UserData.IsFavorite === true;
|
||||||
|
|
||||||
const button = SlideUtils.createElement("button", {
|
const button = SlideUtils.createElement("button", {
|
||||||
className: `favorite-button ${isFavorite ? "favorited" : ""}`,
|
className: `favorite-button focusable ${isFavorite ? "favorited" : ""}`,
|
||||||
tabIndex: "0",
|
tabIndex: "0",
|
||||||
onclick: async (e) => {
|
onclick: async (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@@ -1998,7 +2002,7 @@ const SlideCreator = {
|
|||||||
createTrailerButton(url) {
|
createTrailerButton(url) {
|
||||||
const trailerText = LocalizationUtils.getLocalizedString('Trailer', 'Trailer');
|
const trailerText = LocalizationUtils.getLocalizedString('Trailer', 'Trailer');
|
||||||
return SlideUtils.createElement("button", {
|
return SlideUtils.createElement("button", {
|
||||||
className: "detailButton trailer-button",
|
className: "detailButton trailer-button focusable",
|
||||||
innerHTML: `<span class="material-icons">movie</span> <span class="trailer-text">${trailerText}</span>`,
|
innerHTML: `<span class="material-icons">movie</span> <span class="trailer-text">${trailerText}</span>`,
|
||||||
tabIndex: "0",
|
tabIndex: "0",
|
||||||
onclick: (e) => {
|
onclick: (e) => {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
||||||
"versions": [
|
"versions": [
|
||||||
{
|
{
|
||||||
"version": "1.5.0.18",
|
"version": "1.5.0.19",
|
||||||
"changelog": "- fix: keyboard controls in TV mode\n- Add sorting options for content\n- Update mediaBarEnhanced.js and mediaBarEnhanced.css with version 4.0.1 from original repo",
|
"changelog": "- fix: keyboard controls in TV mode\n- Add sorting options for content\n- Update mediaBarEnhanced.js and mediaBarEnhanced.css with version 4.0.1 from original repo",
|
||||||
"targetAbi": "10.11.0.0",
|
"targetAbi": "10.11.0.0",
|
||||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.5.0.18/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.5.0.18/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
|||||||
Reference in New Issue
Block a user