浏览代码

Merge pull request #5043 from pixelfed/staging

Staging
daniel 1 年之前
父节点
当前提交
4d04227d41

+ 1 - 0
CHANGELOG.md

@@ -65,6 +65,7 @@
 - Update docker env, fix config_cache. Fixes #5033 ([858fcbf6](https://github.com/pixelfed/pixelfed/commit/858fcbf6))
 - Update UnfollowPipeline, fix follower count cache bug ([6bdf73de](https://github.com/pixelfed/pixelfed/commit/6bdf73de))
 - Update VideoPresenter component, add webkit-playsinline attribute to video element to prevent the full screen video player ([ad032916](https://github.com/pixelfed/pixelfed/commit/ad032916))
+- Update VideoPlayer component, add playsinline attribute to video element ([8af23607](https://github.com/pixelfed/pixelfed/commit/8af23607))
 -  ([](https://github.com/pixelfed/pixelfed/commit/))
 
 ## [v0.11.13 (2024-03-05)](https://github.com/pixelfed/pixelfed/compare/v0.11.12...v0.11.13)

二进制
public/js/daci.chunk.a498fff65c83f174.js → public/js/daci.chunk.e49239579f174211.js


二进制
public/js/discover~findfriends.chunk.29c7f06a6a4c6f61.js → public/js/discover~findfriends.chunk.d0e638a697f821b4.js


二进制
public/js/discover~memories.chunk.321431bd290466d4.js → public/js/discover~memories.chunk.315bb6896f3afec2.js


二进制
public/js/discover~myhashtags.chunk.4cc859102b24780c.js → public/js/discover~myhashtags.chunk.25db2bcadb2836b5.js


二进制
public/js/discover~serverfeed.chunk.b4c4ca11f3498bf1.js → public/js/discover~serverfeed.chunk.4eb5e50270522771.js


二进制
public/js/discover~settings.chunk.07417fd0cd9c5833.js → public/js/discover~settings.chunk.3f3acf6b2d7f41a2.js


二进制
public/js/home.chunk.ccbe0267817f9a26.js → public/js/home.chunk.8bbc3c5c38dde66d.js


+ 0 - 0
public/js/home.chunk.ccbe0267817f9a26.js.LICENSE.txt → public/js/home.chunk.8bbc3c5c38dde66d.js.LICENSE.txt


二进制
public/js/landing.js


二进制
public/js/manifest.js


二进制
public/js/post.chunk.41ea9082b932e599.js → public/js/post.chunk.803d8c9f68415936.js


+ 0 - 0
public/js/post.chunk.41ea9082b932e599.js.LICENSE.txt → public/js/post.chunk.803d8c9f68415936.js.LICENSE.txt


二进制
public/js/profile.chunk.e86bfb0eb7723ddc.js → public/js/profile.chunk.33a4b9cb10dbbb6c.js


二进制
public/mix-manifest.json


+ 2 - 2
resources/assets/components/presenter/VideoPlayer.vue

@@ -29,10 +29,10 @@
             </div>
 
             <template v-else>
-                <video v-if="hasHls" ref="video" :class="{ fixedHeight: fixedHeight }" style="margin:0" playsinline controls autoplay="false" :poster="getPoster(status)">
+                <video v-if="hasHls" ref="video" :class="{ fixedHeight: fixedHeight }" style="margin:0" playsinline webkit-playsinline controls autoplay="false" :poster="getPoster(status)">
                 </video>
 
-                <video v-else class="card-img-top shadow" :class="{ fixedHeight: fixedHeight }" style="border-radius:15px;object-fit: contain;background-color: #000;" autoplay="false" controls :poster="getPoster(status)">
+                <video v-else class="card-img-top shadow" :class="{ fixedHeight: fixedHeight }" style="border-radius:15px;object-fit: contain;background-color: #000;" autoplay="false" playsinline webkit-playsinline controls :poster="getPoster(status)">
                     <source :src="status.media_attachments[0].url" :type="status.media_attachments[0].mime">
                 </video>
             </template>