Skip to content

Commit

Permalink
1.13.2 versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
xingyzt committed Aug 13, 2020
1 parent 757e9e1 commit b2e7626
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
Binary file removed mercator-studio/.script.js.swp
Binary file not shown.
2 changes: 1 addition & 1 deletion mercator-studio/README
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Somewhat nice presets:
Scroll or drag the sliders to adjust, and right click on them to reset.

Changelog:
· 1.13.1 Preserve values across sessions.
· 1.13.2 Preserve values across sessions.
· 1.12.0 Luminance-preserving temperature & tint.
· 1.11.0 Multiline text input. Rebranded as Mercator Studio for Google Meet.
· 1.10.8 Right click to individually reset; Text scales correctly.
Expand Down
2 changes: 1 addition & 1 deletion mercator-studio/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Mercator Studio for Google Meet",
"version": "1.13.1",
"version": "1.13.2",
"author": "Xing (x-ing.space)",
"description": "Change how you look on Google Meet with adjustable exposure, vignette, emojis, and more!",
"content_scripts": [
Expand Down
22 changes: 11 additions & 11 deletions mercator-studio/script.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name Mercator Studio for Google Meet
// @version 1.13.1
// @version 1.13.2
// @description Change how you look on Google Meet.
// @author Xing <[email protected]> (https://x-ing.space)
// @copyright 2020, Xing (https://x-ing.space)
Expand Down Expand Up @@ -343,23 +343,23 @@ input#letterbox {

function get_preset_values ( preset_name ) {
switch(preset_name){
case 'concorde': return {
saturate: 0.1,
case 'concorde': return {
contrast: 0.1,
temperature: -0.4,
tint: 0.2,
temperature: -0.25,
tint: -0.05,
saturate: 0.2,
}
case 'mono': return {
saturate: -1,
contrast: -0.1,
exposure: 0.1,
contrast: -0.1,
sepia: 0.8,
saturate: -1,
vignette: -0.5,
}
case 'stucco': return {
contrast: -0.1,
temperature: -0.2,
tint: 0.2,
sepia: 0.2,
tint: 0.1,
sepia: 0.25,
saturate: 0.25,
fog: 0.1,
}
Expand All @@ -373,7 +373,7 @@ input#letterbox {
}
case 'deepfry': return {
contrast: 1,
saturate: 1,
saturate: 0.5,
}
}
}
Expand Down

0 comments on commit b2e7626

Please sign in to comment.