Skip to content

Commit

Permalink
Latest upstream update v2024.11.29
Browse files Browse the repository at this point in the history
  • Loading branch information
k0gen committed Nov 29, 2024
1 parent fc3fed7 commit 903ea79
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 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.10.4-3e747d049
FROM searxng/searxng:2024.11.29-cf034488d

USER root

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ clean:
rm -f scripts/*.js

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

docker-images/x86_64.tar: Dockerfile docker_entrypoint.sh
ifeq ($(ARCH),aarch64)
Expand Down
14 changes: 8 additions & 6 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
id: searxng
title: "SearXNG"
version: 2024.10.4
version: 2024.11.29
release-notes: |
- Updated SearXNG code to the latest version from upstream.
- Update bundling process to use Deno emit module
> `Highlights`
- **Black Theme**: A new, pure black theme option is now available for a sleek, modern look.
- **More Languages & Regions**: Added support for more languages and regions to improve search accuracy and customization.
- **Outdated Engines Removed**: Removed old, unsupported search engines for a cleaner, more streamlined experience.
- **Regular Updates & Security**: Frequent updates ensure compatibility with the latest software, keeping everything secure and up-to-date.
> **Highlights**
- **Improved search results**: Fixed issues with DuckDuckGo and Google search engines, removing unwanted HTML tags and improving result quality.
- **Enhanced image search**: Fixed stretching issues in image search results and improved thumbnail handling across various image sources.
- **New search sources**: Added Adobe Stock (photos, videos, audio) and OpenLibrary search capabilities.
- **Browser integration**: Added new RSS viewing features for better browser compatibility.
- **General improvements**: Updated various components for better performance and fixed several currency conversion issues.
license: MIT
wrapper-repo: "https://github.com/Start9Labs/searxng-startos"
upstream-repo: "https://github.com/searxng/searxng-docker"
Expand Down
6 changes: 6 additions & 0 deletions scripts/bundle.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// scripts/bundle.ts
import { bundle } from "https://deno.land/x/[email protected]/mod.ts";

const result = await bundle("scripts/embassy.ts");

await Deno.writeTextFile("scripts/embassy.js", result.code);
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.10.4"
"2024.11.29"
);

0 comments on commit 903ea79

Please sign in to comment.