about summary refs log tree commit diff stats
path: root/res/license.md
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-06-20 21:28:23 +0200
committerbptato <nincsnevem662@gmail.com>2024-06-20 22:38:33 +0200
commit7f66b5ebc88936db974e3320d77c7ec9d4ab85e6 (patch)
tree669b2c307e2ea84476d6bbfd46ef127c0fc1c6f9 /res/license.md
parent2ab1e53b4bc15af3319994fdb25bb739b4b8e6db (diff)
downloadchawan-7f66b5ebc88936db974e3320d77c7ec9d4ab85e6.tar.gz
img: use stb_image, drop zlib as dependency
Now we have decoders for gif, jpeg, bmp. Also, the in-house PNG decoder
has been replaced in favor of the stbi implementation; this means we
no longer depend on zlib, since stbi comes with a built in inflate
implementation.
Diffstat (limited to 'res/license.md')
-rw-r--r--res/license.md16
1 files changed, 11 insertions, 5 deletions
diff --git a/res/license.md b/res/license.md
index 51592e0b..df93f548 100644
--- a/res/license.md
+++ b/res/license.md
@@ -5,11 +5,11 @@
 Chawan itself is dedicated to the public domain. However, it contains and
 depends on projects with different licensing terms.
 
-This document attempts to list licensing terms of projects included in
-the Chawan repository. Note that Chawan is dynamically linked against
-your copy of zlib, libcurl, (on Linux) libseccomp, your C library, and if
-exists, your termcap library. For licensing terms of these, please consult the
-appropriate library's documentation.
+This document attempts to list licensing terms of projects included in the
+Chawan repository. Note that Chawan is dynamically linked against your copy
+of libcurl, (on Linux) libseccomp, your C library, and if exists, your termcap
+library. For licensing terms of these, please consult the appropriate library's
+documentation.
 
 Also, Chawan is statically linked to the Nim standard library. At the time
 of writing, (i.e. as of Nim 2.0.4) this is the MIT license (same terms as
@@ -20,6 +20,7 @@ Table of contents:
 * [Chawan](#chawan)
 * [QuickJS](#quickjs)
 * [Punycode library](#punycode-library)
+* [STB image](#stb-image)
 
 ## Chawan
 
@@ -111,3 +112,8 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 ```
+
+## STB image
+
+The stb_image library is used for image transcoding. This library is dedicated
+to the public domain, and is distributed under the same terms as Chawan.