ultrawidify/src/popup/panels/WhatsNewPanel.vue

42 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>
2020-12-22 23:23:36 +01:00
<p class="label">4.5.1</p>
2019-06-24 14:29:47 +02:00
<ul>
2020-12-22 23:23:36 +01:00
<li>Fixed the misalignment issue on netflix ... hopefully.</li>
2020-05-17 02:17:52 +02:00
<li>
2020-12-22 23:23:36 +01:00
'Site settings' tab should now work in Chrome as well (<a href="https://github.com/tamius-han/ultrawidify/issues/126">#126</a>)
2020-05-17 02:17:52 +02:00
</li>
<li>
2020-12-22 23:23:36 +01:00
Popup interface now refreshes properly (<a href="https://github.com/tamius-han/ultrawidify/issues/127">#127</a>)
2020-04-29 22:55:20 +02:00
</li>
2020-06-18 22:27:52 +02:00
<li>
2020-12-22 23:23:36 +01:00
Videos should now be scaled correctly when the display is narrower than video's native aspect ratio (<a href="https://github.com/tamius-han/ultrawidify/issues/118">#118</a>)
2020-06-18 22:27:52 +02:00
</li>
2020-12-23 02:09:30 +01:00
<li>
Fullscreen videos on streamable are aligned correctly (<a href="https://github.com/tamius-han/ultrawidify/issues/118">#116</a>). Note that while this fix hasn't broken any sites I have access to and know of,
there is a small possibility that this bugfix may break something somewhere. If this happens on a site you use, please notify me via github, email or PM me on reddit.
</li>
2020-10-25 22:11:24 +01:00
<li>
2020-12-22 23:23:36 +01:00
Edge users using CWS version of the extension get a very aggressive warning when trying to use the extension with Edge
2020-12-15 20:28:36 +01:00
</li>
2019-06-24 14:29:47 +02:00
</ul>
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
2019-08-24 22:36:24 +02:00
export default {
data () {
return {
BrowserDetect: BrowserDetect
}
2019-08-25 01:52:04 +02:00
},
2019-06-14 23:10:21 +02:00
}
</script>
<style>
</style>