Include changelog

This commit is contained in:
Tamius Han 2024-06-09 21:24:26 +02:00
parent f824f73491
commit 10a8452709
2 changed files with 66 additions and 59 deletions

View File

@ -139,6 +139,9 @@
:eventBus="eventBus"
:site="site"
></DebugPanel>
<ChangelogPanel
v-if="selectedTab === 'changelog'"
></ChangelogPanel>
<AboutPanel
v-if="selectedTab === 'about'"
>
@ -155,6 +158,7 @@ import BaseExtensionSettings from './PlayerUiPanels/BaseExtensionSettings.vue'
import PlayerDetectionPanel from './PlayerUiPanels/PlayerDetectionPanel.vue'
import VideoSettings from './PlayerUiPanels/VideoSettings.vue'
import BrowserDetect from '../../ext/conf/BrowserDetect'
import ChangelogPanel from './PlayerUiPanels/ChangelogPanel.vue'
import AboutPanel from './PlayerUiPanels/AboutPanel.vue'
export default {
@ -164,6 +168,7 @@ export default {
BaseExtensionSettings,
AutodetectionSettingsPanel,
DebugPanel,
ChangelogPanel,
AboutPanel
},
mixins: [],

View File

@ -1,4 +1,5 @@
<template>
<div>
<h1>What's new</h1>
<p>Full changelog for older versions <a href="https://github.com/tamius-han/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
@ -59,6 +60,7 @@
Extension lost the ability to discriminate between iframes. Actions taken through the popup will be affect <b>all</b> iframes.
</li>
</ul>
</div>
</template>
<script>