ultrawidify/src/popup/panels/WhatsNewPanel.vue

38 lines
1.6 KiB
Vue
Raw Normal View History

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>
2019-09-25 18:44:01 +02:00
<p class="label">4.3.0.2</p>
2019-06-24 14:29:47 +02:00
<ul>
2019-09-25 18:44:01 +02:00
<li><b>[4.3.0.2]</b> Extension would not work for new users. (Special thanks to [ezzak](https://github.com/ezzak) for finding and submitting a patch)</li>
<li><b>[4.3.0.1]</b> Removed some stray, forgotten console.logs.</li>
2019-09-17 22:26:43 +02:00
<li>Fixed an issue where videos would get incorrectly aligned following a window resize.</li>
2019-09-22 02:39:24 +02:00
<li>Fixed all sorts of issues for videos hosted on v.reddit for new (and old) reddit</li>
<li>Fixed the issue where setting extension to 'whitelist only' would disable 'site settings' in popup.</li>
2019-07-20 21:33:15 +02:00
<li>User-friendly way of importing-exporting settings (exporting settings requires 'download' permission)</li>
2019-09-21 23:48:17 +02:00
<li>Started using mutation observers to watch for changes in player size as well, but with some caveats.</li>
2019-09-17 22:26:43 +02:00
<li>Mutation observers are now used to detect both video and player size changes.</li>
<li>Settings patching has been reworked. Settings can now be patched incrementally.</li>
</ul>
<p>I'm also laying ground for some features that will make my life easier:</p>
<ul>
<li>Reworked how logging works internally, but this point still needs some work.</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>