Skip to content

Commit 8cf32be

Browse files
authored
Merge pull request #93 from patuwwy/imouse-ff
Fix iMouse sliders on Firefox
2 parents 84aa4c9 + bdf0c73 commit 8cf32be

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
## ShaderToy extension changelog:
2+
- 0.12.174 (04-10-2019)
3+
4+
- Fix iMouse sliders appearance on firefox.
25

36
- 0.12.172 (01-10-2019)
47

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[Chrome extension](https://chrome.google.com/webstore/detail/shadertoy-unofficial-plug/ohicbclhdmkhoabobgppffepcopomhgl?hl=pl)
66

7-
[Firefox add-on](https://addons.mozilla.org/en-US/firefox/addon/shadertoy-unofficial-plugin/) (not fully functional. WIP)
7+
[Firefox add-on](https://addons.mozilla.org/en-US/firefox/addon/shadertoy-unofficial-plugin/) (Not fully functional, see notes below)
88

99
## Info
1010

@@ -27,7 +27,7 @@ Please report bugs and request features [here](https://github.com/patuwwy/Shader
2727
- ~~Sorting shaders list by views, likes or comments on "My profile" page.~~
2828
(feature removed - implemented natively in Shadertoy)
2929

30-
- Alternative shaders list on profile page.
30+
- Alternative shaders list on profile page. (chrome only)
3131

3232
- ~~Shaders previews on "My profile" page.~~
3333
(feature removed - implemented natively in Shadertoy. Big preview on mouse over is still available)
@@ -40,7 +40,9 @@ Please report bugs and request features [here](https://github.com/patuwwy/Shader
4040
Key '8' divides by 8, 1920x1080 becomes 240x135.
4141

4242
This allows to run shaders smoothly (even in fullscreen) on non-top GPUs.
43-
Notice that lower resolution is interpolated to original size. This causes blurrish rendering. For pixelated image, rendering mode switch has been added in extension's popup (click on green S icon).
43+
Notice that lower resolution is interpolated to original size. This causes blurrish rendering.
44+
45+
For pixelated image, rendering mode switch has been added in extension's popup (click on green S icon) (chrome only).
4446

4547
- Take HQ screenshot. Screenshot resolution is 2 \* current resolution (including current resolution divider). 1920x1080 becomes 3840x2160.
4648

@@ -63,7 +65,7 @@ Please report bugs and request features [here](https://github.com/patuwwy/Shader
6365

6466
- List of recently viewed own shaders.
6567

66-
- Shader preview (automaticly generated image).
68+
- Shader preview (automatic generated image).
6769

6870
## Screenshots
6971

app/manifest.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"manifest_version": 2,
33
"name": "Shadertoy unofficial plugin.",
4-
"version": "0.12.172",
4+
"version": "0.12.174",
55
"description": "Shadertoy.com unofficial plugin.",
66
"homepage_url": "https://github.com/patuwwy/ShaderToy-Chrome-Plugin",
77
"background": {
8-
"scripts": [ "background.js" ],
8+
"scripts": ["background.js"],
99
"persistent": false
1010
},
11-
"permissions": [ "https://www.shadertoy.com/*", "activeTab", "storage" ],
11+
"permissions": ["https://www.shadertoy.com/*", "activeTab", "storage"],
1212
"icons": {
1313
"128": "assets/icon_active_128.png"
1414
},
@@ -19,10 +19,10 @@
1919
},
2020
"content_scripts": [
2121
{
22-
"matches": [ "https://www.shadertoy.com/*" ],
23-
"exclude_matches": [ "https://www.shadertoy.com/signin" ],
24-
"js": [ "contentscript.js" ],
25-
"css": [ "style.css" ],
22+
"matches": ["https://www.shadertoy.com/*"],
23+
"exclude_matches": ["https://www.shadertoy.com/signin"],
24+
"js": ["contentscript.js"],
25+
"css": ["style.css"],
2626
"run_at": "document_end"
2727
}
2828
],

app/style.css

-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ html {
122122
float: left;
123123
display: block;
124124
width: 9%;
125-
height: 100%;
126125
text-align: center;
127126
color: #888;
128127
}

0 commit comments

Comments
 (0)