Skip to content
This repository was archived by the owner on Apr 30, 2019. It is now read-only.

Commit eede275

Browse files
committed
Fix Search mode and bump version
1 parent b7cd14b commit eede275

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ Note: you need to use Safari to build the ".safariextz" file. The build command
2424
- Suggestions?
2525

2626
## Changelog
27+
### Version 1.8.2
28+
- Fix Search mode
29+
2730
### Version 1.8.1
2831
- Changed versioning type
2932
- Improved Plex native support
30-
- Added settings for additional Plex domains. The settings are accessible via Extensions panel in Safari preferences
33+
- Added settings for additional Plex domains. The settings are accessible via Extensions panel in Safari preferences. You can add 1 domain like this: "test.com" or multiple domains "test1.com|test2.com|test3.com". IPs are supported too.
3134
- Improved picker mode by adding a red border to the current hovered element
3235
- Improved menu icon
3336

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "piptool",
3-
"version": "1.8.1",
3+
"version": "1.8.2",
44
"description": "Adds the missing Picture-in-Picture functionality to Youtube, Netflix, Plex (Web), Dailymotion",
55
"homepage": "https://github.com/bfmatei/PiPTool.safariextension",
66
"license": "GPL-3.0",

src/scripts/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,9 @@
8585
document.removeEventListener('mousemove', pipMouseMoveEvent);
8686
document.removeEventListener('keydown', pipKeydownEvent);
8787

88-
document.querySelectorAll('.pip-hover-mode').forEach(function (element) {
88+
document.querySelectorAll('.pip-hover-mode, .deactivate-pointer-events').forEach(function (element) {
8989
element.classList.remove('pip-hover-mode');
90+
element.classList.remove('deactivate-pointer-events');
9091
});
9192
}
9293

src/stylesheets/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ body:hover > .netflix-pip {
4949
box-sizing: border-box!important;
5050
}
5151

52-
.pip-hover-mode.deactivate-pointer-events {
52+
.deactivate-pointer-events {
5353
pointer-events: none!important;
5454
}

0 commit comments

Comments
 (0)