| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-03-25 | [fix] brands: add variables from build env to setup.py | Markus Heiser | |
| We have some variables in the build environment which are also needed in the setup.py process. Theses variables are relavant if one creates a fork with its own branding. We treat these variables under the term 'brands'. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-25 | [fix] brands: add variables from build env to sphinx-doc | Markus Heiser | |
| We have some variables in the build environment which are also needed in the sphinx-process. Theses variables are relavant if one creates a fork with its own branding. We treat these variables under the term 'brands'. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-25 | [fix] brands: add variables from build env to jinja templating | Markus Heiser | |
| We have some variables in the build environment which are also needed in the templating process. Theses variables are relavant if one creates a fork with its own branding. We treat these variables under the term 'brands'. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-03-23 | [enh] submit search on suggestion select - closes #807 | Adam Tauber | |
| 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-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-13 | [fix] update csv unit test | Adam Tauber | |
| 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-05 | Merge pull request #1884 from kvch/add-blogpost-about-private-engines | Adam Tauber | |
| Add new post to blog about private engines | |||
| 2020-03-05 | Add new post to blog about private engines | Noémi Ványi | |
| 2020-03-05 | [fix] update dead link | Adam Tauber | |
| 2020-03-04 | Merge pull request #1866 from return42/fix-news | Markus Heiser | |
| bugfix: google-news and bing-news has changed the language parameter | |||
| 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-29 | requirements-dev.txt: add missing pylint for liniting tests | Markus Heiser | |
| 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-25 | Merge pull request #1861 from return42/fix-prefs | Markus Heiser | |
| fix serious bugs of the test procedure | |||
| 2020-02-24 | Merge branch 'master' into fix-prefs | Markus Heiser | |
| 2020-02-24 | make test: bugfix, pyenvinstall is a prerequisite for the pylint test | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-24 | Merge pull request #1863 from MarcAbonce/monkey-patch-occitan-locale | Markus Heiser | |
| Monkey patch babel get_translations to support Occitan | |||
| 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 | Merge pull request #1846 from piplongrun/autocomplete_swisscows | Markus Heiser | |
| Add Swisscows autocomplete option | |||
| 2020-02-23 | Merge branch 'master' into autocomplete_swisscows | Markus Heiser | |
| 2020-02-23 | Merge pull request #1773 from Monogramm/docker/opencontainers | Markus Heiser | |
| 📝 Add Opencontainers labels in docker image | |||
| 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 docker/opencontainers | Markus Heiser | |
| 2020-02-23 | Merge pull request #1842 from piplongrun/engine-etools | Markus Heiser | |
| Add new eTools.ch engine | |||
| 2020-02-23 | Merge branch 'master' into engine-etools | Markus Heiser | |
| 2020-02-23 | Merge pull request #1860 from MarcAbonce/fix-default-locale | Markus Heiser | |
| Fix default locale and language issues | |||
| 2020-02-23 | fix default locale and language issues | Marc Abonce Seguin | |
| 2020-02-20 | Merge pull request #1855 from return42/fix-dead-links | Markus Heiser | |
| docs: fix dead Searx-instance links to https://searx.space | |||
| 2020-02-20 | docs: fix dead Searx-instance links to https://searx.space | Markus Heiser | |
| Related to #1853 / BTW update year of copyright note Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-02-18 | [fix] allow settin custom locale from settins.yml | Adam Tauber | |
| 2020-02-15 | Merge pull request #1843 from dalf/searx_space | Markus Heiser | |
| [mod] move public instance list to https://searx.space | |||
| 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 | |