File tree Expand file tree Collapse file tree 5 files changed +17
-9
lines changed
Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 11FROM redis:alpine as redis
22
3- FROM searxng/searxng:2024.10.4-3e747d049
3+ FROM searxng/searxng:2024.11.29-cf034488d
44
55USER root
66
Original file line number Diff line number Diff line change 3131 rm -f scripts/* .js
3232
3333scripts/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
3636docker-images/x86_64.tar : Dockerfile docker_entrypoint.sh
3737ifeq ($(ARCH ) ,aarch64)
Original file line number Diff line number Diff line change 11id : searxng
22title : " SearXNG"
3- version : 2024.10.4
3+ version : 2024.11.29
44release-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.
1214license : MIT
1315wrapper-repo : " https://github.com/Start9Labs/searxng-startos"
1416upstream-repo : " https://github.com/searxng/searxng-docker"
Original file line number Diff line number Diff line change 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 ) ;
Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration =
2424 ) ,
2525 } ,
2626 } ,
27- "2024.10.4 "
27+ "2024.11.29 "
2828 ) ;
You can’t perform that action at this time.
0 commit comments