Skip to content

Commit cfe87a2

Browse files
committed
Update with upstream code
- version bump - better install target in Makefile
1 parent c99931f commit cfe87a2

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM redis:alpine as redis
22

3-
FROM searxng/searxng:2024.6.20-f195d98bf
3+
FROM searxng/searxng:2024.7.20-657dcb973
44

55
USER root
66

Makefile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ verify: $(PKG_ID).s9pk
1212
@echo " Filesize: $(shell du -h $(PKG_ID).s9pk) is ready"
1313

1414
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
2019

2120
arm:
2221
@rm -f docker-images/x86_64.tar

manifest.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
id: searxng
22
title: "SearXNG"
3-
version: 2024.6.20
3+
version: 2024.7.20
44
release-notes: |
55
- Updated SearXNG code to the latest version from upstream.
66
77
> `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.
1412
license: MIT
1513
wrapper-repo: "https://github.com/Start9Labs/searxng-startos"
1614
upstream-repo: "https://github.com/searxng/searxng-docker"

scripts/services/migrations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration =
2424
),
2525
},
2626
},
27-
"2024.6.20"
27+
"2024.7.20"
2828
);

0 commit comments

Comments
 (0)