Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ff48a41af0 
							
						 
					 
					
						
						
							
							Merge pull request  #573  from return42/img-lazy  
						
						... 
						
						
						
						[fix] lazy loading of <img> tags 
						
						
					 
					
						2021-12-15 13:28:40 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							715f578cda 
							
						 
					 
					
						
						
							
							[build] /static  
						
						
						
						
					 
					
						2021-12-15 10:45:25 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							c416464949 
							
						 
					 
					
						
						
							
							[fix] lazy loading of <img> tags  
						
						... 
						
						
						
						Images should include dimension attributes.  Without `width` and `height`
specified, image dimensions are 0×0 pixels at first.  ...  In this case the
browser determines that all of them are visible to the user and decides to load
everything [1].
In CSS the `width` is set to a value and the `height` is unsed to scale the image
proportional in both dimensions.
[1] https://web.dev/browser-level-image-lazy-loading/#images-should-include-dimension-attributes 
[2] https://caniuse.com/loading-lazy-attr 
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-15 10:39:55 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							709482088e 
							
						 
					 
					
						
						
							
							[fix] move engines gpodder and AZlyrics into category music  
						
						... 
						
						
						
						Closes: https://github.com/searxng/searxng/issues/600 
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-15 09:43:56 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							da1f970eb5 
							
						 
					 
					
						
						
							
							Merge pull request  #601  from searxng/add-matrix-contact  
						
						... 
						
						
						
						README.rst: add contact information 
						
						
					 
					
						2021-12-14 22:21:20 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
						
						
							
						
						
							4dc7d955be 
							
						 
					 
					
						
						
							
							README.rst: add contact information  
						
						
						
						
					 
					
						2021-12-14 22:20:46 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4f22615259 
							
						 
					 
					
						
						
							
							Merge pull request  #538  from return42/eslint  
						
						... 
						
						
						
						SearXNG JavaScript Style Guide 
						
						
					 
					
						2021-12-14 08:07:22 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							f287787c44 
							
						 
					 
					
						
						
							
							[simple theme] activate - SearXNG JavaScript Style Guide  
						
						... 
						
						
						
						Add the 'SearXNG JavaScript Style Guide' as one quality gate in the build chain
of the simple theme::
    make themes.simple
    make themes.simple.test
In the github CI the `themes.all` target enforce a `themes.simple`.
BTW: Remove 'jshint' left overs from 0ee316f3d
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-14 07:50:53 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							34f5e9c7a3 
							
						 
					 
					
						
						
							
							[fix] eslint --fix  
						
						... 
						
						
						
						automatically fix some of the problems reported by eslint rules::
    $ ./manage nvm.bash
    nvm-env$ npm --prefix searx/static/themes/simple run eslint-fix
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-14 07:31:58 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							32cf24a272 
							
						 
					 
					
						
						
							
							[mod] eslint: add gruntfile.js to the files to lint  
						
						... 
						
						
						
						Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-14 07:26:41 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							06730588a6 
							
						 
					 
					
						
						
							
							[mod] SearXNG JavaScript Style Guide (eslint:recommended)  
						
						... 
						
						
						
						The SearXNG JavaScript Style Guide is a set of eslint rules [1] based on the
eslint:recommended [2] rules.
    "extends": "eslint:recommended"
