Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c9f95d54 authored by Nicolas Gelot's avatar Nicolas Gelot
Browse files

Merge remote-tracking branch 'asciimoo/master'

parents 7ea3792d 6060ab85
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -100,3 +100,26 @@ generally made searx better:
- @ZEROF
- Ivan Skytte Jørgensen @isj-privacore
- @miicha
- Étienne Deparis @milouse
- @pelag0s
- Denis Wernert @d-tux
- Robin Hallabro-Kokko @hallabro
- Jonas Zohren @jfowl
- Elias Ojala @theel0ja
- @brunob
- Nick Espig @nachtalb
- Rachmadani Haryono @rachmadaniHaryono
- Frank de Lange @yetangitu
- Émilien Devos @unifox
- Nicolas Gelot @nfk
- @volth
- Mathieu Brunot @madmath03
- @lorddavidiii
- @x250
- Robby O'Connor @robbyoconnor
- Finn @0xhtml
- @tmikaeld
- @hobbestigrou
- Vipul @finn0
- @CaffeinatedTech
- Robin Schneider @ypid
+38 −0
Original line number Diff line number Diff line
0.16.0 2020.01.30
=================

- New engines

  - Splash
  - Apkmirror
  - NPM search
  - Invidious
  - Seedpeer
- New languages

  - Estonian
  - Interlingua
  - Lithuanian
  - Tibetian
  - Occitan
  - Tamil
- Engine fixes (wolframalpha, google scholar, youtube, google images, seznam, google, soundcloud, google cloud, duden, btdigg, google play, bing images, flickr noapi, wikidata, dailymotion, google videos, arxiv, dictzone, fdroid, etymonline, bing, duckduckgo, startpage, voat, 1x, deviantart, digg, gigablast, mojeek, duckduckgo definitions, spotify, libgen, qwant, openstreetmap, wikipedia, ina, microsoft academic, scanr structures)
- Dependency updates
- Speed optimizations
- Initial support for offline engines
- Image format display
- Inline js scripts removed
- Infinite scroll plugin fix
- Simple theme bugfixes
- Docker image updates
- Bang expression fixes
- Result merging fixes
- New environment variable added: SEARX_BIND_ADDRESS


News
~~~~

- @return42 joined the maintainer team
- This is the last release with Python2 support

0.15.0 2019.01.06
=================

+5 −0
Original line number Diff line number Diff line
@@ -785,6 +785,7 @@ locales:
    en : English
    ar : العَرَبِيَّة (Arabic)
    bg : Български (Bulgarian)
    bo : བོད་སྐད་ (Tibetian)
    ca : Català (Catalan)
    cs : Čeština (Czech)
    cy : Cymraeg (Welsh)
@@ -793,6 +794,7 @@ locales:
    el_GR : Ελληνικά (Greek_Greece)
    eo : Esperanto (Esperanto)
    es : Español (Spanish)
    et : Eesti (Estonian)
    eu : Euskara (Basque)
    fa_IR : (fārsī) فارسى (Persian)
    fi : Suomi (Finnish)
@@ -805,8 +807,10 @@ locales:
    ia : Interlingua (Interlingua)
    it : Italiano (Italian)
    ja : 日本語 (Japanese)
    lt : Lietuvių (Lithuanian)
    nl : Nederlands (Dutch)
    nl_BE : Vlaams (Dutch_Belgium)
    oc : Lenga D'òc (Occitan)
    pl : Polski (Polish)
    pt : Português (Portuguese)
    pt_BR : Português (Portuguese_Brazil)
@@ -817,6 +821,7 @@ locales:
    sr : српски (Serbian)
    sv : Svenska (Swedish)
    te : తెలుగు (telugu)
    ta : தமிழ் (Tamil)
    tr : Türkçe (Turkish)
    uk : українська мова (Ukrainian)
    vi : tiếng việt (Vietnamese)
+12 −6
Original line number Diff line number Diff line
@@ -5,12 +5,18 @@ $(document).ready(function() {
            var formData = $('#pagination form:last').serialize();
            if (formData) {
                $('#pagination').html('<div class="loading-spinner"></div>');
                $.post('./', formData, function (data) {
                $.ajax({
                    type: "POST",
                    url: './',
                    data: formData,
                    dataType: 'html',
                    success: function(data) {
                        var body = $(data);
                        $('#pagination').remove();
                        $('#main_results').append('<hr/>');
                        $('#main_results').append(body.find('.result'));
                        $('#main_results').append(body.find('#pagination'));
                    }
                });
            }
        }
−3.65 KiB (10.1 KiB)

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

Loading