Skip to content

Commit

Permalink
Update with upstream code
Browse files Browse the repository at this point in the history
- version bump
- better install target in Makefile
  • Loading branch information
k0gen committed Jul 22, 2024
1 parent c99931f commit cfe87a2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM redis:alpine as redis

FROM searxng/searxng:2024.6.20-f195d98bf
FROM searxng/searxng:2024.7.20-657dcb973

USER root

Expand Down
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ verify: $(PKG_ID).s9pk
@echo " Filesize: $(shell du -h $(PKG_ID).s9pk) is ready"

install:
ifeq (,$(wildcard ~/.embassy/config.yaml))
@echo; echo "You must define \"host: http://server-name.local\" in ~/.embassy/config.yaml config file first"; echo
else
start-cli package install $(PKG_ID).s9pk
endif
@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
@echo "\nInstalling to $$(grep -v '^#' ~/.embassy/config.yaml | cut -d'/' -f3) ...\n"
@[ -f $(PKG_ID).s9pk ] || ( $(MAKE) && echo "\nInstalling to $$(grep -v '^#' ~/.embassy/config.yaml | cut -d'/' -f3) ...\n" )
@start-cli package install $(PKG_ID).s9pk

arm:
@rm -f docker-images/x86_64.tar
Expand Down
12 changes: 5 additions & 7 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
id: searxng
title: "SearXNG"
version: 2024.6.20
version: 2024.7.20
release-notes: |
- Updated SearXNG code to the latest version from upstream.
> `Highlights`
- Implemented dedicated module for Mojeek.
- Added engines for discourse forums (python, caddy, pi-hole).
- Added reusable function to filter text.
- Fixed issue of showing DDG IP from zero click.
- Implemented FindThatMeme engine.
- Added instant answers from DuckDuckGo.
- Image updated to use Alpine 3.20 and Python 3.12.
- Support for Alpine Linux packages searches `!alp`
- Fixed URL display issues in Firefox simple theme.
- Flag icon repositioned in language selection.
license: MIT
wrapper-repo: "https://github.com/Start9Labs/searxng-startos"
upstream-repo: "https://github.com/searxng/searxng-docker"
Expand Down
2 changes: 1 addition & 1 deletion scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration =
),
},
},
"2024.6.20"
"2024.7.20"
);

0 comments on commit cfe87a2

Please sign in to comment.