Merge branch 'stable'
This commit is contained in:
commit
4d83b8260e
@ -7,7 +7,12 @@
|
|||||||
* Settings page looks ugly af right now. Maybe fix it some time later
|
* Settings page looks ugly af right now. Maybe fix it some time later
|
||||||
|
|
||||||
|
|
||||||
### v4.1.1 (current)
|
### v4.1.2 (current)
|
||||||
|
|
||||||
|
* Fixed video alignment issues on www.reddit as well (for people who use old reddit without going to old.reddit)
|
||||||
|
* Fixed bug with 'player detection' tab
|
||||||
|
|
||||||
|
### v4.1.1
|
||||||
|
|
||||||
* Disabled gfycat
|
* Disabled gfycat
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ultravidify-git",
|
"name": "ultravidify",
|
||||||
"version": "4.0.0-a1",
|
"version": "4.1.2",
|
||||||
"description": "Aspect ratio fixer for youtube that works around some people's disability to properly encode 21:9 (and sometimes, 16:9) videos.",
|
"description": "Aspect ratio fixer for youtube that works around some people's disability to properly encode 21:9 (and sometimes, 16:9) videos.",
|
||||||
"author": "Tamius Han <tamius.han@gmail.com>",
|
"author": "Tamius Han <tamius.han@gmail.com>",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -941,6 +941,28 @@ var ExtensionConf = {
|
|||||||
},
|
},
|
||||||
css: '',
|
css: '',
|
||||||
},
|
},
|
||||||
|
"www.reddit.com" : {
|
||||||
|
mode: ExtensionMode.Enabled,
|
||||||
|
autoar: currentBrowser.firefox ? ExtensionMode.Enabled : ExtensionMode.Disabled,
|
||||||
|
override: false,
|
||||||
|
type: 'official',
|
||||||
|
stretch: Stretch.Default,
|
||||||
|
videoAlignment: VideoAlignment.Default,
|
||||||
|
keyboardShortcutsEnabled: ExtensionMode.Default,
|
||||||
|
DOM: {
|
||||||
|
video: {
|
||||||
|
manual: false,
|
||||||
|
querySelectors: '',
|
||||||
|
additionalCss: '',
|
||||||
|
},
|
||||||
|
player: {
|
||||||
|
manual: true,
|
||||||
|
useRelativeAncestor: true,
|
||||||
|
videoAncestor: 1,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
css: '',
|
||||||
|
},
|
||||||
"vimeo.com": {
|
"vimeo.com": {
|
||||||
mode: 3,
|
mode: 3,
|
||||||
autoar: 3,
|
autoar: 3,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Ultrawidify",
|
"name": "Ultrawidify",
|
||||||
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
|
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
|
||||||
"version": "4.1.1",
|
"version": "4.1.2",
|
||||||
"applications": {
|
"applications": {
|
||||||
"gecko": {
|
"gecko": {
|
||||||
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
||||||
|
@ -200,13 +200,13 @@ export default {
|
|||||||
toggleVideoManualQs() {
|
toggleVideoManualQs() {
|
||||||
this.ensureSettings('video');
|
this.ensureSettings('video');
|
||||||
this.videoManualQs = !this.videoManualQs;
|
this.videoManualQs = !this.videoManualQs;
|
||||||
this.settings.active.sites[this.site].DOM.video.enabled = this.videoManualQs;
|
this.settings.active.sites[this.site].DOM.video.manual = this.videoManualQs;
|
||||||
this.settings.save();
|
this.settings.save();
|
||||||
},
|
},
|
||||||
togglePlayerManualQs() {
|
togglePlayerManualQs() {
|
||||||
this.ensureSettings('player');
|
this.ensureSettings('player');
|
||||||
this.playerManualQs = !this.playerManualQs;
|
this.playerManualQs = !this.playerManualQs;
|
||||||
this.settings.active.sites[this.site].DOM.player.enabled = this.playerManualQs;
|
this.settings.active.sites[this.site].DOM.player.manual = this.playerManualQs;
|
||||||
this.settings.save();
|
this.settings.save();
|
||||||
},
|
},
|
||||||
toggleByNodeIndex() {
|
toggleByNodeIndex() {
|
||||||
|
@ -2,6 +2,11 @@
|
|||||||
<div>
|
<div>
|
||||||
<h2>What's new</h2>
|
<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>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.1.1 & 4.1.2</p>
|
||||||
|
<ul>
|
||||||
|
<li>Disabled extension on gfycat.</li>
|
||||||
|
<li>Fix for old.reddit.com applied to www.reddit.com</li>
|
||||||
|
</ul>
|
||||||
<p class="label">4.1.0</p>
|
<p class="label">4.1.0</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>This</li>
|
<li>This</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user