ultrawidify/src/popup/panels/WhatsNewPanel.vue

31 lines
1.0 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-02-11 20:01:10 +01:00
<p class="label">4.4.4<small>.2</small></p>
2019-06-24 14:29:47 +02:00
<ul>
2020-01-15 22:23:22 +01:00
<li>Tab detection in extension popup has been made more accurate</li>
2020-02-06 23:06:37 +01:00
<li>QoL: Added user-accessible logger (to make fixing sites I can't access a bit easier)</li>
<li>Changed links to reflect my github username change</li>
2020-02-09 02:11:28 +01:00
<li><b>[4.4.4.1]</b> There were multiple reports about popup being broken. This issue should be resolved.</li>
<li><b>[4.4.4.1]</b> Setting global/site defaults should no longer require page reloads.</li>
2020-02-11 20:01:10 +01:00
<li><b>[4.4.4.2]</b> Fix problem with video being offset while switching between full screen and non-fullscreen non-theater mode on Youtube</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>