Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/cfb6c461fc61c64cf39e4708922ad024ac5fce91
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/cfb6c461fc61c64cf39e4708922ad024ac5fce91
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/cfb6c461fc61c64cf39e4708922ad024ac5fce91

The branch, master has been updated
       via  cfb6c461fc61c64cf39e4708922ad024ac5fce91 (commit)
      from  e4457f6179a000009176c5f0dce63b985a076b78 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=cfb6c461fc61c64cf39e4708922ad024ac5fce91
commit cfb6c461fc61c64cf39e4708922ad024ac5fce91
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    monkey: Add bmp and ico to mime_hash.

diff --git a/frontends/monkey/filetype.c b/frontends/monkey/filetype.c
index 65c84f9..f0f22d0 100644
--- a/frontends/monkey/filetype.c
+++ b/frontends/monkey/filetype.c
@@ -69,8 +69,10 @@ void monkey_fetch_filetype_init(const char *mimefile)
        hash_add(mime_hash, "html", "text/html");
        hash_add(mime_hash, "jpg", "image/jpeg");
        hash_add(mime_hash, "jpeg", "image/jpeg");
+       hash_add(mime_hash, "bmp", "image/bmp");
        hash_add(mime_hash, "gif", "image/gif");
        hash_add(mime_hash, "png", "image/png");
+       hash_add(mime_hash, "ico", "image/ico");
        hash_add(mime_hash, "jng", "image/jng");
        hash_add(mime_hash, "mng", "image/mng");
        hash_add(mime_hash, "webp", "image/webp");


-----------------------------------------------------------------------

Summary of changes:
 frontends/monkey/filetype.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/frontends/monkey/filetype.c b/frontends/monkey/filetype.c
index 65c84f9..f0f22d0 100644
--- a/frontends/monkey/filetype.c
+++ b/frontends/monkey/filetype.c
@@ -69,8 +69,10 @@ void monkey_fetch_filetype_init(const char *mimefile)
        hash_add(mime_hash, "html", "text/html");
        hash_add(mime_hash, "jpg", "image/jpeg");
        hash_add(mime_hash, "jpeg", "image/jpeg");
+       hash_add(mime_hash, "bmp", "image/bmp");
        hash_add(mime_hash, "gif", "image/gif");
        hash_add(mime_hash, "png", "image/png");
+       hash_add(mime_hash, "ico", "image/ico");
        hash_add(mime_hash, "jng", "image/jng");
        hash_add(mime_hash, "mng", "image/mng");
        hash_add(mime_hash, "webp", "image/webp");


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to