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-10-21 23:55:42 +02:00
|
|
|
<p class="label">4.4.10</p>
|
2019-06-24 14:29:47 +02:00
|
|
|
<ul>
|
2020-05-17 02:17:52 +02:00
|
|
|
<li>
|
2020-10-21 23:55:42 +02:00
|
|
|
Video alignment should now work on Twitch (<a href="https://github.com/tamius-han/ultrawidify/issues/109">#109</a>)
|
2020-05-17 02:17:52 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2020-10-21 23:55:42 +02:00
|
|
|
Videos should now align properly on Hulu while cropped (<a href="https://github.com/tamius-han/ultrawidify/issues/111">#111 & via email</a>)
|
2020-04-29 22:55:20 +02:00
|
|
|
</li>
|
2020-06-18 22:27:52 +02:00
|
|
|
<li>
|
2020-10-21 23:55:42 +02:00
|
|
|
Fixed a problem where changing certain settings would cause multiple instances of Ultrawidify to run on a page, effectively preventing some crop options to be set until reload. (possibly <a href="(https://github.com/tamius-han/ultrawidify/issues/112">#112</a>?)
|
2020-07-25 13:02:33 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2020-10-21 23:55:42 +02:00
|
|
|
Fixed a problem where embedded videos would be misaligned after switching from full screen
|
2020-06-18 22:27:52 +02:00
|
|
|
</li>
|
2020-10-25 22:11:24 +01:00
|
|
|
<li>
|
|
|
|
<b>[4.4.10.1]</b> Fixed cruncyhroll regression — <a href="https://github.com/tamius-han/ultrawidify/issues/115">#115</a>
|
|
|
|
</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>
|