Bump version for 0.17.0

This commit is contained in:
Johannes Zellner 2020-07-10 11:02:00 +02:00
parent c695e01e46
commit 61c976d7e1
4 changed files with 21 additions and 17 deletions

View file

@ -20,3 +20,7 @@
[1.2.0]
* Use latest base image 2.0.0
[1.3.0]
* Update Searx to 0.17.0
* Add new search engines
* [Full changelog](https://github.com/asciimoo/searx/releases/tag/v0.17.0)

View file

@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Privacy-respecting metasearch engine",
"version": "1.2.0",
"version": "1.3.0",
"healthCheckPath": "/",
"httpPort": 8888,
"addons": {
@ -16,13 +16,14 @@
"contactEmail": "support@cloudron.io",
"icon": "file://logo.png",
"tags": [
"search", "metasearch"
"search", "metasearch", "bing", "google"
],
"mediaLinks": [
"https://cloudron-app-screenshots.s3.amazonaws.com/io.github.ascimoo.searx/9456666ef5a9d278b2282a888a53aa7f676c305c/1.png",
"https://cloudron-app-screenshots.s3.amazonaws.com/io.github.ascimoo.searx/9456666ef5a9d278b2282a888a53aa7f676c305c/2.png",
"https://cloudron-app-screenshots.s3.amazonaws.com/io.github.ascimoo.searx/9456666ef5a9d278b2282a888a53aa7f676c305c/3.png"
],
"minBoxVersion": "4.1.5",
"documentationUrl": "https://cloudron.io/documentation/apps/searx/"
"minBoxVersion": "5.3.0",
"documentationUrl": "https://cloudron.io/documentation/apps/searx/",
"forumUrl": "https://forum.cloudron.io/category/47/searx"
}

View file

@ -1,10 +1,10 @@
This app packages searx version <upstream>0.16.0</upstream>.
This app packages searx version <upstream>0.17.0</upstream>.
## About
### About
Searx is a [metasearch engine](https://en.wikipedia.org/wiki/Metasearch_engine), aggregating the results of other [search engines]({{ url_for('preferences') }}) while not storing information about its users.
## Why use searx?
### Why use searx?
* searx may not offer you as personalised results as Google, but it doesn't generate a profile about you
* searx doesn't care about what you search for, never shares anything with a third party, and it can't be used to compromise you
@ -12,19 +12,19 @@ Searx is a [metasearch engine](https://en.wikipedia.org/wiki/Metasearch_engine),
If you do care about privacy, want to be a conscious user, or otherwise believe in digital freedom, make searx your default search engine or run it on your own server
## Technical details - How does it work?
### Technical details - How does it work?
Searx is a [metasearch engine](https://en.wikipedia.org/wiki/Metasearch_engine), inspired by the [seeks project](https://beniz.github.io/seeks/).
It provides basic privacy by mixing your queries with searches on other platforms without storing search data. Queries are made using a POST request on every browser (except chrome*). Therefore they show up in neither our logs, nor your url history. In case of Chrome* users there is an exception, searx uses the search bar to perform GET requests.
Searx is a [metasearch engine](https://en.wikipedia.org/wiki/Metasearch_engine), inspired by the [seeks project](https://beniz.github.io/seeks/).
It provides basic privacy by mixing your queries with searches on other platforms without storing search data. Queries are made using a POST request on every browser (except chrome*). Therefore they show up in neither our logs, nor your url history. In case of Chrome* users there is an exception, searx uses the search bar to perform GET requests.
Searx can be added to your browser's search bar; moreover, it can be set as the default search engine.
## How can I make it my own?
### How can I make it my own?
Searx appreciates your concern regarding logs, so take the [code](https://github.com/asciimoo/searx) and run it yourself!
Add your Searx to this [list](https://github.com/asciimoo/searx/wiki/Searx-instances) to help other people reclaim their privacy and make the Internet freer!
Searx appreciates your concern regarding logs, so take the [code](https://github.com/asciimoo/searx) and run it yourself!
Add your Searx to this [list](https://github.com/asciimoo/searx/wiki/Searx-instances) to help other people reclaim their privacy and make the Internet freer!
The more decentralized the Internet is, the more freedom we have!
## More about searx
### More about searx
* [github](https://github.com/asciimoo/searx)
* [ohloh](https://www.ohloh.net/p/searx/)

View file

@ -1,7 +1,6 @@
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
# this is one commit from 0.16.0 (https://github.com/asciimoo/searx/issues/1830)
ARG VERSION=f9c7a678d273c55a0e8a1a7a2dbfd696b2046e60
ARG VERSION=0.17.0
RUN mkdir -p /app/code /app/pkg
WORKDIR /app/code
@ -9,7 +8,7 @@ RUN apt update && \
apt install -y python3 build-essential libxslt-dev python3-dev python3-virtualenv python3-setuptools zlib1g-dev libffi-dev libssl-dev python3-pip && \
rm -rf /var/cache/apt /var/lib/apt/lists
RUN curl -L https://github.com/asciimoo/searx/archive/${VERSION}.tar.gz | tar -xz --strip-components 1 -f -
RUN curl -L https://github.com/asciimoo/searx/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f -
RUN pip3 install --no-cache -r /app/code/requirements.txt
RUN mv /app/code/searx/settings.yml /app/code/searx/settings.yml.orig && \