From 24d1cd1beb107babdffe887455ae092814cb05a8 Mon Sep 17 00:00:00 2001 From: Frank Tornack Date: Sun, 29 Jan 2023 15:09:45 +0100 Subject: [PATCH 1/5] quick and dirty fix for Video Link https://github.com/yacy/yacy_search_server/issues/549 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d32a782cc..c0e61d5b3 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ The (GPLv2+) source code used to build YaCy is distributed with the package (in - [French wiki](https://wiki.yacy.net/index.php/Fr:Start) - [Spanish wiki](https://wiki.yacy.net/index.php/Es:Start) - [Russian wiki](https://wiki.yacy.net/index.php/Ru:Start) -- [Video tutorials in English](https://yacy.net/en/Tutorials.html) and [video tutorials in German](https://yacy.net/de/Lehrfilme.html) +- [Video tutorials](https://www.youtube.com/@YaCyTutorials/videos) All these have (YaCy) search functionality combining all these locations into one search result. From b6d06206d2433dcd99c57960e46734e59d16fb51 Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Fri, 3 Feb 2023 15:16:15 -0600 Subject: [PATCH 2/5] Add install link --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c0e61d5b3..c414fd106 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # YaCy [![Gitter](https://badges.gitter.im/yacy/yacy_search_server.svg)](https://gitter.im/yacy/yacy_search_server?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/yacy/yacy_search_server.svg?branch=master)](https://travis-ci.com/yacy/yacy_search_server) +[![Install Link](https://img.shields.io/badge/install-stable-blue.svg)](https://yacy.net/download_installation/) [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) From 3230df6e2ba746b837933567c66032ac3a055885 Mon Sep 17 00:00:00 2001 From: okybaca Date: Sun, 5 Feb 2023 10:37:53 +0100 Subject: [PATCH 3/5] link to english wiki --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c414fd106..57bdd8a85 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ The (GPLv2+) source code used to build YaCy is distributed with the package (in - [Homepage](https://yacy.net) - [International Forum](https://community.searchlab.eu) +- [English wiki](https://wiki.yacy.net/index.php/En:Start) - [German wiki](https://wiki.yacy.net/index.php/De:Start) - [Esperanto wiki](https://wiki.yacy.net/index.php/Eo:Start) - [French wiki](https://wiki.yacy.net/index.php/Fr:Start) From a157d01bb5741e9ff6b88965940038b32d4c8b2c Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Fri, 24 Feb 2023 17:50:29 +0100 Subject: [PATCH 4/5] increased network image size limit for linuxtage poster --- source/net/yacy/htroot/NetworkPicture.java | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/source/net/yacy/htroot/NetworkPicture.java b/source/net/yacy/htroot/NetworkPicture.java index 52b177f43..2f45d1e40 100644 --- a/source/net/yacy/htroot/NetworkPicture.java +++ b/source/net/yacy/htroot/NetworkPicture.java @@ -99,22 +99,8 @@ public class NetworkPicture { } //too small values lead to an error, too big to huge CPU/memory consumption, resulting in possible DOS. - if ( width < 320 ) { - width = 320; - } - if ( width > 1920 ) { - width = 1920; - } - if ( height < 240 ) { - height = 240; - } - if ( height > 1280 ) { - height = 1280; - } - if ( !authorized ) { - width = Math.min(1280, width); - height = Math.min(1280, height); - } + width = Math.min(2048, Math.max(320, width)); + height = Math.min(1280, Math.max(240, height)); if ( passiveLimit > 1000000 ) { passiveLimit = 1000000; } From d8f26cb6a7fc41db990adb2dcacc9a540092c3bf Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Fri, 24 Feb 2023 19:11:35 +0100 Subject: [PATCH 5/5] larger link structure image --- htroot/Crawler_p.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/Crawler_p.html b/htroot/Crawler_p.html index 3d0b8fcda..79a0319c0 100644 --- a/htroot/Crawler_p.html +++ b/htroot/Crawler_p.html @@ -293,7 +293,7 @@ window.setInterval("setTableSize()", 1000);
-:: +::