Hello community, here is the log from the commit of package MozillaThunderbird for openSUSE:Factory checked in at 2019-11-06 15:15:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/MozillaThunderbird (Old) and /work/SRC/openSUSE:Factory/.MozillaThunderbird.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "MozillaThunderbird" Wed Nov 6 15:15:38 2019 rev:220 rq:744761 version:68.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/MozillaThunderbird/MozillaThunderbird.changes 2019-10-28 16:45:18.540620176 +0100 +++ /work/SRC/openSUSE:Factory/.MozillaThunderbird.new.2990/MozillaThunderbird.changes 2019-11-06 15:15:43.485150893 +0100 @@ -1,0 +2,18 @@ +Fri Nov 1 11:16:39 UTC 2019 - Wolfgang Rosenauer <[email protected]> + +- Mozilla Thunderbird 68.2.1 + * A language for the user interface can now be chosen in the + advanced settings (multilingual UI) + * Fixed problem with Google authentication (OAuth2) + * Selected or unread messages were not shown in the correct color + in the thread pane (message list) under some circumstances + * When using a language pack, names of standard folders weren't + localized (boo#1149126) + * Address book default startup directory in preferences panel was + not persisted + * Chat: Extended context menu on Instant messaging status dialog + (Show Accounts) +- added mozilla-bmo1504834-part4.patch to fix some visual issues on + big endian platforms + +------------------------------------------------------------------- Old: ---- l10n-68.2.0.tar.xz thunderbird-68.2.0.source.tar.xz thunderbird-68.2.0.source.tar.xz.asc New: ---- l10n-68.2.1.tar.xz mozilla-bmo1504834-part4.patch thunderbird-68.2.1.source.tar.xz thunderbird-68.2.1.source.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ MozillaThunderbird.spec ++++++ --- /var/tmp/diff_new_pack.EG7rsB/_old 2019-11-06 15:16:05.109172178 +0100 +++ /var/tmp/diff_new_pack.EG7rsB/_new 2019-11-06 15:16:05.121172190 +0100 @@ -26,11 +26,11 @@ # major 69 # mainver %major.99 %define major 68 -%define mainver %major.2.0 -%define orig_version 68.2.0 +%define mainver %major.2.1 +%define orig_version 68.2.1 %define orig_suffix %{nil} %define update_channel release -%define releasedate 20191021120853 +%define releasedate 20191030212137 %define source_prefix thunderbird-%{mainver} # always build with GCC as SUSE Security Team requires that @@ -172,6 +172,7 @@ Patch21: mozilla-bmo1554971.patch Patch22: mozilla-nestegg-big-endian.patch Patch24: mozilla-fix-top-level-asm.patch +Patch25: mozilla-bmo1504834-part4.patch Patch100: thunderbird-broken-locales-build.patch %endif # only_print_mozconfig BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -267,6 +268,7 @@ %patch21 -p1 %patch22 -p1 %patch24 -p1 +%patch25 -p1 # Thunderbird %patch100 -p1 %endif # only_print_mozconfig ++++++ compare-locales.tar.xz ++++++ ++++++ l10n-68.2.0.tar.xz -> l10n-68.2.1.tar.xz ++++++ /work/SRC/openSUSE:Factory/MozillaThunderbird/l10n-68.2.0.tar.xz /work/SRC/openSUSE:Factory/.MozillaThunderbird.new.2990/l10n-68.2.1.tar.xz differ: char 27, line 1 ++++++ mozilla-bmo1504834-part4.patch ++++++ # HG changeset patch # Parent 46ea866ca3acb8bb5e1709ceb799b9c94f591dec Problem description: Tab-titles that are too long to fit into a tab get faded out. On big endian this is broken and instead of fading out, the tab gets white and the font transparent, leading to an unreadable tab-title Solution: This is not a real solution, but a hack. The real solution would have been to byte-swap the correct buffer, but I could not find it. So the next best thing is to deactivate the fading-effect. Now all tab-titles are readable, albeit not as pretty to look at as they could be. Side-effects: I have not yet found an unwanted side-effect. diff -r 46ea866ca3ac -r 6ef20eee3f8f gfx/2d/DrawTargetSkia.cpp --- a/gfx/2d/DrawTargetSkia.cpp Tue Oct 22 12:27:22 2019 +0200 +++ b/gfx/2d/DrawTargetSkia.cpp Thu Oct 31 09:11:56 2019 +0100 @@ -1861,6 +1861,14 @@ SkCanvas::kPreserveLCDText_SaveLayerFlag | (aCopyBackground ? SkCanvas::kInitWithPrevious_SaveLayerFlag : 0)); +#if MOZ_BIG_ENDIAN + // Pushing a layer where an aMask is defined produces wrong output. + // We _should_ endian swap the data, but I couldn't find a workable way to do so + // Therefore I deactivate those layers in the meantime. + // The result is: Tab-titles that are longer than the available space should be faded out. + // The fading doesn't work, so we deactivate the fading-effect here. + if (!aMask) +#endif mCanvas->saveLayer(saveRec); SetPermitSubpixelAA(aOpaque); ++++++ tar_stamps ++++++ --- /var/tmp/diff_new_pack.EG7rsB/_old 2019-11-06 15:16:05.525172587 +0100 +++ /var/tmp/diff_new_pack.EG7rsB/_new 2019-11-06 15:16:05.529172591 +0100 @@ -1,9 +1,9 @@ PRODUCT="thunderbird" CHANNEL="esr68" -VERSION="68.2.0" +VERSION="68.2.1" VERSION_SUFFIX="" -RELEASE_TAG="bee94d0a067adc165b3fc06bde071ca5556164cf" -PREV_VERSION="" +RELEASE_TAG="afe823a25c03b91217ff767b360f14e289f3671d" +PREV_VERSION="68.2.0" PREV_VERSION_SUFFIX="" #SKIP_LOCALES="" # Uncomment to skip l10n and compare-locales-generation ++++++ thunderbird-68.2.0.source.tar.xz -> thunderbird-68.2.1.source.tar.xz ++++++ /work/SRC/openSUSE:Factory/MozillaThunderbird/thunderbird-68.2.0.source.tar.xz /work/SRC/openSUSE:Factory/.MozillaThunderbird.new.2990/thunderbird-68.2.1.source.tar.xz differ: char 15, line 1
