ultrawidify/src/popup/panels/WhatsNewPanel.vue

45 lines
1.7 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>
<p class="label">4.5.0</p>
2019-06-24 14:29:47 +02:00
<ul>
2020-05-17 02:17:52 +02:00
<li>
Under the hood: migrated from vue2 to vue3, because optional chaining in templates is too OP.
2020-05-17 02:17:52 +02:00
</li>
<li>
(On options page, section 'Action &amp; shortcuts') Manual aspect ratio now supports entering custom ratios using '21/9' and '2.39:1' formats (as opposed to single number, e.g. '2.39') <a href="https://github.com/tamius-han/ultrawidify/issues/121">#121</a>.
2020-04-29 22:55:20 +02:00
</li>
2020-06-18 22:27:52 +02:00
<li>
Added config for wakanim.tv (special thanks to <a href="https://github.com/saschanaz">@saschanaz</a> for doing the legwork <a href="https://github.com/tamius-han/ultrawidify/issues/113">#113</a>)
2020-06-18 22:27:52 +02:00
</li>
2020-10-25 22:11:24 +01:00
<li>
(In Firefox) When extension was placed in overflow menu, the popup was cut off. That should be fixed now. (<a href="https://github.com/tamius-han/ultrawidify/issues/119">#119</a>)
2020-10-25 22:11:24 +01:00
</li>
2020-12-13 23:57:29 +01:00
<li>
The extension will now show a notification when autodetection can't run due to DRM.
</li>
<li>
Videos on facebook and reddit no longer get shifted up and to the left for me (cropping most of the video off-screen), but I haven't been
deliberately trying to fix that issue. If you experience that issue, please consider contacting me (via github or email) with a link to a
problematic video.
</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>