mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-04-28 03:40:39 -04:00
- Revised README to reflect changes in Google search behavior and Whoogle's response strategies. - Implemented a User Agent pool for improved request handling, including fallback mechanisms. - Added configuration options for displaying the User Agent in search results. - Introduced a command-line tool for generating custom User Agent strings. - Enhanced request headers to include additional parameters for better compatibility with Google services.
13 lines
544 B
HTML
13 lines
544 B
HTML
<footer>
|
|
<p class="footer">
|
|
Whoogle Search v{{ version_number }} ||
|
|
<a class="link" href="https://github.com/benbusby/whoogle-search">{{ translation['github-link'] }}</a>
|
|
{% if has_update %}
|
|
|| <span class="update_available">Update Available 🟢</span>
|
|
{% endif %}
|
|
{% if config.show_user_agent and used_user_agent %}
|
|
<br><span class="user-agent-display" style="font-size: 0.85em; color: #666;">User Agent: {{ used_user_agent }}</span>
|
|
{% endif %}
|
|
</p>
|
|
</footer>
|