File tree Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Original file line number Diff line number Diff line change 1
1
FROM redis:alpine as redis
2
2
3
- FROM searxng/searxng:2024.6 .20-f195d98bf
3
+ FROM searxng/searxng:2024.7 .20-657dcb973
4
4
5
5
USER root
6
6
Original file line number Diff line number Diff line change @@ -12,11 +12,10 @@ verify: $(PKG_ID).s9pk
12
12
@echo " Filesize: $( shell du -h $( PKG_ID) .s9pk) is ready"
13
13
14
14
install :
15
- ifeq (,$(wildcard ~/.embassy/config.yaml) )
16
- @echo; echo "You must define \"host: http://server-name.local\" in ~/.embassy/config.yaml config file first"; echo
17
- else
18
- start-cli package install $(PKG_ID).s9pk
19
- endif
15
+ @if [ ! -f ~ /.embassy/config.yaml ]; then echo " You must define \" host: http://server-name.local\" in ~/.embassy/config.yaml config file first." ; exit 1; fi
16
+ @echo " \nInstalling to $$ (grep -v '^#' ~/.embassy/config.yaml | cut -d'/' -f3) ...\n"
17
+ @[ -f $( PKG_ID) .s9pk ] || ( $( MAKE) && echo " \nInstalling to $$ (grep -v '^#' ~/.embassy/config.yaml | cut -d'/' -f3) ...\n" )
18
+ @start-cli package install $(PKG_ID ) .s9pk
20
19
21
20
arm :
22
21
@rm -f docker-images/x86_64.tar
Original file line number Diff line number Diff line change 1
1
id : searxng
2
2
title : " SearXNG"
3
- version : 2024.6 .20
3
+ version : 2024.7 .20
4
4
release-notes : |
5
5
- Updated SearXNG code to the latest version from upstream.
6
6
7
7
> `Highlights`
8
- - Implemented dedicated module for Mojeek.
9
- - Added engines for discourse forums (python, caddy, pi-hole).
10
- - Added reusable function to filter text.
11
- - Fixed issue of showing DDG IP from zero click.
12
- - Implemented FindThatMeme engine.
13
- - Added instant answers from DuckDuckGo.
8
+ - Image updated to use Alpine 3.20 and Python 3.12.
9
+ - Support for Alpine Linux packages searches `!alp`
10
+ - Fixed URL display issues in Firefox simple theme.
11
+ - Flag icon repositioned in language selection.
14
12
license : MIT
15
13
wrapper-repo : " https://github.com/Start9Labs/searxng-startos"
16
14
upstream-repo : " https://github.com/searxng/searxng-docker"
Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration =
24
24
) ,
25
25
} ,
26
26
} ,
27
- "2024.6 .20"
27
+ "2024.7 .20"
28
28
) ;
You can’t perform that action at this time.
0 commit comments