From: Robert Kaiser Date: Sat, 29 May 2010 12:38:25 +0000 (+0200) Subject: really make mandelbrot ready for add-on release X-Git-Url: https://git-public.kairo.at/?p=mandelbrot.git;a=commitdiff_plain;h=474b436c32a22fe875097a3cc6bc61fb4823ddf1 really make mandelbrot ready for add-on release --- diff --git a/Makefile.in b/Makefile.in index 51a4f0d..26ee514 100644 --- a/Makefile.in +++ b/Makefile.in @@ -55,7 +55,8 @@ XPI_PKGNAME = mandelbrot-$(EXTENSION_VERSION) DIST_FILES = extension/install.rdf -PREF_JS_EXPORTS = $(srcdir)/xulapp/defaults/preferences/prefs.js +# this interferes with e.g. Firefox prefs +#PREF_JS_EXPORTS = $(srcdir)/xulapp/defaults/preferences/prefs.js # include config.mk before using the AB_CD var include $(topsrcdir)/config/config.mk diff --git a/extension/fxOverlay.xul b/extension/fxOverlay.xul index 8d1c8b6..4293022 100644 --- a/extension/fxOverlay.xul +++ b/extension/fxOverlay.xul @@ -1 +1,58 @@ - + + + + + + + + + + + + + + + + + + diff --git a/extension/install.rdf b/extension/install.rdf index a09bdef..3d2700f 100644 --- a/extension/install.rdf +++ b/extension/install.rdf @@ -5,7 +5,7 @@ @INSTALL_EXTENSION_ID@ @EXTENSION_VERSION@ - KaiRo-Mandelbrot + KaiRo.at Mandelbrot Mandelbrot browser, based on highschool final thesis work of Robert Kaiser, but completely rewritten Robert Kaiser diff --git a/extension/mobileOverlay.xul b/extension/mobileOverlay.xul index 8d1c8b6..070f2ff 100644 --- a/extension/mobileOverlay.xul +++ b/extension/mobileOverlay.xul @@ -1 +1,57 @@ - + + + + + + + + + + + + + + + + + + diff --git a/extension/smOverlay.xul b/extension/smOverlay.xul index 623e9a7..573f671 100644 --- a/extension/smOverlay.xul +++ b/extension/smOverlay.xul @@ -36,6 +36,8 @@ - - ***** END LICENSE BLOCK ***** --> + + 0)); diff --git a/xulapp/chrome/mandelbrot/content/mandelbrot.xul b/xulapp/chrome/mandelbrot/content/mandelbrot.xul index 936bf3d..188592e 100644 --- a/xulapp/chrome/mandelbrot/content/mandelbrot.xul +++ b/xulapp/chrome/mandelbrot/content/mandelbrot.xul @@ -72,7 +72,7 @@ - + diff --git a/xulapp/chrome/mandelbrot/skin/classic/mandelbrot.css b/xulapp/chrome/mandelbrot/skin/classic/mandelbrot.css index d28d888..488bdca 100644 --- a/xulapp/chrome/mandelbrot/skin/classic/mandelbrot.css +++ b/xulapp/chrome/mandelbrot/skin/classic/mandelbrot.css @@ -35,3 +35,10 @@ * * ***** END LICENSE BLOCK ***** */ +#tasksMenuMandelbrot, #menu_openMandelbrot { + list-style-image: url("chrome://mandelbrot/skin/mandelbrotIcon16.png"); +} + +#tool-mandelbrot { + list-style-image: url("chrome://mandelbrot/skin/mandelbrotIcon32.png"); +} diff --git a/xulapp/chrome/mandelbrot/skin/classic/mandelbrotIcon16.png b/xulapp/chrome/mandelbrot/skin/classic/mandelbrotIcon16.png new file mode 100644 index 0000000..4e22313 Binary files /dev/null and b/xulapp/chrome/mandelbrot/skin/classic/mandelbrotIcon16.png differ diff --git a/xulapp/chrome/mandelbrot/skin/classic/mandelbrotIcon32.png b/xulapp/chrome/mandelbrot/skin/classic/mandelbrotIcon32.png new file mode 100644 index 0000000..3cfd60b Binary files /dev/null and b/xulapp/chrome/mandelbrot/skin/classic/mandelbrotIcon32.png differ