Include changelog
This commit is contained in:
parent
f824f73491
commit
10a8452709
@ -139,6 +139,9 @@
|
|||||||
:eventBus="eventBus"
|
:eventBus="eventBus"
|
||||||
:site="site"
|
:site="site"
|
||||||
></DebugPanel>
|
></DebugPanel>
|
||||||
|
<ChangelogPanel
|
||||||
|
v-if="selectedTab === 'changelog'"
|
||||||
|
></ChangelogPanel>
|
||||||
<AboutPanel
|
<AboutPanel
|
||||||
v-if="selectedTab === 'about'"
|
v-if="selectedTab === 'about'"
|
||||||
>
|
>
|
||||||
@ -155,6 +158,7 @@ import BaseExtensionSettings from './PlayerUiPanels/BaseExtensionSettings.vue'
|
|||||||
import PlayerDetectionPanel from './PlayerUiPanels/PlayerDetectionPanel.vue'
|
import PlayerDetectionPanel from './PlayerUiPanels/PlayerDetectionPanel.vue'
|
||||||
import VideoSettings from './PlayerUiPanels/VideoSettings.vue'
|
import VideoSettings from './PlayerUiPanels/VideoSettings.vue'
|
||||||
import BrowserDetect from '../../ext/conf/BrowserDetect'
|
import BrowserDetect from '../../ext/conf/BrowserDetect'
|
||||||
|
import ChangelogPanel from './PlayerUiPanels/ChangelogPanel.vue'
|
||||||
import AboutPanel from './PlayerUiPanels/AboutPanel.vue'
|
import AboutPanel from './PlayerUiPanels/AboutPanel.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -164,6 +168,7 @@ export default {
|
|||||||
BaseExtensionSettings,
|
BaseExtensionSettings,
|
||||||
AutodetectionSettingsPanel,
|
AutodetectionSettingsPanel,
|
||||||
DebugPanel,
|
DebugPanel,
|
||||||
|
ChangelogPanel,
|
||||||
AboutPanel
|
AboutPanel
|
||||||
},
|
},
|
||||||
mixins: [],
|
mixins: [],
|
||||||
|
@ -1,64 +1,66 @@
|
|||||||
<template>
|
<template>
|
||||||
<h1>What's new</h1>
|
<div>
|
||||||
<p>Full changelog for older versions <a href="https://github.com/tamius-han/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
|
<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>
|
||||||
|
|
||||||
<h2>6.0.0</h2>
|
<h2>6.0.0</h2>
|
||||||
<p>
|
<p>
|
||||||
I don't think I need to write a changelog for this one.
|
I don't think I need to write a changelog for this one.
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>Manifest v3</b>. Bit late, but still.</li>
|
<li><b>Manifest v3</b>. Bit late, but still.</li>
|
||||||
<li>
|
<li>
|
||||||
<b>In-player UI.</b><br/>
|
<b>In-player UI.</b><br/>
|
||||||
This one took major effort to pull off. Required some changes under the hood, required me to de-spaghettify some code. The UI will only show
|
This one took major effort to pull off. Required some changes under the hood, required me to de-spaghettify some code. The UI will only show
|
||||||
if the video takes up sufficient amount of space (currently determined as 960 pixels wide).
|
if the video takes up sufficient amount of space (currently determined as 960 pixels wide).
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<b>New alignment options.</b> Video can be aligned vertically as well as horizontally.
|
<b>New alignment options.</b> Video can be aligned vertically as well as horizontally.
|
||||||
</li>
|
</li>
|
||||||
<!-- <li>
|
<!-- <li>
|
||||||
By default, Ultrawidify will not kick in on "small videos". You have to be either in full screen or theater mode. Ultrawidify assumes that any
|
By default, Ultrawidify will not kick in on "small videos". You have to be either in full screen or theater mode. Ultrawidify assumes that any
|
||||||
video that takes up more than 85% of the window width is being viewed in theater mode. This value may be tweaked later on. This feature can be
|
video that takes up more than 85% of the window width is being viewed in theater mode. This value may be tweaked later on. This feature can be
|
||||||
configured (or turned off entirely) via 'Advanced options' menu on the in-player UI.
|
configured (or turned off entirely) via 'Advanced options' menu on the in-player UI.
|
||||||
</li> -->
|
</li> -->
|
||||||
<li>
|
<li>
|
||||||
The in-player extension UI will do a better job differentiating between the various level of support: "official" for the sites that Tam can check
|
The in-player extension UI will do a better job differentiating between the various level of support: "official" for the sites that Tam can check
|
||||||
on his own, "fingers crossed" for sites that Tam can't check because my load-bearing credit card can't support the weight of a dozen subscription
|
on his own, "fingers crossed" for sites that Tam can't check because my load-bearing credit card can't support the weight of a dozen subscription
|
||||||
services, and "community support" for sites that enjoy support through the helping hand of people willing to help.
|
services, and "community support" for sites that enjoy support through the helping hand of people willing to help.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
The in-player UI should now display a warning whenever Ultrawidify detects automatic aspect ratio detection isn't happening because the site uses DRM.
|
The in-player UI should now display a warning whenever Ultrawidify detects automatic aspect ratio detection isn't happening because the site uses DRM.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Better zooming. The slider is back, baby.
|
Better zooming. The slider is back, baby.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Panning option that's a bit more intuitive.
|
Panning option that's a bit more intuitive.
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>Unbaked features</h3>
|
<h3>Unbaked features</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<b>Player UI settings</b>. Ultrawidify doesn't always correctly identify which area the video should fill, especially when not in full screen mode.
|
<b>Player UI settings</b>. Ultrawidify doesn't always correctly identify which area the video should fill, especially when not in full screen mode.
|
||||||
Version 6.0.0 was intended to come with UI that makes it easier for you to "help" ultrawidify by identifying the correct player element. Alas, I was
|
Version 6.0.0 was intended to come with UI that makes it easier for you to "help" ultrawidify by identifying the correct player element. Alas, I was
|
||||||
busier than expected and manifest v3 deadline came faster than expected.
|
busier than expected and manifest v3 deadline came faster than expected.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<b>Disabling Ultrawidify UI trigger zone, or otherwise changing target area size and position, is not possible</b>.
|
<b>Disabling Ultrawidify UI trigger zone, or otherwise changing target area size and position, is not possible</b>.
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>Regressions</h3>
|
<h3>Regressions</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
Due to major changes under the hood, custom settings from older versions may not have been migrated.
|
Due to major changes under the hood, custom settings from older versions may not have been migrated.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
It is unclear how extension acts on sites with more than one video.
|
It is unclear how extension acts on sites with more than one video.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Extension lost the ability to discriminate between iframes. Actions taken through the popup will be affect <b>all</b> iframes.
|
Extension lost the ability to discriminate between iframes. Actions taken through the popup will be affect <b>all</b> iframes.
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
Loading…
Reference in New Issue
Block a user