0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 14:32:52 -04:00

Merge pull request #1 from neon-mmd/rolling

Renaming and Refactoring
This commit is contained in:
Milim 2023-07-03 19:40:39 +02:00 committed by GitHub
commit 7339fa58b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 419 additions and 268 deletions

View File

@ -8,10 +8,10 @@ tasks:
- command: redis-server --port 8080 & cargo watch -q -w "." -x "run" - command: redis-server --port 8080 & cargo watch -q -w "." -x "run"
# Ports to expose on workspace startup # Ports to expose on workspace startup
ports: ports:
- port: 8080
- onOpen: open-preview
- name: Website - name: Website
- description: Website Preview description: Website Preview
port: 8080
onOpen: open-browser
# vscode IDE setup # vscode IDE setup
vscode: vscode:
extensions: extensions:
@ -36,10 +36,10 @@ vscode:
- eamodio.gitlens - eamodio.gitlens
github: github:
prebuilds: prebuilds:
- master: true master: true
- branches: true branches: true
- pullRequests: true pullRequests: true
- pullRequestsFromForks: true pullRequestsFromForks: true
- addCheck: true addCheck: true
- addComment: false addComment: false
- addBadge: true addBadge: true

659
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package] [package]
name = "websurfx" name = "websurfx"
version = "0.13.5" version = "0.13.7"
edition = "2021" edition = "2021"
description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind." description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
repository = "https://github.com/neon-mmd/websurfx" repository = "https://github.com/neon-mmd/websurfx"

View File

@ -4,12 +4,12 @@
<div class="results_aggregated"> <div class="results_aggregated">
{{#each results}} {{#each results}}
<div class="result"> <div class="result">
<h1><a href="{{this.visitingUrl}}">{{{this.title}}}</a></h1> <h1><a href="/{{{this.visitingUrl}}}">{{{this.title}}}</a></h1>
<small>{{this.url}}</small> <small>{{{this.url}}}</small>
<p>{{{this.description}}}</p> <p>{{{this.description}}}</p>
<div class="upstream_engines"> <div class="upstream_engines">
{{#each engine}} {{#each engine}}
<span>{{this}}</span> <span>{{{this}}}</span>
{{/each}} {{/each}}
</div> </div>
</div> </div>