ultrawidify/src/popup/panels/WhatsNewPanel.vue

33 lines
1.1 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>
<p class="label">4.4.0</p>
2019-06-24 14:29:47 +02:00
<ul>
<li>Russian users (and users of other non-latin keyboard layouts) can now use keyboard shortcuts by default,
2019-11-02 01:11:57 +01:00
without having to rebind them manually. <b>NOTE: this change will only be applied to users who have <i>NOT</i>
modified their keyboard shortcuts.</b></li>
<li>NOTE: when using non-latin layouts, 'zoom' shortcut (`z` by default) uses the position of 'Y' on QWERTY layout.</li>
<li>Ability to preserve aspect ratio between different videos (applies to current page and doesn't survive proper
page reloads)</li>
2019-10-30 17:47:15 +01:00
<li>Fixed bug where keyboard shortcuts would work while typing in certain text fields</li>
<li>Fixed a minor bug with autodetection</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>