The additional rules adopted from the JavaScript Standard Style [3][4].
[1] https://eslint.org/docs/rules/ 
[2] https://github.com/kunalgolani/eslint-config/tree/master/packages/recommended 
[3] https://standardjs.com/rules.html#javascript-standard-style 
[4] https://github.com/standard/eslint-config-standard/blob/master/.eslintrc.json 
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-14 06:50:26 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							07e9d952cf 
							
						 
					 
					
						
						
							
							[emacs] .dir-locals.el: in json-mode use indentation of 4  
						
						... 
						
						
						
						In JS + JSON we use indentation of 4.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-14 06:50:26 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5c7167cd5a 
							
						 
					 
					
						
						
							
							Merge pull request  #599  from searxng/dependabot/pip/lxml-4.6.5  
						
						... 
						
						
						
						Bump lxml from 4.6.4 to 4.6.5 
						
						
					 
					
						2021-12-13 21:48:19 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2d7bc7d72e 
							
						 
					 
					
						
						
							
							Bump lxml from 4.6.4 to 4.6.5  
						
						... 
						
						
						
						Bumps [lxml](https://github.com/lxml/lxml ) from 4.6.4 to 4.6.5.
- [Release notes](https://github.com/lxml/lxml/releases )
- [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt )
- [Commits](https://github.com/lxml/lxml/compare/lxml-4.6.4...lxml-4.6.5 )
---
updated-dependencies:
- dependency-name: lxml
  dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2021-12-13 20:42:55 +00:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9fc27088ef 
							
						 
					 
					
						
						
							
							Merge pull request  #583  from return42/fix-combo-with  
						
						... 
						
						
						
						[fix] simple theme: remove width  45% from language and time filters 
						
						
					 
					
						2021-12-12 17:02:31 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8cc7c880ae 
							
						 
					 
					
						
						
							
							Merge pull request  #587  from dalf/fix-gigablast  
						
						... 
						
						
						
						[fix] gigablast engine 
						
						
					 
					
						2021-12-12 15:58:13 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3d378e4d08 
							
						 
					 
					
						
						
							
							Merge pull request  #597  from searxng/docker-upgrade-baseimage  
						
						... 
						
						
						
						Dockerfile: use alpine 3.15 
						
						
					 
					
						2021-12-12 11:05:26 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ff4958075e 
							
						 
					 
					
						
						
							
							Merge pull request  #598  from searxng/translations_update  
						
						... 
						
						
						
						Update translations 
						
						
					 
					
						2021-12-11 19:16:00 +01:00 
						 
				 
			
				
					
						
							
							
								searxng-bot 
							
						 
					 
					
						
						
						
						
							
						
						
							b994471233 
							
						 
					 
					
						
						
							
							[translations] update  
						
						... 
						
						
						
						030f3e59 - 2021-12-11 - Linerly <linerly@protonmail.com>
cedb4f9d - 2021-12-11 - Alexandre Flament <alex@al-f.net>
8522e4cf - 2021-12-11 - Alexandre Flament <alex@al-f.net> 
						
						
					 
					
						2021-12-11 18:11:41 +00:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f9c9284f48 
							
						 
					 
					
						
						
							
							Dockerfile: use alpine 3.15  
						
						... 
						
						
						
						Use Python 3.9.7-r4 (previously 3.9.5-r2) 
						
						
					 
					
						2021-12-11 17:06:23 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5307fd841d 
							
						 
					 
					
						
						
							
							Merge pull request  #591  from searxng/dependabot/pip/master/twine-3.7.1  
						
						... 
						
						
						
						Bump twine from 3.7.0 to 3.7.1 
						
						
					 
					
						2021-12-10 08:35:06 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4207eea676 
							
						 
					 
					
						
						
							
							Merge pull request  #592  from searxng/dependabot/pip/master/pylint-2.12.2  
						
						... 
						
						
						
						Bump pylint from 2.12.1 to 2.12.2 
						
						
					 
					
						2021-12-10 08:34:43 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							055198698a 
							
						 
					 
					
						
						
							
							Merge pull request  #593  from searxng/translations_update  
						
						... 
						
						
						
						Update translations 
						
						
					 
					
						2021-12-10 08:34:08 +01:00 
						 
				 
			
				
					
						
							
							
								searxng-bot 
							
						 
					 
					
						
						
						
						
							
						
						
							5bf16d56f4 
							
						 
					 
					
						
						
							
							[translations] update  
						
						... 
						
						
						
						10790ace - 2021-12-05 - Alexandre Flament <alex@al-f.net>
0026bde6 - 2021-12-07 - Naveen <naveen.translator@protonmail.com>
e066d8cf - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
174b9f9c - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
0817e645 - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
6272320f - 2021-12-08 - Alexandre Flament <alex@al-f.net>
e1281900 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
882ced80 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
59e8c950 - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
cfd72d00 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
8f3d6058 - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
b293c351 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
840e1a98 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
9f045c63 - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
e24a23e0 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
bf58a870 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
6b5e4993 - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
dc9ab819 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
b8b1423b - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
fbfe865c - 2021-12-03 - Markus Heiser <markus.heiser@darmarit.de>
afa65a98 - 2021-12-04 - Markus Heiser <markus.heiser@darmarit.de>
dded218c - 2021-12-05 - Taufik Hidayat <tfkhdyt@pm.me>
79659920 - 2021-12-05 - Markus Heiser <markus.heiser@darmarit.de>
5a4100dc - 2021-12-05 - Taufik Hidayat <tfkhdyt@pm.me>
57fb7a91 - 2021-12-05 - Taufik Hidayat <tfkhdyt@pm.me>
33eb893d - 2021-12-05 - Taufik Hidayat <tfkhdyt@pm.me>
2673c748 - 2021-12-03 - Alexandre Flament <alex@al-f.net> 
						
						
					 
					
						2021-12-10 07:17:45 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							65972f36d9 
							
						 
					 
					
						
						
							
							Bump pylint from 2.12.1 to 2.12.2  
						
						... 
						
						
						
						Bumps [pylint](https://github.com/PyCQA/pylint ) from 2.12.1 to 2.12.2.
- [Release notes](https://github.com/PyCQA/pylint/releases )
- [Changelog](https://github.com/PyCQA/pylint/blob/main/ChangeLog )
- [Commits](https://github.com/PyCQA/pylint/compare/v2.12.1...v2.12.2 )
---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2021-12-10 07:05:12 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							55d8c9a88e 
							
						 
					 
					
						
						
							
							Bump twine from 3.7.0 to 3.7.1  
						
						... 
						
						
						
						Bumps [twine](https://github.com/pypa/twine ) from 3.7.0 to 3.7.1.
- [Release notes](https://github.com/pypa/twine/releases )
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst )
- [Commits](https://github.com/pypa/twine/compare/3.7.0...3.7.1 )
---
updated-dependencies:
- dependency-name: twine
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2021-12-10 07:05:09 +00:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2a262df0bb 
							
						 
					 
					
						
						
							
							Merge pull request  #582  from return42/fix-autocomplete-csp  
						
						... 
						
						
						
						[fix] simple theme: make autocomplete-js CSP compliant 
						
						
					 
					
						2021-12-08 20:28:35 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b5c9cc4ff3 
							
						 
					 
					
						
						
							
							Merge pull request  #586  from dalf/remove-yggtorrent  
						
						... 
						
						
						
						[del] remove yggtorrent 
						
						
					 
					
						2021-12-07 07:00:47 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							24c7d6300e 
							
						 
					 
					
						
						
							
							Merge pull request  #588  from dalf/fix-imdb  
						
						... 
						
						
						
						[fix] imdb: don't crash when there is no result 
						
						
					 
					
						2021-12-06 23:28:35 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
						
						
							
						
						
							1a6207574e 
							
						 
					 
					
						
						
							
							[fix] gigablast engine  
						
						... 
						
						
						
						fetch extra params after 3000 seconds 
						
						
					 
					
						2021-12-06 22:55:15 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
						
						
							
						
						
							fbc2a6ab4b 
							
						 
					 
					
						
						
							
							[del] remove yggtorrent  
						
						... 
						
						
						
						yggtorrent is behind cloudflare now
close  #580  
						
						
					 
					
						2021-12-06 21:59:51 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
						
						
							
						
						
							037cb7dd3d 
							
						 
					 
					
						
						
							
							[fix] imdb: don't crash when there is no result  
						
						
						
						
					 
					
						2021-12-06 21:49:18 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							5f902bbb0f 
							
						 
					 
					
						
						
							
							[fix] simple theme: remove width  45% from language and time filters  
						
						... 
						
						
						
						All three filters (`language`, `time_range` and `safesearch`) are rendered in
one line.  A size of 45% for `language` and `time_range` left only 10% for the
`safesearch` filter.  Solution: drop with from `language` and `time_range`.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-05 14:22:55 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							d6d6585b26 
							
						 
					 
					
						
						
							
							[build] /static  
						
						
						
						
					 
					
						2021-12-05 11:51:36 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							2b26285a73 
							
						 
					 
					
						
						
							
							[fix] simple theme: make autocomplete-js CSP compliant  
						
						... 
						
						
						
						The CSP issue is, that the `_Position` function in the autocomplete-js set the
style attributes by `setAttribute("style", ...)`.  Using `setAttribute` to set
the style attribute invokes the HTML parser and CSP is triggered [1].
This patch overwrite the `_Position` function of autocomplete-js.
BTW: remove trailing whitespace
[1] https://stackoverflow.com/a/57633533 
Closes: https://github.com/searxng/searxng/issues/352 
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-05 11:48:23 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e4a2d354aa 
							
						 
					 
					
						
						
							
							Merge pull request  #581  from return42/fix-source-map  
						
						... 
						
						
						
						[fix] simple theme: make LESS sources available on non build hosts 
						
						
					 
					
						2021-12-05 11:01:40 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							f5a4906e3e 
							
						 
					 
					
						
						
							
							[build] /static  
						
						
						
						
					 
					
						2021-12-04 11:31:04 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							7d6a15a612 
							
						 
					 
					
						
						
							
							[fix] simple theme: make LESS sources available on non build hosts  
						
						... 
						
						
						
						Include the LESS source files directly in the `.map` files [1].
Drawback: `.map` files grow up in size, but this should not bother, because the
files are only loaded in debug mode.
[1] https://github.com/gruntjs/grunt-contrib-less#outputsourcefiles 
[2] https://github.com/searxng/searxng/pull/575#issuecomment-984058868 
Suggested-by: @dalf [2]
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-04 11:22:40 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							33e2599b82 
							
						 
					 
					
						
						
							
							Merge pull request  #574  from return42/fix-lib_static  
						
						... 
						
						
						
						[mod] make static.build.commit more robust 
						
						
					 
					
						2021-12-04 10:06:57 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b0774c7e37 
							
						 
					 
					
						
						
							
							Merge pull request  #578  from searxng/translations_update  
						
						... 
						
						
						
						Update translations 
						
						
					 
					
						2021-12-03 09:02:46 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							58a6738dec 
							
						 
					 
					
						
						
							
							Merge pull request  #575  from return42/fix-source-map  
						
						... 
						
						
						
						[fix] simple theme: make JS sources available on non build hosts 
						
						
					 
					
						2021-12-03 08:25:11 +01:00 
						 
				 
			
				
					
						
							
							
								searxng-bot 
							
						 
					 
					
						
						
						
						
							
						
						
							d65e841c55 
							
						 
					 
					
						
						
							
							[translations] update  
						
						... 
						
						
						
						b4860945 - 2021-12-03 - Alexandre Flament <alex@al-f.net>
df96994b - 2021-11-30 - Alexandre Flament <alex@al-f.net>
007ea84d - 2021-12-03 - Alexandre Flament <alex@al-f.net>
6ff99312 - 2021-12-02 - Ati Art <atiartstudio.home@gmail.com> 
						
						
					 
					
						2021-12-03 07:17:47 +00:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							32c5918e4d 
							
						 
					 
					
						
						
							
							Merge pull request  #577  from searxng/dependabot/pip/master/twine-3.7.0  
						
						... 
						
						
						
						Bump twine from 3.6.0 to 3.7.0 
						
						
					 
					
						2021-12-03 08:17:16 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f956b2117e 
							
						 
					 
					
						
						
							
							Bump twine from 3.6.0 to 3.7.0  
						
						... 
						
						
						
						Bumps [twine](https://github.com/pypa/twine ) from 3.6.0 to 3.7.0.
- [Release notes](https://github.com/pypa/twine/releases )
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst )
- [Commits](https://github.com/pypa/twine/compare/3.6.0...3.7.0 )
---
updated-dependencies:
- dependency-name: twine
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2021-12-03 07:12:18 +00:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							eb220774a6 
							
						 
					 
					
						
						
							
							Merge pull request  #576  from searxng/dependabot/pip/master/sphinx-4.3.1  
						
						... 
						
						
						
						Bump sphinx from 4.3.0 to 4.3.1 
						
						
					 
					
						2021-12-03 08:11:32 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6b58987017 
							
						 
					 
					
						
						
							
							Bump sphinx from 4.3.0 to 4.3.1  
						
						... 
						
						
						
						Bumps [sphinx](https://github.com/sphinx-doc/sphinx ) from 4.3.0 to 4.3.1.
- [Release notes](https://github.com/sphinx-doc/sphinx/releases )
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/4.x/CHANGES )
- [Commits](https://github.com/sphinx-doc/sphinx/compare/v4.3.0...v4.3.1 )
---
updated-dependencies:
- dependency-name: sphinx
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2021-12-03 07:04:22 +00:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							d26a746d7d 
							
						 
					 
					
						
						
							
							[build] /static  
						
						
						
						
					 
					
						2021-12-01 21:12:06 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							f54460a805 
							
						 
					 
					
						
						
							
							[fix] simple theme: make JS sources available on non build hosts  
						
						... 
						
						
						
						Include the source files directly in the `.map` files [1] for two reasons:
1. In the simple theme, modules from `./node_modules` are only available on
   developer's build host (a `make node.env` is needed to get the sources).  By
   example; in the `searxng.min.js.map` file, the `autocomplete.js` is linked at
   URL:
      ../node_modules/autocomplete-js/dist/autocomplete.js
2. Later, when client sources has been moved out of the `./static` URL [2] to
   the `<repo-roo>/src` folder, all JS sources are no longer available.
Drawback: `.map` files grow up in size, but this should not bother, because the
files are only loaded in debug mode.
[1] https://github.com/gruntjs/grunt-contrib-uglify#sourcemapincludesources 
[2] https://github.com/searxng/searxng/issues/141 
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-01 21:09:26 +01:00 
						 
				 
			
				
					
						
							
							
								Alexandre Flament 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ae49b5224c 
							
						 
					 
					
						
						
							
							Merge pull request  #566  from dalf/simple-theme-smaller-build  
						
						... 
						
						
						
						[mod] simple theme: smaller build 
						
						
					 
					
						2021-12-01 20:30:58 +01:00 
						 
				 
			
				
					
						
							
							
								Markus Heiser 
							
						 
					 
					
						
						
						
						
							
						
						
							c89d2aab3f 
							
						 
					 
					
						
						
							
							[mod] make static.build.commit more robust  
						
						... 
						
						
						
						- use single quote in the STATIC_BUILT_PATHS to avoid bash globbing
- don't try to commit if no files have been changed
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> 
						
						
					 
					
						2021-12-01 20:25:39 +01:00