[PR #116] [MERGED] v0.2.1 #791

Closed
opened 2026-02-25 20:36:43 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/benbusby/whoogle-search/pull/116
Author: @benbusby
Created: 8/15/2020
Status: Merged
Merged: 10/4/2020
Merged by: @benbusby

Base: masterHead: develop


📝 Commits (10+)

  • b6fb472 Project refactor (#85)
  • 64af72a Moved custom conf files to their own directory
  • 32e837a Refactored whoogle session mgmt
  • 6ec65f8 Reworked pytest client fixture to support new session mgmt
  • 4324fcd Added better multilingual support, updated filter
  • f86a44b Removed no-cache enforcement, minor styling/formatting improvements
  • f7380ae Improving ad filtering for non-English languages
  • 5f8309d Added footer to results page
  • 4e970a4 Merge remote-tracking branch 'origin/master' into develop
  • bf4bf1f Split interface and results language config (#89)

📊 Changes

23 files changed (+283 additions, -138 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/feature_request.md (+0 -3)
.replit (+2 -0)
📝 README.md (+19 -7)
📝 app/__init__.py (+2 -2)
📝 app/filter.py (+15 -65)
📝 app/models/config.py (+5 -2)
📝 app/request.py (+7 -3)
📝 app/routes.py (+8 -9)
app/static/css/dark-theme.css (+42 -0)
📝 app/static/css/main.css (+11 -5)
📝 app/static/js/autocomplete.js (+27 -5)
📝 app/static/js/controller.js (+23 -17)
📝 app/templates/display.html (+3 -0)
📝 app/templates/index.html (+28 -5)
📝 app/templates/opensearch.xml (+4 -3)
app/utils/filter_utils.py (+79 -0)
📝 app/utils/routing_utils.py (+1 -1)
📝 app/utils/session_utils.py (+0 -5)
📝 setup.py (+1 -1)
📝 test/conftest.py (+1 -1)

...and 3 more files

📄 Description

Includes:

  • Updated dark theme (#121)
    • Dark theme is no longer the previous high contrast "white on black" color scheme
  • Added repl.it deployment (#114)
  • Improved ad filtering for non-English results (f7380ae15d)
  • Split interface and result language config (#89)
  • New config option: privacy respecting result alternatives (#106)
  • Updated search suggestion behavior (#115)
  • Minor project refactoring
  • Various bug fixes, including:
    • Fixed pipx run command (#118)
    • Fixed browser autocomplete (#128)
    • Fixed missing autofocus on search field in Firefox (dfb1e81fa1)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/benbusby/whoogle-search/pull/116 **Author:** [@benbusby](https://github.com/benbusby) **Created:** 8/15/2020 **Status:** ✅ Merged **Merged:** 10/4/2020 **Merged by:** [@benbusby](https://github.com/benbusby) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`b6fb472`](https://github.com/benbusby/whoogle-search/commit/b6fb4723f9589e54ed55be2254ed7e70db519322) Project refactor (#85) - [`64af72a`](https://github.com/benbusby/whoogle-search/commit/64af72abb503023b4ca7e45f65d994d166f3ac3c) Moved custom conf files to their own directory - [`32e837a`](https://github.com/benbusby/whoogle-search/commit/32e837a5e08a6d6d44e4fa0a09e3696c28184619) Refactored whoogle session mgmt - [`6ec65f8`](https://github.com/benbusby/whoogle-search/commit/6ec65f8754c8e4bd40f304102a58ef596b8f8c1a) Reworked pytest client fixture to support new session mgmt - [`4324fcd`](https://github.com/benbusby/whoogle-search/commit/4324fcd8f8ea274b5e913840fd97c04465feb82a) Added better multilingual support, updated filter - [`f86a44b`](https://github.com/benbusby/whoogle-search/commit/f86a44b6372de257622821781bc852780bac0eaf) Removed no-cache enforcement, minor styling/formatting improvements - [`f7380ae`](https://github.com/benbusby/whoogle-search/commit/f7380ae15dbfc8f1d3a71d42c330e7827870f7a3) Improving ad filtering for non-English languages - [`5f8309d`](https://github.com/benbusby/whoogle-search/commit/5f8309d2f0aa484b8c32aff70ffbbe75b18555a9) Added footer to results page - [`4e970a4`](https://github.com/benbusby/whoogle-search/commit/4e970a47961fad0ff151123a7b53a3a7250634d3) Merge remote-tracking branch 'origin/master' into develop - [`bf4bf1f`](https://github.com/benbusby/whoogle-search/commit/bf4bf1ff2cdf318dfb8b7c11dc093dc274893e02) Split interface and results language config (#89) ### 📊 Changes **23 files changed** (+283 additions, -138 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/feature_request.md` (+0 -3) ➕ `.replit` (+2 -0) 📝 `README.md` (+19 -7) 📝 `app/__init__.py` (+2 -2) 📝 `app/filter.py` (+15 -65) 📝 `app/models/config.py` (+5 -2) 📝 `app/request.py` (+7 -3) 📝 `app/routes.py` (+8 -9) ➕ `app/static/css/dark-theme.css` (+42 -0) 📝 `app/static/css/main.css` (+11 -5) 📝 `app/static/js/autocomplete.js` (+27 -5) 📝 `app/static/js/controller.js` (+23 -17) 📝 `app/templates/display.html` (+3 -0) 📝 `app/templates/index.html` (+28 -5) 📝 `app/templates/opensearch.xml` (+4 -3) ➕ `app/utils/filter_utils.py` (+79 -0) 📝 `app/utils/routing_utils.py` (+1 -1) 📝 `app/utils/session_utils.py` (+0 -5) 📝 `setup.py` (+1 -1) 📝 `test/conftest.py` (+1 -1) _...and 3 more files_ </details> ### 📄 Description Includes: - Updated dark theme (#121) - Dark theme is no longer the previous high contrast "white on black" color scheme - Added repl.it deployment (#114) - Improved ad filtering for non-English results (f7380ae15dbfc8f1d3a71d42c330e7827870f7a3) - Split interface and result language config (#89) - New config option: privacy respecting result alternatives (#106) - Updated search suggestion behavior (#115) - Minor project refactoring - Various bug fixes, including: - Fixed pipx run command (#118) - Fixed browser autocomplete (#128) - Fixed missing autofocus on search field in Firefox (dfb1e81fa12e2cc9ccc75a193fd4afdcb79d01e9) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 20:36:43 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/whoogle-search#791
No description provided.