2019-06-14 23:10:21 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h2>What's new</h2>
|
|
|
|
<p>Full changelog for older versions <a href="https://github.com/xternal7/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
|
2020-01-04 15:43:11 +01:00
|
|
|
<p class="label">4.4.3.1</p>
|
2020-01-04 02:47:09 +01:00
|
|
|
This update mostly attempts to fix disney+ (again). Consider commenting <a href="https://github.com/xternal7/ultrawidify/issues/84">on this issue</a> if issues with disney+ persist.
|
2019-06-24 14:29:47 +02:00
|
|
|
<ul>
|
2020-01-04 02:47:09 +01:00
|
|
|
<li>Fixed conf patch for disney+ (hopefully)</li>
|
|
|
|
<li><code>Settings.save()</code> adds missing values to site config when saving extension configuration.</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>
|