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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this maintained LibreTV fork are documented here.

## 1.2.14 - 2026-05-12

### Changed

- Fixed the player play/pause hotzone so normal video-surface clicks toggle playback from the correct visual center.
- Added a top in-player native cast button with Remote Playback and AirPlay fallback.
- Added `Alt+Enter` fullscreen, mobile landscape orientation locking for landscape videos, and HLS quality controls.

## 1.2.13 - 2026-05-12

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
202605120255
202605120331
80 changes: 80 additions & 0 deletions css/player.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,76 @@ div.player-loading-text {
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

#player .art-mask {
inset: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}

#player .art-state {
position: relative !important;
margin: 0 !important;
transform: none !important;
pointer-events: none !important;
}

#player .art-state svg,
#player .art-state .art-icon {
margin: 0 !important;
display: block !important;
}

#player .art-state .art-icon-state {
position: absolute !important;
top: 50% !important;
left: 50% !important;
transform: translate(-50%, -50%) !important;
}

.player-top-actions {
position: absolute;
top: 14px;
right: 14px;
z-index: 42;
display: flex;
align-items: center;
gap: 8px;
pointer-events: auto;
}

.player-top-action-btn {
width: 36px;
height: 36px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 8px;
background: rgba(8, 13, 22, 0.72);
color: #f8fafc;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
backdrop-filter: blur(12px);
transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.player-top-action-btn:hover {
background: rgba(15, 23, 42, 0.9);
border-color: rgba(35, 173, 229, 0.52);
transform: translateY(-1px);
}

.player-top-action-btn svg,
.art-control svg {
width: 20px;
height: 20px;
display: block;
}

.art-control svg {
color: currentColor;
}

.progress-preview {
position: absolute;
bottom: 70px;
Expand Down Expand Up @@ -472,6 +542,16 @@ input:checked + .slider:before {
bottom: 58px;
}

.player-top-actions {
top: 10px;
right: 10px;
}

.player-top-action-btn {
width: 34px;
height: 34px;
}

.episode-grid {
max-height: 40vh; /* 移动端增加集数列表高度 */
}
Expand Down
2 changes: 1 addition & 1 deletion js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SITE_CONFIG = {
url: '',
description: '免费在线视频搜索与观看平台',
logo: 'image/logo.png',
version: '1.2.13'
version: '1.2.14'
};

const DEFAULT_SELECTED_APIS = ['ysgc', 'jszy', 'wujin', 'maoyan'];
Expand Down
Loading
Loading