forked from pool/MozillaFirefox
c24ccd4afb
* Added protection against unwanted software downloads * Suggested Tiles show sites of interest, based on categories from your recent browsing history * Hello allows adding a link to conversations to provide context on what the conversation will be about * New style for add-on manager based on the in-content preferences style * Improved scrolling, graphics, and video playback performance with off main thread compositing (GNU/Linux only) * Graphic blocklist mechanism improved: Firefox version ranges can be specified, limiting the number of devices blocked security fixes: * MFSA 2015-79/CVE-2015-4473/CVE-2015-4474 Miscellaneous memory safety hazards * MFSA 2015-80/CVE-2015-4475 (bmo#1175396) Out-of-bounds read with malformed MP3 file * MFSA 2015-81/CVE-2015-4477 (bmo#1179484) Use-after-free in MediaStream playback * MFSA 2015-82/CVE-2015-4478 (bmo#1105914) Redefinition of non-configurable JavaScript object properties * MFSA 2015-83/CVE-2015-4479/CVE-2015-4480/CVE-2015-4493 Overflow issues in libstagefright * MFSA 2015-84/CVE-2015-4481 (bmo1171518) Arbitrary file overwriting through Mozilla Maintenance Service with hard links (only affected Windows) * MFSA 2015-85/CVE-2015-4482 (bmo#1184500) Out-of-bounds write with Updater and malicious MAR file (does not affect openSUSE RPM packages which do not ship the updater) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=454
74 lines
2.9 KiB
Diff
74 lines
2.9 KiB
Diff
# HG changeset patch
|
|
# Parent e0751ad74e835e80041a61ea00c2a63bf6fbe2de
|
|
# Parent dbca8a673de340999f67eb321169b44cc4109faf
|
|
|
|
diff --git a/browser/app/Makefile.in b/browser/app/Makefile.in
|
|
--- a/browser/app/Makefile.in
|
|
+++ b/browser/app/Makefile.in
|
|
@@ -55,16 +55,21 @@ GARBAGE += $(addprefix $(FINAL_TARGET)/d
|
|
endif
|
|
|
|
ifdef MOZ_WIDGET_GTK
|
|
libs::
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/mozicon128.png $(FINAL_TARGET)/icons
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default16.png $(FINAL_TARGET)/chrome/icons/default
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default32.png $(FINAL_TARGET)/chrome/icons/default
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default48.png $(FINAL_TARGET)/chrome/icons/default
|
|
+ifdef MOZ_OFFICIAL_BRANDING
|
|
+ $(INSTALL) $(IFLAGS1) $(DIST)/branding/default22.png $(FINAL_TARGET)/chrome/icons/default
|
|
+ $(INSTALL) $(IFLAGS1) $(DIST)/branding/default24.png $(FINAL_TARGET)/chrome/icons/default
|
|
+ $(INSTALL) $(IFLAGS1) $(DIST)/branding/default256.png $(FINAL_TARGET)/chrome/icons/default
|
|
+endif
|
|
endif
|
|
|
|
ifndef LIBXUL_SDK
|
|
# channel-prefs.js is handled separate from other prefs due to bug 756325
|
|
libs:: $(srcdir)/profile/channel-prefs.js
|
|
$(NSINSTALL) -D $(DIST)/bin/defaults/pref
|
|
$(call py_action,preprocessor,-Fsubstitution $(PREF_PPFLAGS) $(ACDEFINES) $^ -o $(DIST)/bin/defaults/pref/channel-prefs.js)
|
|
endif
|
|
diff --git a/browser/branding/branding-common.mozbuild b/browser/branding/branding-common.mozbuild
|
|
--- a/browser/branding/branding-common.mozbuild
|
|
+++ b/browser/branding/branding-common.mozbuild
|
|
@@ -32,12 +32,15 @@ elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'co
|
|
'disk.icns',
|
|
'document.icns',
|
|
'dsstore',
|
|
'firefox.icns',
|
|
]
|
|
elif CONFIG['MOZ_WIDGET_GTK']:
|
|
BRANDING_FILES += [
|
|
'default16.png',
|
|
+ 'default22.png',
|
|
+ 'default24.png',
|
|
+ 'default256.png',
|
|
'default32.png',
|
|
'default48.png',
|
|
'mozicon128.png',
|
|
]
|
|
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
|
|
--- a/browser/installer/package-manifest.in
|
|
+++ b/browser/installer/package-manifest.in
|
|
@@ -669,18 +669,21 @@
|
|
@RESPATH@/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/icon.png
|
|
@RESPATH@/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf
|
|
@RESPATH@/chrome/toolkit@JAREXT@
|
|
@RESPATH@/chrome/toolkit.manifest
|
|
@RESPATH@/chrome/recording.manifest
|
|
@RESPATH@/chrome/recording/*
|
|
#ifdef MOZ_GTK
|
|
@RESPATH@/browser/chrome/icons/default/default16.png
|
|
+@RESPATH@/browser/chrome/icons/default/default22.png
|
|
+@RESPATH@/browser/chrome/icons/default/default24.png
|
|
@RESPATH@/browser/chrome/icons/default/default32.png
|
|
@RESPATH@/browser/chrome/icons/default/default48.png
|
|
+@RESPATH@/browser/chrome/icons/default/default256.png
|
|
#endif
|
|
|
|
; [Webide Files]
|
|
@RESPATH@/browser/chrome/webide@JAREXT@
|
|
@RESPATH@/browser/chrome/webide.manifest
|
|
@RESPATH@/browser/@PREF_DIR@/webide-prefs.js
|
|
|
|
; shell icons
|