Skip to content

Commit

Permalink
Merge pull request #100 from jspenguin2017/master
Browse files Browse the repository at this point in the history
v15.0.0.93
  • Loading branch information
LiCybora committed Feb 14, 2019
2 parents a6ffeda + d9e055e commit 8bc3b31
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
6 changes: 2 additions & 4 deletions docs/index.html
Expand Up @@ -100,7 +100,7 @@ <h2>Common questions and issues</h2>

<p><strong>Can console messages be turned off?</strong></p>
<p>No, I need to see the console output on your end to quickly find the cause of your issues, that is why I ask for a screenshot of the console when you open an issue.</p>
<p>In production mode, all the console messages will begin with <code>[Nano]</code>, so you can easily filter them out.</p>
<p>In production mode, all the console messages will begin with <code>[Nano]</code>, so you can easily filter them out with <code>-[Nano]</code>.</p>
<br />

<p><strong>Can mining wall be bypassed?</strong></p>
Expand Down Expand Up @@ -257,7 +257,6 @@ <h2>Known issues</h2>
javher.com [NSFW],
kissanime.ru,
kissmanga.com,
pokyun.tv,
quora.com,
wowescape.com
</strong>
Expand All @@ -273,8 +272,7 @@ <h2>Known issues</h2>
<a href="https://github.com/uBlockOrigin/uAssets/issues/2130" target="_blank" rel="noopener">Issue 2</a>
<a href="https://github.com/jspenguin2017/uBlockProtector/issues/817" target="_blank" rel="noopener">[NSFW] Issue 3</a>
<a href="https://github.com/uBlockOrigin/uAssets/issues/3031" target="_blank" rel="noopener">[NSFW] Issue 4</a>
<a href="https://github.com/NanoMeow/QuickReports/issues/487" target="_blank" rel="noopener">Issue 5</a>
<a href="https://github.com/uBlockOrigin/uAssets/issues/3200" target="_blank" rel="noopener">Issue 6</a>
<a href="https://github.com/uBlockOrigin/uAssets/issues/3200" target="_blank" rel="noopener">Issue 5</a>
</p>
<br />

Expand Down
3 changes: 2 additions & 1 deletion src/content/rules-common.js
Expand Up @@ -43,8 +43,8 @@

const domCmpWhitelist = [
// Local network
"localhost",
"127.0.0.1",
"localhost",

// Google
"google.it.ao",
Expand Down Expand Up @@ -112,6 +112,7 @@
"derstandard.at",
"di.fm",
"download.ipeenk.com",
"filmweb.pl",
"imdb.com",
"infostrow.pl",
"jazzradio.com",
Expand Down
11 changes: 8 additions & 3 deletions src/content/rules-specific.js
Expand Up @@ -2852,9 +2852,6 @@ if (a.domCmp(["pornovoisines.com"])) {
if (a.domCmp(["letribunaldunet.fr"])) {
a.noAccess("adback");
}
if (a.domCmp(["filmweb.pl"])) {
a.noAccessExt("document.onreadystatechange");
}
if (a.domCmp(["playstation.com"])) {
a.readOnly("adFileLoaded", true);
}
Expand Down Expand Up @@ -3033,6 +3030,14 @@ if (a.domCmp([
a.css(".adblocker-message { display: none; }");
}

if (a.domCmp([
"dobreprogramy.pl",
])) {
// https://github.com/MajkiIT/polish-ads-filter/issues/12101
a.css("[hidden] { display: none; }");
a.css('div[class*="tag-"].home-section > .span-8 { width: 100%; margin-right: 15px; }');
}

if (a.domCmp([
"go4up.com",
])) {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Expand Up @@ -54,7 +54,7 @@
"webRequest",
"webRequestBlocking"
],
"version": "15.0.0.90",
"version": "15.0.0.93",
"web_accessible_resources": [
"resources/*"
]
Expand Down
2 changes: 1 addition & 1 deletion src/reporter/index.js
Expand Up @@ -81,6 +81,7 @@ const knownGood = [

// Fixed in regional filters
"dn.se",
"filmweb.pl",
"kwejk.pl",
"onet.pl",
"tvp.pl",
Expand All @@ -99,7 +100,6 @@ const knownBad = [
"kissmanga.com",
"maddertranslates.com",
"twitch.tv",
"pokyun.tv",
];
/**
* Check if a domain matches one of the matchers.
Expand Down

0 comments on commit 8bc3b31

Please sign in to comment.