libnsgif: branch master updated. release/0.1.2-7-gee6294d
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/libnsgif.git/shortlog/ee6294d3f46d41a3f279...
...commit http://git.netsurf-browser.org/libnsgif.git/commit/ee6294d3f46d41a3f279ad...
...tree http://git.netsurf-browser.org/libnsgif.git/tree/ee6294d3f46d41a3f279adb1...
The branch, master has been updated
via ee6294d3f46d41a3f279adb147a386b10e96a5aa (commit)
from 088fa0819f1aeaf212a95caf7393a38c1640b5f0 (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/libnsgif.git/commit/?id=ee6294d3f46d41a3f2...
commit ee6294d3f46d41a3f279adb147a386b10e96a5aa
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
Update component version for release
diff --git a/Makefile b/Makefile
index c78ee16..068a4ee 100644
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,11 @@
#
# Makefile for libnsgif
#
-# Copyright 2009-1015 John-Mark Bell <jmb(a)netsurf-browser.org>
+# Copyright 2009-2015 John-Mark Bell <jmb(a)netsurf-browser.org>
# Component settings
COMPONENT := nsgif
-COMPONENT_VERSION := 0.1.2
+COMPONENT_VERSION := 0.1.3
# Default to a static library
COMPONENT_TYPE ?= lib-static
-----------------------------------------------------------------------
Summary of changes:
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index c78ee16..068a4ee 100644
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,11 @@
#
# Makefile for libnsgif
#
-# Copyright 2009-1015 John-Mark Bell <jmb(a)netsurf-browser.org>
+# Copyright 2009-2015 John-Mark Bell <jmb(a)netsurf-browser.org>
# Component settings
COMPONENT := nsgif
-COMPONENT_VERSION := 0.1.2
+COMPONENT_VERSION := 0.1.3
# Default to a static library
COMPONENT_TYPE ?= lib-static
--
NetSurf GIF Decoder
7 years, 5 months
netsurf: branch master updated. release/3.3-548-gb54a1fe
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/b54a1fe4cbc9ac1e0d695...
...commit http://git.netsurf-browser.org/netsurf.git/commit/b54a1fe4cbc9ac1e0d695f2...
...tree http://git.netsurf-browser.org/netsurf.git/tree/b54a1fe4cbc9ac1e0d695f2a3...
The branch, master has been updated
via b54a1fe4cbc9ac1e0d695f2a339d70e752967849 (commit)
via 35a97670aecad6ba2ac939ff2270f608e57c5909 (commit)
from 237ec692ddb58d41a12dffc12b31914252391209 (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=b54a1fe4cbc9ac1e0d6...
commit b54a1fe4cbc9ac1e0d695f2a339d70e752967849
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Add missing menu image
diff --git a/amiga/menu.c b/amiga/menu.c
index 6d885dc..831b8f7 100644
--- a/amiga/menu.c
+++ b/amiga/menu.c
@@ -659,7 +659,7 @@ static void ami_init_menulabs(struct gui_window_2 *gwin)
ami_menu_alloc_item(gwin, M_COOKIES, NM_ITEM, "ShowCookiesNS", 0, "TBImages:list_internet",
ami_menu_item_browser_cookies, NULL);
ami_menu_alloc_item(gwin, M_BAR_B3, NM_ITEM, NM_BARLABEL, 0, NULL, NULL, NULL);
- ami_menu_alloc_item(gwin, M_SCALE, NM_ITEM, "ScaleNS", 0, NSA_SPACE, NULL, NULL);
+ ami_menu_alloc_item(gwin, M_SCALE, NM_ITEM, "ScaleNS", 0, "TBImages:list_preview", NULL, NULL);
ami_menu_alloc_item(gwin, M_SCALEDEC, NM_SUB, "ScaleDec", '-', "TBImages:list_zoom_out",
ami_menu_item_browser_scale_decrease, NULL);
ami_menu_alloc_item(gwin, M_SCALENRM, NM_SUB, "ScaleNorm", '=', "TBImages:list_zoom_100",
commitdiff http://git.netsurf-browser.org/netsurf.git/commit/?id=35a97670aecad6ba2ac...
commit 35a97670aecad6ba2ac939ff2270f608e57c5909
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Increase minimum stack as sometimes Duktape runs out
diff --git a/amiga/gui.c b/amiga/gui.c
index 5eab345..30d72a8 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -195,7 +195,7 @@ static char *current_user = NULL;
static char *current_user_dir;
static char *current_user_faviconcache;
-static const __attribute__((used)) char *stack_cookie = "\0$STACK:131072\0";
+static const __attribute__((used)) char *stack_cookie = "\0$STACK:196608\0";
const char * const versvn;
const char * const verdate;
-----------------------------------------------------------------------
Summary of changes:
amiga/gui.c | 2 +-
amiga/menu.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/amiga/gui.c b/amiga/gui.c
index 5eab345..30d72a8 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -195,7 +195,7 @@ static char *current_user = NULL;
static char *current_user_dir;
static char *current_user_faviconcache;
-static const __attribute__((used)) char *stack_cookie = "\0$STACK:131072\0";
+static const __attribute__((used)) char *stack_cookie = "\0$STACK:196608\0";
const char * const versvn;
const char * const verdate;
diff --git a/amiga/menu.c b/amiga/menu.c
index 6d885dc..831b8f7 100644
--- a/amiga/menu.c
+++ b/amiga/menu.c
@@ -659,7 +659,7 @@ static void ami_init_menulabs(struct gui_window_2 *gwin)
ami_menu_alloc_item(gwin, M_COOKIES, NM_ITEM, "ShowCookiesNS", 0, "TBImages:list_internet",
ami_menu_item_browser_cookies, NULL);
ami_menu_alloc_item(gwin, M_BAR_B3, NM_ITEM, NM_BARLABEL, 0, NULL, NULL, NULL);
- ami_menu_alloc_item(gwin, M_SCALE, NM_ITEM, "ScaleNS", 0, NSA_SPACE, NULL, NULL);
+ ami_menu_alloc_item(gwin, M_SCALE, NM_ITEM, "ScaleNS", 0, "TBImages:list_preview", NULL, NULL);
ami_menu_alloc_item(gwin, M_SCALEDEC, NM_SUB, "ScaleDec", '-', "TBImages:list_zoom_out",
ami_menu_item_browser_scale_decrease, NULL);
ami_menu_alloc_item(gwin, M_SCALENRM, NM_SUB, "ScaleNorm", '=', "TBImages:list_zoom_100",
--
NetSurf Browser
7 years, 5 months