ultrawidify/src/popup/panels/WhatsNewPanel.vue

40 lines
1.6 KiB
Vue
Raw Normal View History

2019-06-14 23:10:21 +02:00
<template>
<div>
<h2>What's new</h2>
2020-01-16 01:02:19 +01:00
<p>Full changelog for older versions <a href="https://github.com/tamius-han/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
2021-04-12 20:27:49 +02:00
<p class="label">5.0.2</p>
2019-06-24 14:29:47 +02:00
<ul>
2020-05-17 02:17:52 +02:00
<li>
2021-04-12 20:27:49 +02:00
When in full screen, the extension will assume player element dimensions are the same as the screen resolution. This should help with sites where ultrawidify doesn't correctly identify the player, as cropping generally doesn't work if player element is not identified. Old behaviour can be restored in advanced extension settings by toggling the "use player aspect ratio in fullscreen" checkbox under 'player detection settings'.
</li>
<li>
Fixed the issue where player wouldn't get detected if video was wider than the player.
2021-04-01 21:43:19 +02:00
</li>
2019-06-24 14:29:47 +02:00
</ul>
2021-04-04 03:58:26 +02:00
<p>
<small><b>NOTE:</b> zoom limitations were introduced as a workaround for a bug caused by Chrome's/Edge's faulty hardware acceleration
2021-04-04 23:55:49 +02:00
which caused videos to be incorrectly stretched on nVidia GPUs while in fullscreen. While this issue is reportedly fixed as
2021-04-04 03:58:26 +02:00
of few weeks ago, a few people reported having this issue within the past two weeks.</small>
</p>
<p>
<small>If you experience issues with videos being stretched incorrectly at certain zoom levels, go to:</small><br/>
<small><code>extension popup > Advanced Settings > Browser quirk mitigations > limit zoom.</code></small>
</p>
2019-06-14 23:10:21 +02:00
</div>
</template>
<script>
2019-08-24 22:36:24 +02:00
import BrowserDetect from '../../ext/conf/BrowserDetect';
2019-06-14 23:10:21 +02:00
export default {
2019-08-24 22:36:24 +02:00
data () {
return {
BrowserDetect: BrowserDetect
}
2019-08-25 01:52:04 +02:00
},
}
2019-06-14 23:10:21 +02:00
</script>
<style>
</style>