Skip to content

Commit e1556de

Browse files
committed
[Release] v1.2.1
1 parent 103a9b9 commit e1556de

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
# v1.2.0 (January 11, 2019)
2-
* Translations: 🇪🇸
1+
# v1.2.1 (January 12, 2019)
2+
* Fix: keyup issue on aspect ratio custom values
33

44
[![](https://img.shields.io/badge/donate-paypal-005EA6.svg)](https://www.paypal.me/ptkdev) [![](https://img.shields.io/badge/donate-patreon-F87668.svg)](https://www.patreon.com/ptkdev) [![](https://img.shields.io/badge/donate-sponsors-ea4aaa.svg)](https://github.com/sponsors/ptkdev/) [![](https://img.shields.io/badge/donate-ko--fi-29abe0.svg)](https://ko-fi.com/ptkdev)
55

66

7+
# v1.2.0 (January 11, 2019)
8+
* Translations: 🇪🇸
9+
710
# v1.1.0 (January 10, 2019)
811
* Feature: detect fullscreen
912

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# 🖥 Chrome Extension: Aspect Ratio 21:9
44

5-
[![](https://img.shields.io/badge/version-v1.2.0-lightgrey.svg)](https://github.com/ptkdev/chrome-extension-aspectratio219/releases) [![](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/ptkdev/chrome-extension-aspectratio219/blob/nightly/LICENSE.md) [![](https://img.shields.io/badge/ES-9-F7DF1E.svg)](https://wikipedia.org/wiki/ECMAScript) [![](https://snyk.io/test/github/ptkdev/chrome-extension-aspectratio219/badge.svg)](https://snyk.io/test/github/ptkdev/chrome-extension-aspectratio219)
5+
[![](https://img.shields.io/badge/version-v1.2.1-lightgrey.svg)](https://github.com/ptkdev/chrome-extension-aspectratio219/releases) [![](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/ptkdev/chrome-extension-aspectratio219/blob/nightly/LICENSE.md) [![](https://img.shields.io/badge/ES-9-F7DF1E.svg)](https://wikipedia.org/wiki/ECMAScript) [![](https://snyk.io/test/github/ptkdev/chrome-extension-aspectratio219/badge.svg)](https://snyk.io/test/github/ptkdev/chrome-extension-aspectratio219)
66

77
> Fit the screen properly in fullscreen mode on monitor with 21:9 aspect ratio. Work on Netflix, Youtube, PrimeVideo, VVVVID, etc...
88

client/js/events.js

+8
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,18 @@ function settings_aspect() {
138138
chrome.storage.local.set({"aspect_x": this.value});
139139
});
140140

141+
dom.query("#aspect_x")[0].addEventListener("keyup", function() {
142+
chrome.storage.local.set({"aspect_x": this.value});
143+
});
144+
141145
dom.query("#aspect_y")[0].addEventListener("change", function() {
142146
chrome.storage.local.set({"aspect_y": this.value});
143147
});
144148

149+
dom.query("#aspect_y")[0].addEventListener("keyup", function() {
150+
chrome.storage.local.set({"aspect_y": this.value});
151+
});
152+
145153
dom.query("#stretch")[0].addEventListener("click", function() {
146154
dom.id("#aspect_x").value = "1.33";
147155
dom.id("#aspect_y").value = "1";

configs/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "__MSG_extName__",
33
"description": "__MSG_description__",
44
"manifest_version": 2,
5-
"version": "1.2.0",
5+
"version": "1.2.1",
66
"author": "Patryk Rzucidło [@ptkdev] <[email protected]> (https://ptk.dev)",
77
"browser_action": {
88
"default_icon":"images/icon_app_128x128.png",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ptkdev/chrome-extension-aspectratio219",
33
"description": "Fit the screen properly in fullscreen mode on monitor with 21:9 aspect ratio.",
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"main": "src/manifest.json",
66
"author": "Patryk Rzucidło [@ptkdev] <[email protected]> (https://ptk.dev)",
77
"license": "MIT",

0 commit comments

Comments
 (0)