changelog update

This commit is contained in:
Tamius Han 2019-10-30 17:47:15 +01:00
parent 42d85f75f7
commit 04c33956a1
3 changed files with 16 additions and 12 deletions

View File

@ -17,6 +17,8 @@ QoL improvements for me:
* Russian users (and users of other non-latin keyboard layouts) can now use keyboard shortcuts by default, without having to rebind them manually. (Only applicable for new installs — existing users need to reset settings to default in extension settings) * Russian users (and users of other non-latin keyboard layouts) can now use keyboard shortcuts by default, without having to rebind them manually. (Only applicable for new installs — existing users need to reset settings to default in extension settings)
* NOTE: when using non-latin layouts, 'zoom' shortcut (`z` by default) uses the position of 'Y' on QWERTY layout. * NOTE: when using non-latin layouts, 'zoom' shortcut (`z` by default) uses the position of 'Y' on QWERTY layout.
* Ability to preserve aspect ratio between different videos (applies to current page and doesn't survive proper page reloads) * Ability to preserve aspect ratio between different videos (applies to current page and doesn't survive proper page reloads)
* Fixed bug where keyboard shortcuts would work while typing in certain text fields
* Fixed minor bug with autodetection
### v4.3.1 (current) ### v4.3.1 (current)

View File

@ -44,26 +44,26 @@ class UW {
if (!this.logger) { if (!this.logger) {
const loggingOptions = { const loggingOptions = {
logToFile: false, logToFile: false,
logToConsole: false, logToConsole: true,
fileOptions: { fileOptions: {
// really the same stuff as consoleOptions // really the same stuff as consoleOptions
}, },
consoleOptions: { consoleOptions: {
enabled: true, // if logging is enabled at all enabled: true, // if logging is enabled at all
'debug': true, // 'debug': true,
'init': true, // 'init': true,
'settings': true, // 'settings': true,
'keyboard': false, // 'keyboard': true,
'mousemove': false, // 'mousemove': false,
'actionHandler': false, // 'actionHandler': false,
'comms': false, // 'comms': false,
'playerDetect': false, // 'playerDetect': false,
// 'resizer': true, // 'resizer': true,
// 'scaler': true, // 'scaler': true,
// 'stretcher': true, // 'stretcher': true,
'videoRescan': false, // 'videoRescan': false,
'arDetect': false, // 'arDetect': true,
'arDetect_verbose': false, // 'arDetect_verbose': true,
} }
}; };
this.logger = new Logger(loggingOptions); this.logger = new Logger(loggingOptions);

View File

@ -10,6 +10,8 @@
<li>NOTE: when using non-latin layouts, 'zoom' shortcut (`z` by default) uses the position of 'Y' on QWERTY layout.</li> <li>NOTE: when using non-latin layouts, 'zoom' shortcut (`z` by default) uses the position of 'Y' on QWERTY layout.</li>
<li>Ability to preserve aspect ratio between different videos (applies to current page and doesn't survive proper <li>Ability to preserve aspect ratio between different videos (applies to current page and doesn't survive proper
page reloads)</li> page reloads)</li>
<li>Fixed bug where keyboard shortcuts would work while typing in certain text fields</li>
<li>Fixed a minor bug with autodetection</li>
</ul> </ul>
</div> </div>
</template> </template>