Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3807396c authored by Nicolas Gelot's avatar Nicolas Gelot
Browse files

Merge tag 'v0.18.0'

version 0.18.0

Fix: #57
parents 1b2436d2 002d53ab
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -26,6 +26,7 @@ fi
# ---------
# ---------


# SEARX_INTERNAL_URL="127.0.0.1:8888"
# SEARX_INTERNAL_URL="127.0.0.1:8888"
# SEARX_SETTINGS_TEMPLATE="${REPO_ROOT}/utils/templates/etc/searx/use_default_settings.yml"


# Only change, if you maintain a searx brand in your searx fork.
# Only change, if you maintain a searx brand in your searx fork.
# GIT_BRANCH="${GIT_BRANCH:-master}"
# GIT_BRANCH="${GIT_BRANCH:-master}"
+1 −10
Original line number Original line Diff line number Diff line
[run]
[run]
branch = True
branch = True
source =
source = searx
  searx/engines
  searx/__init__.py
  searx/autocomplete.py
  searx/https_rewrite.py
  searx/languages.py
  searx/search.py
  searx/testing.py
  searx/utils.py
  searx/webapp.py


[report]
[report]
show_missing = True
show_missing = True
+37 −0
Original line number Original line Diff line number Diff line
---
name: Bug report
about: Report a bug in Searx
title: ''
labels: bug
assignees: ''

---
**Version of Searx, commit number if you are using on master branch and stipulate if you forked Searx**
<!-- If you are running on master branch using git execute this command
in order to fetch the latest commit ID:
```
git log -1
``` 
If you are using searx-docker then look at the bottom of the Searx page
and check for the version after "Powered by searx"

Please also stipulate if you are using a forked version of Searx and
include a link to the fork source code.
-->
**How did you install Searx?**
<!-- Did you install Searx using the official wiki or using searx-docker
or manually by executing the searx/webapp.py file? -->
**What happened?**
<!-- A clear and concise description of what the bug is. -->

**How To Reproduce**
<!-- How can we reproduce this issue? (as minimally and as precisely as possible) -->

**Expected behavior**
<!-- A clear and concise description of what you expected to happen. -->

**Screenshots & Logs**
<!-- If applicable, add screenshots, logs to help explain your problem. -->

**Additional context**
<!-- Add any other context about the problem here. -->
 No newline at end of file
+14 −0
Original line number Original line Diff line number Diff line
blank_issues_enabled: true
contact_links:
  - name: Installation issue using the official wiki
    url: https://github.com/searx/searx/discussions/new?category_id=32001257
    about: Ask for help if you are having some issue with installing Searx using the official wiki.
  - name: Installation issue using searx-docker
    url: https://github.com/searx/searx/discussions/new?category_id=32001259
    about: Ask for help if you are having some issue with installing Searx using searx-docker.
  - name: Installation issue without using the official wiki nor searx-docker 
    url: https://github.com/searx/searx/discussions/new?category_id=32001260
    about: Ask for help if you are having some issue with installing Searx manually without using the wiki nor searx-docker.
  - name: Report a bug on a public Searx instance
    url: https://github.com/searx/searx/discussions/new?category_id=32001412
    about: Report a bug that you discovered on a public Searx instance.
 No newline at end of file
+29 −0
Original line number Original line Diff line number Diff line
---
name: Engine request
about: Request a new engine in Searx
title: ''
labels: enhancement, engine request
assignees: ''

---
**Working URL to the engine**
<!-- Please check if the engine is responding correctly before submitting it. -->

**Why do you want to add this engine?**
<!-- What's special about this engine? Is it open source or libre? -->

**Features of this engine**
<!-- Features of this engine: Doesn't track its users, fast, easy to integrate, ... -->

**How can Searx fetch the information from this engine?**
<!-- List API URL, example code (using the correct markdown) and more
that could be useful for the developers in order to implement this engine.
If you don't know what to write, let this part blank.>

**Applicable category of this engine**
<!-- Where should this new engine fit in Searx? Current categories in Searx:
general, files, images, it, map, music, news, science, social media and videos.
You can add multiple categories at the same time. -->

**Additional context**
<!-- Add any other context about this engine here. -->
 No newline at end of file
Loading