Raymond Hill
5be4d5d877
Make pslInit() returns the publicSuffixList instance used internally
...
Related discussion:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1664#issuecomment-889647595
2021-07-30 07:00:45 -04:00
Raymond Hill
a58a093d90
Make Firefox dev build auto-update
2021-07-29 17:11:42 -04:00
Raymond Hill
98dd03b09b
New revision for dev build
2021-07-29 17:05:19 -04:00
Raymond Hill
076a088371
Remove stray async
2021-07-29 17:04:32 -04:00
Raymond Hill
98fc66bb1b
Add support for enabling WASM code paths in NodeJS package
...
See `test.js` for reference on how to enable WASM code
paths (which are disabled by default).
2021-07-29 16:54:51 -04:00
Raymond Hill
b02970f5ee
Add command to update submodules
2021-07-29 11:46:35 -04:00
Raymond Hill
5ce30d7163
Update submodules
2021-07-29 11:39:11 -04:00
Raymond Hill
0757c44552
Update submodules
2021-07-29 11:31:48 -04:00
Manish Jethani
63591ef2aa
Make uAssets a submodule
2021-07-29 19:36:49 +05:30
Raymond Hill
5560071468
Make Firefox dev build auto-update
2021-07-29 09:21:16 -04:00
Raymond Hill
0c326b3b89
New revision for dev build
2021-07-29 09:06:08 -04:00
Raymond Hill
1257dda47f
Import translation work from https://crowdin.com/project/ublock
2021-07-29 09:03:03 -04:00
Raymond Hill
3488e6d5ba
Merge branch 'master' of https://github.com/gorhill/uBlock into 1664
2021-07-29 08:54:48 -04:00
Raymond Hill
8ef8c5ab2e
Group all benchmarking functions in a separate file
...
Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1664
The various filtering engine benchmarking functions are best
isolated in their own file since they have specific
dependencies that should not be suffered by the filtering
engines.
Additionally, moved decomposeHostname() into uri-utils.js
as it's a hostname-related function required by many
filtering engine cores -- this allows to further reduce
or outright remove dependency on `µb`.
2021-07-29 08:44:15 -04:00
Raymond Hill
62b6826dd5
Further modularize uBO's codebase
...
Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1664
Modularization is a necessary step toward possibly publishing
a more complete nodejs package to allow using uBO's filtering
capabilities outside of the uBO extension.
Additionally, as per feedback, remove undue usage of console
output as per feedback:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1664#issuecomment-888451032
2021-07-28 19:48:38 -04:00
Raymond Hill
d7cd6d72f6
Build/release a nodejs package in tagged releases
...
Related issue:
- https://github.com/cliqz-oss/adblocker/pull/2075
2021-07-28 19:43:11 -04:00
Raymond Hill
09db8803c5
Remove requirement of uAssets presence to build a package
...
Related discussion:
- https://github.com/cliqz-oss/adblocker/pull/2075#discussion_r678654293
2021-07-28 19:40:11 -04:00
Raymond Hill
4612bfdbac
Make Firefox dev build auto-update
2021-07-28 13:11:09 -04:00
Raymond Hill
2f53a1a11e
New revision for dev build
2021-07-28 13:07:01 -04:00
Raymond Hill
ee0b2c2fa4
Do not truncate datalayer
...
Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1671
Regression from:
- 0dbe581c5b
2021-07-28 12:45:03 -04:00
Raymond Hill
e1222d1643
Use require
instead of fs
...
Related feedback:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1664#issuecomment-888332409
2021-07-28 10:38:24 -04:00
Raymond Hill
22022f636f
Modularize codebase with export/import
...
Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1664
The changes are enough to fulfill the related issue.
A new platform has been added in order to allow for building
a NodeJS package. From the root of the project:
./tools/make-nodejs
This will create new uBlock0.nodejs directory in the
./dist/build directory, which is a valid NodeJS package.
From the root of the package, you can try:
node test
This will instantiate a static network filtering engine,
populated by easylist and easyprivacy, which can be used
to match network requests by filling the appropriate
filtering context object.
The test.js file contains code which is typical example
of usage of the package.
Limitations: the NodeJS package can't execute the WASM
versions of the code since the WASM module requires the
use of fetch(), which is not available in NodeJS.
This is a first pass at modularizing the codebase, and
while at it a number of opportunistic small rewrites
have also been made.
This commit requires the minimum supported version for
Chromium and Firefox be raised to 61 and 60 respectively.
2021-07-27 17:26:04 -04:00
Raymond Hill
193cbac43e
Make Firefox dev build auto-update
2021-07-26 08:40:46 -04:00
Raymond Hill
3ba1fe05eb
New revision for dev build
2021-07-26 08:36:00 -04:00
Raymond Hill
f392d09a13
Fix broken the compiling of generic cosmetic exception filters
...
Related issue:
- https://github.com/uBlockOrigin/uAssets/pull/9637
Regression from
- https://github.com/gorhill/uBlock/commit/c25938f
2021-07-26 08:34:32 -04:00
Raymond Hill
89064478dd
Modernize code: URLSearchParams() API support is now widespread
2021-07-25 07:08:03 -04:00
Raymond Hill
bf7b0702e4
Make Firefox dev build auto-update
2021-07-24 07:56:34 -04:00
Raymond Hill
8d270cf6e6
New revision for dev build
2021-07-24 07:48:20 -04:00
Raymond Hill
c25938f5bc
Ensure compiled sections are ordered in ascending id
...
Related issue:
- https://www.reddit.com/r/uBlockOrigin/comments/oq6kt5/ubo_loads_generic_filter_instead_of_specific/h6a4nca/
2021-07-24 07:44:26 -04:00
Raymond Hill
2035475371
Make Firefox dev build auto-update
2021-07-23 10:35:48 -04:00
Raymond Hill
0fcb3cee37
New revision for dev build
2021-07-23 10:13:11 -04:00
Raymond Hill
51d14de44a
Fix handling of some procedural cosmetic filters with explicit :scope
...
Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1011#issuecomment-884806241
2021-07-23 10:11:07 -04:00
Raymond Hill
63c5bd34dc
Simplify maintenance
2021-07-23 09:04:59 -04:00
Raymond Hill
c893f76c12
Fix broken test
2021-07-23 08:51:06 -04:00
Raymond Hill
22284e5ff6
Use #?#
form to make the test page compatible with other blockers
2021-07-23 08:43:49 -04:00
Raymond Hill
31e0ea1e83
Add more procedural cosmetic filter cases
...
Related discussion:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1011#issuecomment-884806241
2021-07-23 08:39:23 -04:00
Raymond Hill
d5ced9bced
New revision for stable release
2021-07-23 07:38:44 -04:00
Raymond Hill
7645189386
Import translation work from https://crowdin.com/project/ublock
2021-07-22 09:44:41 -04:00
Raymond Hill
cd237ed3e1
Fix rendering of punycoded hostname in popup panel
...
Regression from:
- 75deadd31e
2021-07-20 11:22:33 -04:00
Raymond Hill
0c66680a2c
Make Firefox dev build auto-update
2021-07-20 08:51:17 -04:00
Raymond Hill
d4b1b8467b
Import translation work from https://crowdin.com/project/ublock
2021-07-20 08:45:27 -04:00
Raymond Hill
d46f93a5a0
New revision for release candidate
2021-07-20 08:42:26 -04:00
Raymond Hill
75deadd31e
Provide visual cue in popup panel when base domain has subdomains
...
Related issue:
- https://github.com/gorhill/uBlock/issues/284
2021-07-20 08:37:05 -04:00
Raymond Hill
dcc72ba51c
Make Firefox dev build auto-update
2021-07-19 11:46:40 -04:00
Raymond Hill
525aceb34d
New revision for release candidate
2021-07-19 11:39:16 -04:00
Raymond Hill
aff6a2fa05
Import translation work from https://crowdin.com/project/ublock
2021-07-19 11:38:31 -04:00
Raymond Hill
f51106014b
Import translation work from https://crowdin.com/project/ublock
2021-07-19 11:36:38 -04:00
Raymond Hill
448a9a52f6
Better using present tense...?
2021-07-19 11:32:43 -04:00
Raymond Hill
c9710ac9d1
Better deal with no-longer-existing ports
...
Disconnected ports could still happen Even when the port
was still seen as valid internally. Using a try-catch
block makes invalid port detection more reliable. This
is an occurrence I often encountered when stepping into
content script code, causing suprious error messages to
be thrown into uBO's background dev console.
2021-07-19 11:25:52 -04:00
Raymond Hill
efca367694
Make Firefox dev build auto-update
2021-07-18 10:21:22 -04:00