Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cfebccc289 | ||
|
|
2613fd7acf | ||
|
|
bb10b9c15e | ||
|
|
a9ad8d65e4 | ||
|
|
e7232da38b | ||
|
|
53bd1d23c7 | ||
|
|
5643ebfd28 | ||
|
|
bed2fbaa76 | ||
|
|
05f64bc3d7 | ||
|
|
277433581c | ||
|
|
44f0b1cb38 | ||
|
|
d31dcbabdc | ||
|
|
4ed6509505 | ||
|
|
6427b8422a | ||
|
|
ebfbe1d563 | ||
|
|
67e5d8e4d2 | ||
|
|
d68ba7e846 | ||
|
|
0444cf333d | ||
|
|
10279e97d9 |
42
.github/workflows/release_automation.yml
vendored
42
.github/workflows/release_automation.yml
vendored
@@ -24,6 +24,8 @@ jobs:
|
|||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v5
|
||||||
@@ -94,16 +96,52 @@ jobs:
|
|||||||
commit_message: "Update manifest.json for release v${{ env.VERSION }} [skip ci]"
|
commit_message: "Update manifest.json for release v${{ env.VERSION }} [skip ci]"
|
||||||
file_pattern: manifest.json
|
file_pattern: manifest.json
|
||||||
|
|
||||||
|
- name: Generate Commit Log
|
||||||
|
if: success()
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "Generating commit log since last tag..."
|
||||||
|
|
||||||
|
# Get the previous tag
|
||||||
|
PREV_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "")
|
||||||
|
|
||||||
|
if [ -z "$PREV_TAG" ]; then
|
||||||
|
echo "No previous tag found. Getting all commits."
|
||||||
|
start_range=""
|
||||||
|
else
|
||||||
|
echo "Previous tag: $PREV_TAG"
|
||||||
|
start_range="$PREV_TAG.."
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "### What's Changed" > commit_log.md
|
||||||
|
echo "" >> commit_log.md
|
||||||
|
git log --pretty=format:"- %s (%h) by @%an" $start_range >> commit_log.md
|
||||||
|
|
||||||
|
# Combine Changelog from manifest (if exists) and commit log
|
||||||
|
if [ -n "${{ env.CHANGELOG }}" ]; then
|
||||||
|
echo "${{ env.CHANGELOG }}" > release_body.txt
|
||||||
|
echo "" >> release_body.txt
|
||||||
|
echo "" >> release_body.txt
|
||||||
|
cat commit_log.md >> release_body.txt
|
||||||
|
else
|
||||||
|
cat commit_log.md > release_body.txt
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Debug output
|
||||||
|
cat release_body.txt
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
tag_name: "v${{ env.VERSION }}"
|
tag_name: "v${{ env.VERSION }}"
|
||||||
name: "v${{ env.VERSION }}"
|
name: "v${{ env.VERSION }}"
|
||||||
body: ${{ env.CHANGELOG }}
|
# body: ${{ env.CHANGELOG }}
|
||||||
files: ${{ env.ZIP_PATH }}
|
files: ${{ env.ZIP_PATH }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
generate_release_notes: true
|
generate_release_notes: false
|
||||||
|
body_path: release_body.txt
|
||||||
|
|
||||||
|
|
||||||
# Update Message in Remote Repository
|
# Update Message in Remote Repository
|
||||||
- name: Checkout Central Manifest Repo
|
- name: Checkout Central Manifest Repo
|
||||||
|
|||||||
@@ -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.2.1.0</Version>
|
<Version>1.2.3.5</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>
|
||||||
|
|
||||||
|
|||||||
@@ -170,6 +170,12 @@
|
|||||||
height: 90%;
|
height: 90%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#slides-container[style*="display: none"],
|
||||||
|
#slides-container[style*="visibility: hidden"] {
|
||||||
|
pointer-events: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.arrow {
|
.arrow {
|
||||||
@@ -784,6 +790,41 @@
|
|||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 400px) {
|
||||||
|
.button-container {
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.play-button,
|
||||||
|
.trailer-button {
|
||||||
|
padding: 8px 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.misc-info {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 0px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.runTime {
|
||||||
|
width: 100%;
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.misc-info .separator-icon:last-of-type {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.genre {
|
||||||
|
top: calc(50% + 16vh);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container {
|
||||||
|
top: calc(50% + 27vh);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Landscape Mode Phones*/
|
/*Landscape Mode Phones*/
|
||||||
|
|||||||
@@ -1275,9 +1275,12 @@ const VisibilityObserver = {
|
|||||||
const isVisible =
|
const isVisible =
|
||||||
(window.location.hash === "#/home.html" ||
|
(window.location.hash === "#/home.html" ||
|
||||||
window.location.hash === "#/home") &&
|
window.location.hash === "#/home") &&
|
||||||
|
activeTab &&
|
||||||
activeTab.getAttribute("data-index") === "0";
|
activeTab.getAttribute("data-index") === "0";
|
||||||
|
|
||||||
container.style.display = isVisible ? "block" : "none";
|
container.style.display = isVisible ? "block" : "none";
|
||||||
|
container.style.visibility = isVisible ? "visible" : "hidden";
|
||||||
|
container.style.pointerEvents = isVisible ? "auto" : "none";
|
||||||
|
|
||||||
if (isVisible) {
|
if (isVisible) {
|
||||||
if (STATE.slideshow.slideInterval && !STATE.slideshow.isPaused) {
|
if (STATE.slideshow.slideInterval && !STATE.slideshow.isPaused) {
|
||||||
@@ -1296,11 +1299,11 @@ const VisibilityObserver = {
|
|||||||
* Initializes visibility observer
|
* Initializes visibility observer
|
||||||
*/
|
*/
|
||||||
init() {
|
init() {
|
||||||
const observer = new MutationObserver(this.updateVisibility);
|
const observer = new MutationObserver(() => this.updateVisibility());
|
||||||
observer.observe(document.body, { childList: true, subtree: true });
|
observer.observe(document.body, { childList: true, subtree: true });
|
||||||
|
|
||||||
document.body.addEventListener("click", this.updateVisibility);
|
document.body.addEventListener("click", () => this.updateVisibility());
|
||||||
window.addEventListener("hashchange", this.updateVisibility);
|
window.addEventListener("hashchange", () => this.updateVisibility());
|
||||||
|
|
||||||
this.updateVisibility();
|
this.updateVisibility();
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -27,7 +27,8 @@ Setzt deine Commits neu auf die Spitze eines anderen Branches. Die Commit-IDs we
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
git checkout dev
|
git checkout dev
|
||||||
git rebase main
|
git fetch origin
|
||||||
|
git rebase origin/main
|
||||||
```
|
```
|
||||||
|
|
||||||
| Details | |
|
| Details | |
|
||||||
|
|||||||
@@ -8,6 +8,22 @@
|
|||||||
"category": "General",
|
"category": "General",
|
||||||
"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.2.3.5",
|
||||||
|
"changelog": "- Fixes the issue where buttons were cut off on smaller screens such as on S24/S25.",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.3.5/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "b5efea79ec465522dad31e4ee5f1710c",
|
||||||
|
"timestamp": "2026-01-28T20:21:20Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.2.2.0",
|
||||||
|
"changelog": "- Fixes issues with persistent slides-container visibility",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.2.2.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "3362f93815845c4e85b66b31bcd0f52c",
|
||||||
|
"timestamp": "2026-01-24T22:53:55Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "1.2.1.0",
|
"version": "1.2.1.0",
|
||||||
"changelog": "- Update mediaBarEnhanced.js and mediaBarEnhanced.css with version 3.0.8 from original repo",
|
"changelog": "- Update mediaBarEnhanced.js and mediaBarEnhanced.css with version 3.0.8 from original repo",
|
||||||
|
|||||||
Reference in New Issue
Block a user