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-07-20 21:33:15 +02:00
|
|
|
<p class="label">4.3.0</p>
|
|
|
|
This update mostly contains things that have the potential to make my life easier when solving issues.
|
2019-06-24 14:29:47 +02:00
|
|
|
<ul>
|
2019-07-20 21:33:15 +02:00
|
|
|
<li>User-friendly way of importing-exporting settings (exporting settings requires 'download' permission)</li>
|
|
|
|
<li>Reworked logging (basic). Logging can be enabled at runtime and and logs saved to a file. (Saving logs requires 'download' permission)</li>
|
2019-07-05 23:45:57 +02:00
|
|
|
<li>Some people reported issues with inconsistent video alignment on youtube. While I've not been able to make that bug happen to me,
|
|
|
|
(which means I haven't been able to fix it either), reports describe behaviour similar to what was going on with Iridium. Examining
|
|
|
|
the Iridium issue revealed an issue that could be potentially blamed for this behaviour. That issue was fixed. Since I've never been able to make this problem
|
|
|
|
happen to me, I'm not being able to verify whether that issue is gone. <b>If you're still experiencing issues with inconsistent video alignment,
|
|
|
|
please contact me via github, reddit or email.</b> See 'Report a problem' tab for more details.</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>
|