Breaking changes

Fix data URIs not correctly parsed.
Fix downloading files may be caught in infinite redirect loops.
Add experimental JavaScript support for providing subscriptions, filtering nodes, sorting nodes and generating groups.
Add tag support for adding group name to a specific link.
Add complete matcher support for Emoji and rename match rule.
Optimize codes.
Update build scripts.
This commit is contained in:
Tindy X
2020-05-29 19:15:05 +08:00
parent 8385792fec
commit f30b3c7cbf
19 changed files with 650 additions and 249 deletions

12
cmake/FindDuktape.cmake Normal file
View File

@@ -0,0 +1,12 @@
find_path(DUKTAPE_INCLUDE_DIRS duktape.h)
find_library(DUKTAPE_LIBRARY duktape)
find_library(DUKTAPE_MODULE_LIBRARY duktape_module)
set(DUKTAPE_LIBRARIES "${DUKTAPE_LIBRARY} ${DUKTAPE_MODULE_LIBRARY}")
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(DUKTAPE DEFAULT_MSG
DUKTAPE_INCLUDE_DIRS DUKTAPE_LIBRARY DUKTAPE_MODULE_LIBRARY)
mark_as_advanced(DUKTAPE_INCLUDE_DIRS DUKTAPE_LIBRARY)