Skip to content

Commit 903ea79

Browse files
committed
Latest upstream update v2024.11.29
1 parent fc3fed7 commit 903ea79

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
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.10.4-3e747d049
3+
FROM searxng/searxng:2024.11.29-cf034488d
44

55
USER root
66

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ clean:
3131
rm -f scripts/*.js
3232

3333
scripts/embassy.js: $(TS_FILES)
34-
deno bundle scripts/embassy.ts scripts/embassy.js
34+
deno run --allow-read --allow-write --allow-env --allow-net scripts/bundle.ts
3535

3636
docker-images/x86_64.tar: Dockerfile docker_entrypoint.sh
3737
ifeq ($(ARCH),aarch64)

manifest.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
id: searxng
22
title: "SearXNG"
3-
version: 2024.10.4
3+
version: 2024.11.29
44
release-notes: |
55
- Updated SearXNG code to the latest version from upstream.
6+
- Update bundling process to use Deno emit module
67
7-
> `Highlights`
8-
- **Black Theme**: A new, pure black theme option is now available for a sleek, modern look.
9-
- **More Languages & Regions**: Added support for more languages and regions to improve search accuracy and customization.
10-
- **Outdated Engines Removed**: Removed old, unsupported search engines for a cleaner, more streamlined experience.
11-
- **Regular Updates & Security**: Frequent updates ensure compatibility with the latest software, keeping everything secure and up-to-date.
8+
> **Highlights**
9+
- **Improved search results**: Fixed issues with DuckDuckGo and Google search engines, removing unwanted HTML tags and improving result quality.
10+
- **Enhanced image search**: Fixed stretching issues in image search results and improved thumbnail handling across various image sources.
11+
- **New search sources**: Added Adobe Stock (photos, videos, audio) and OpenLibrary search capabilities.
12+
- **Browser integration**: Added new RSS viewing features for better browser compatibility.
13+
- **General improvements**: Updated various components for better performance and fixed several currency conversion issues.
1214
license: MIT
1315
wrapper-repo: "https://github.com/Start9Labs/searxng-startos"
1416
upstream-repo: "https://github.com/searxng/searxng-docker"

scripts/bundle.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// scripts/bundle.ts
2+
import { bundle } from "https://deno.land/x/emit@0.40.0/mod.ts";
3+
4+
const result = await bundle("scripts/embassy.ts");
5+
6+
await Deno.writeTextFile("scripts/embassy.js", result.code);

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.10.4"
27+
"2024.11.29"
2828
);

0 commit comments

Comments
 (0)