about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-07-20 15:25:17 +0200
committerbptato <nincsnevem662@gmail.com>2024-07-20 15:25:17 +0200
commit4183fbf5bc53e4208df443f343f97ab466384e21 (patch)
treedef24130cb261be24e410cda7cc90dcdd549f18b
parent2a9b57b6b6a68af453e75384300887bacc3f6add (diff)
downloadchawan-4183fbf5bc53e4208df443f343f97ab466384e21.tar.gz
Update readme
-rw-r--r--README.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/README.md b/README.md
index 68e5ed57..d9ba5e75 100644
--- a/README.md
+++ b/README.md
@@ -109,14 +109,17 @@ Here's some:
 * The browser engine (HTML parsing, rendering, etc.) has been developed
   from scratch in the memory-safe Nim programming language. Some of these
   modules are now also available as separate libraries.
-* Uses QuickJS for JavaScript execution and regex matching.
+* Uses [QuickJS](https://bellard.org/quickjs) for JavaScript execution and regex
+  matching.
 * Each buffer (page) is isolated in a separate process. File loading is done
   through dedicated loader processes.
 * termcap for basic terminal capability querying, and terminal queries where
   possible.
-* The default image decoder currently uses the `stb_image` library. Image codecs
-  are handled as protocols, so users will be able to add their own codecs (once
-  I document how it works...)
+* The default image decoder (PNG, JPEG, GIF, BMP) uses the
+  [stb_image](https://github.com/nothings/stb) library, and WebP images are
+  decoded using the [jebp](https://github.com/matanui159/jebp) library. Image
+  codecs are handled as protocols, so users will be able to add their own codecs
+  (once I document how it works...)
 
 For further details, please refer to the [architecture](doc/architecture.md)
 document.