Skip to content

Commit

Permalink
Release OneeChan v5.0.16.
Browse files Browse the repository at this point in the history
  • Loading branch information
seaweedchan committed Jul 16, 2013
1 parent c5914d4 commit e7b79ae
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,9 @@
### v5.0.16
*2013-07-15*

**seaweedchan**:
- New option: `Style Emails as Links`. Enabled was the default behavior before.

### v5.0.15 ### v5.0.15
*2013-07-15* *2013-07-15*


Expand Down
2 changes: 1 addition & 1 deletion builds/OneeChan.meta.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions builds/OneeChan.user.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/crx/manifest.json
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
{ {
"name": "OneeChan", "name": "OneeChan",
"version": "5.0.15", "version": "5.0.16",
"manifest_version": 2, "manifest_version": 2,
"description": "Customizable rice and themes for 4chan and 4chan X.", "description": "Customizable rice and themes for 4chan and 4chan X.",
"icons": { "icons": {
Expand Down
6 changes: 4 additions & 2 deletions builds/crx/script.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
{ {
"name": "OneeChan", "name": "OneeChan",
"version": "5.0.15", "version": "5.0.16",
"description": "Customizable rice and themes for 4chan and 4chan X.", "description": "Customizable rice and themes for 4chan and 4chan X.",
"meta": { "meta": {
"name": "OneeChan", "name": "OneeChan",
Expand Down
4 changes: 3 additions & 1 deletion src/css/Colors.css
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ textarea,
/* Names */ /* Names */
.nameBlock>.name, .nameBlock>.name,
.com, .com,
.post-author { .post-author,
:root.email-color a.useremail .name {
color: " + $SS.theme.nameColor.hex + " !important; color: " + $SS.theme.nameColor.hex + " !important;
} }
/* Tripcodes */ /* Tripcodes */
.nameBlock>.postertrip, .nameBlock>.postertrip,
:root.email-color a.useremail .postertrip,
.post-tripcode, .post-tripcode,
.tag { .tag {
color: " + $SS.theme.tripColor.hex + " !important; color: " + $SS.theme.tripColor.hex + " !important;
Expand Down
2 changes: 2 additions & 0 deletions src/script.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"--Replies--": [ "header", "" ], "--Replies--": [ "header", "" ],
"Fit Width": [ true, "Makes the replies stretch to the width of the page" ], "Fit Width": [ true, "Makes the replies stretch to the width of the page" ],
"Style Post Info": [ true, "Separate the post info by the post info colors defined in themes" ], "Style Post Info": [ true, "Separate the post info by the post info colors defined in themes" ],
"Style Emails as Links": [ true, "Makes names and tripcodes that have emails change to the theme\'s link color."],
"Allow Wrapping Around OP": [ false, "Allow for replies to wrap around the OP instead of forced onto their own line. "], "Allow Wrapping Around OP": [ false, "Allow for replies to wrap around the OP instead of forced onto their own line. "],
"Rounded Corners": [ false, "Styles a few elements to have subtly rounded coreners" ], "Rounded Corners": [ false, "Styles a few elements to have subtly rounded coreners" ],
"Recolor Even Replies": [ false, "Makes every other post a darker color. Not compatible with Quote Threading." ], "Recolor Even Replies": [ false, "Makes every other post a darker color. Not compatible with Quote Threading." ],
Expand Down Expand Up @@ -2550,6 +2551,7 @@
$("html").optionClass("Show Middle Ad", false, "hide-middle" ); $("html").optionClass("Show Middle Ad", false, "hide-middle" );
$("html").optionClass("Show Bottom Ad", false, "hide-bottom" ); $("html").optionClass("Show Bottom Ad", false, "hide-bottom" );
$("html").optionClass("Reduce Ad Opacity", true, "ad-opacity" ); $("html").optionClass("Reduce Ad Opacity", true, "ad-opacity" );
$("html").optionClass("Style Emails as Links", false, "email-color" );
} }
}, },


Expand Down

0 comments on commit e7b79ae

Please sign in to comment.