ultrawidify/src/popup/panels/WhatsNewPanel.vue

46 lines
1.5 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>
2021-03-29 22:52:32 +02:00
<p class="label">5.0.0</p>
2019-06-24 14:29:47 +02:00
<ul>
2020-05-17 02:17:52 +02:00
<li>
2021-03-29 22:52:32 +02:00
Under the hood: the extension has been moved over to typescript (except UI bits, which remain javascript).
2020-12-24 23:26:36 +01:00
</li>
2021-02-18 00:13:51 +01:00
<li>
2021-03-29 22:52:32 +02:00
webextension-polyfill is now used everywhere (if only because typescript throws a hissy fit with <code>browser</code> and <code>chrome</code> otherwise) (<a href="https://github.com/tamius-han/ultrawidify/issues/114">#114</a>).
2021-02-18 00:13:51 +01:00
</li>
<li>
2021-03-29 22:52:32 +02:00
Fix some bugs that I didn't even know I had, but typescript kinda shone some light on them
</li>
<li>
Manual zoom and panning are now back. (<a href="https://github.com/tamius-han/ultrawidify/issues/135">#135</a> and <a href="https://github.com/tamius-han/ultrawidify/issues/138">#138</a>)
2021-02-18 00:13:51 +01:00
</li>
2021-03-30 23:39:41 +02:00
<li>
Fix issue when video would be scaled incorrectly if video element uses <code>height:auto</code>.
</li>
2021-04-01 21:43:19 +02:00
<li>
<b>[5.0.0.1]</b> Fixed the issue where settings were reset on page load.
</li>
<li>
<b>[5.0.0.1]</b> Fixed the issue where settings page wouldn't load.
</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
export default {
2019-08-24 22:36:24 +02:00
data () {
return {
BrowserDetect: BrowserDetect
}
2019-08-25 01:52:04 +02:00
},
}
2019-06-14 23:10:21 +02:00
</script>
<style>
</style>