| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-03-23 | [fix] load new page with infinite scroll if there is no scrollbar - fixes #759 | Adam Tauber | |
| 2020-03-23 | [enh] add clear search button to oscar theme - fixes #454 | Adam Tauber | |
| 2020-03-21 | Merge branch 'master' of https://github.com/asciimoo/searx into filtron | Markus Heiser | |
| 2020-03-16 | [fix] remove debug print | Adam Tauber | |
| 2020-03-16 | [fix] handle weights in accept language parsing - fixes w3ms en;q=1.0 | Adam Tauber | |
| 2020-03-15 | Merge branch 'master' of https://github.com/asciimoo/searx into filtron | Markus Heiser | |
| 2020-03-13 | [fix] convert query to string to produce valid filename for csv output | Adam Tauber | |
| 2020-03-13 | [fix] add answers, suggestions, corrections to csv output | Adam Tauber | |
| fixes #1888 | |||
| 2020-03-13 | [fix] add answers, suggestions, corrections to rss output | Adam Tauber | |
| fixes #1888 | |||
| 2020-03-09 | [Fix] Startpage ValueError on Spanish date format | Spühler Stefan | |
| datetime.parser.parse() does not know the Spanish date format which leads to a ValueError. Fixes #1870 Traceback (most recent call last): File "/usr/local/searx/searx/search.py", line 160, in search_one_http_request_safe search_results = search_one_http_request(engine, query, request_params) File "/usr/local/searx/searx/search.py", line 97, in search_one_http_request return engine.response(response) File "/usr/local/searx/searx/engines/startpage.py", line 102, in response published_date = parser.parse(date_string, dayfirst=True) File "/usr/local/searx/searx-ve/lib/python3.6/site-packages/dateutil/parser/_parser.py", line 1358, in parse return DEFAULTPARSER.parse(timestr, **kwargs) File "/usr/local/searx/searx-ve/lib/python3.6/site-packages/dateutil/parser/_parser.py", line 649, in parse raise ValueError("Unknown string format:", timestr) ValueError: ('Unknown string format:', '24 Ene 2013') | |||
| 2020-03-04 | docs: describe uwsgi setup of all suported distributions | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-01 | bugfix(!biv) : bing-video do not like "older" User-Agents | Markus Heiser | |
| When selecting other languages than 'en', bing-video did not handle the language correct and gave very bad results. Since User-Agent is normaly rotated in searx, the behavior of a !biv search was unpredictable and paging was broken. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-01 | bing_news: parital rollback of c89c05bc | Markus Heiser | |
| The bing_news bug (discussed in #1838) was caused by wrong language tags, which was fixed e0c99d9d / no need to change the bing_news search string. closes: https://github.com/asciimoo/searx/issues/1838 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-01 | update languages: engines_languages.json languages.py | Markus Heiser | |
| build by Makefile target: make project Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-01 | bugfix: fetch_supported_languages bing, -news, -videos, -images | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-01 | searx/data/engines_languages.json: sort json file (no content change) | Markus Heiser | |
| To get meaningfull diffs, the json file has to be sorted. Before applying any further content patch, the json file needs a inital sort (without changing any content). Sorted by:: import sys, json with open('engines_languages.json') as f: j = json.load(f) with open('engines_languages.json', 'w') as f: json.dump(j, f, indent=2, sort_keys=True) Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-25 | bugfix: google-news and bing-news has changed the language parameter | Markus Heiser | |
| closes: https://github.com/asciimoo/searx/issues/1838 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-24 | Merge branch 'master' into fix-prefs | Markus Heiser | |
| 2020-02-24 | searx/testing.py: fixed pep8 error | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-23 | monkey patch babel get_translations to support Occitan | Marc Abonce Seguin | |
| 2020-02-23 | searx/testing.py: bugfix process model (do not use Flask's debug mode) | Markus Heiser | |
| Don't enable Flask's debug mode, the debugger from Flask will cause a wired process model, where the server never dies. Further read: - debug mode: https://flask.palletsprojects.com/quickstart/#debug-mode - Flask.run(..): https://flask.palletsprojects.com/api/#flask.Flask.run closes: https://github.com/asciimoo/searx/issues/1862 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-23 | searx/testing.py: pylint & SPDX tag (no functional change) | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-23 | preferences.py: implement defaults if unset | Markus Heiser | |
| Implemnts defaults for: - search.default_lang, search.autocomplete, search.safe_search, - ui.default_theme, ui.default_locale - server.image_proxy This fixes also: https://github.com/asciimoo/searx/pull/1860#issuecomment-590082955 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-23 | preferences.py: pylint, SPDX tag & docstrings (no functional change) | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-23 | Add missing autocomplete backends to settings.yml comment | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-23 | Merge branch 'master' into autocomplete_swisscows | Markus Heiser | |
| 2020-02-23 | Merge branch 'master' into engine-etools | Markus Heiser | |
| 2020-02-23 | fix default locale and language issues | Marc Abonce Seguin | |
| 2020-02-18 | [fix] allow settin custom locale from settins.yml | Adam Tauber | |
| 2020-02-14 | Add Swisscows autocomplete option | piplongrun | |
| 2020-02-14 | [mod] move public instance list to https://searx.space | Dalf | |
| 2020-02-12 | Add etools engine to the list | piplongrun | |
| 2020-02-12 | Add eTools engine | piplongrun | |
| 2020-02-08 | Merge commit 'refs/pull/1621/head' of https://github.com/asciimoo/searx | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-08 | [enh] introduce private engines | Noémi Ványi | |
| This PR adds a new setting to engines named `tokens`. It expects a list of tokens which lets searx validate if the request should be accepted or not. | |||
| 2020-02-06 | Fix deprecated werkzeug import | Nicolas Gelot | |
| Close: #1830 Signed-off-by: Nicolas Gelot <nicolas.gelot@e.email> | |||
| 2020-01-30 | [enh] version v0.16.0 | Adam Tauber | |
| 2020-01-30 | [enh] update translations | Adam Tauber | |
| 2020-01-28 | [mod] add py2 deprecation warning to webapp | Adam Tauber | |
| 2020-01-28 | Merge branch 'master' into fix-infinite-scroll | Markus Heiser | |
| 2020-01-07 | Fix double-encode error (fixes #1799) | frankdelange | |
| 2020-01-06 | Merge branch 'master' into bug/oscar-theme | Markus Heiser | |
| 2020-01-02 | [fix] pep8 | Adam Tauber | |
| 2020-01-02 | [fix] add py3 compatibility | Adam Tauber | |
| 2020-01-02 | [fix] handle empty response | Adam Tauber | |
| 2020-01-02 | [fix] handle missing thumbnail | Adam Tauber | |
| 2020-01-02 | [fix] skip invalid encoded attributes | Adam Tauber | |
| 2020-01-02 | [fix] handle missing result size | Adam Tauber | |
| 2020-01-02 | [fix] tmp suspend insecure engines | Adam Tauber | |
| 2019-12-29 | Merge branch 'master' into fix-engine-spotify | Markus Heiser | |