forked from pool/MozillaFirefox
- Mozilla Firefox 68.0.1
* Fixed missing Full Screen button when watching videos in full screen mode on HBO GO (bmo#1562837) * Fixed a bug causing incorrect messages to appear for some locales when sites try to request the use of the Storage Access API (bmo#1558503) * Users in Russian regions may have their default search engine changed (bmo#1565315) * Built-in search engines in some locales do not function correctly (bmo#1565779) * SupportMenu policy doesn't always work (bmo#1553290) * Allow the privacy.file_unique_origin pref to be controlled by policy (bmo#1563759) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=753
This commit is contained in:
parent
e62fe7e3d9
commit
e50c943778
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 19 08:11:27 UTC 2019 - Wolfgang Rosenauer <wr@rosenauer.org>
|
||||
|
||||
- Mozilla Firefox 68.0.1
|
||||
* Fixed missing Full Screen button when watching videos in full
|
||||
screen mode on HBO GO (bmo#1562837)
|
||||
* Fixed a bug causing incorrect messages to appear for some
|
||||
locales when sites try to request the use of the Storage
|
||||
Access API (bmo#1558503)
|
||||
* Users in Russian regions may have their default search engine
|
||||
changed (bmo#1565315)
|
||||
* Built-in search engines in some locales do not function
|
||||
correctly (bmo#1565779)
|
||||
* SupportMenu policy doesn't always work (bmo#1553290)
|
||||
* Allow the privacy.file_unique_origin pref to be controlled by
|
||||
policy (bmo#1563759)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 11 10:51:39 UTC 2019 - Jiri Slaby <jslaby@suse.com>
|
||||
|
||||
|
@ -19,12 +19,12 @@
|
||||
|
||||
# changed with every update
|
||||
%define major 68
|
||||
%define mainver %major.0
|
||||
%define orig_version 68.0
|
||||
%define mainver %major.0.1
|
||||
%define orig_version 68.0.1
|
||||
%define orig_suffix %{nil}
|
||||
%define update_channel release
|
||||
%define branding 1
|
||||
%define releasedate 20190705220548
|
||||
%define releasedate 20190717172542
|
||||
%define source_prefix firefox-%{orig_version}
|
||||
|
||||
# always build with GCC as SUSE Security Team requires that
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b0c9df05c85ba1e6089280153c4e929063e6ec30db07929de68ddb06d5f8031a
|
||||
size 28392
|
||||
oid sha256:74bbb01f23fde0403c2b8d0fcd66b138a19e5acdf9943a0e2ae97838595104f0
|
||||
size 28488
|
||||
|
@ -80,21 +80,24 @@ function locales_get() {
|
||||
|
||||
LAST_FOUND=""
|
||||
# Unfortunately, locales-files are not associated to releases, but to builds.
|
||||
# And since we don't know which build was the final build, we go from 1 to
|
||||
# the last we find and try to find the latest one that exists.
|
||||
# And since we don't know which build was the final build, we go from 9 downwards
|
||||
# try to find the latest one that exists (assuming there are no more than 9 builds).
|
||||
# Error only if not even the first one exists
|
||||
for BUILD_ID in $(seq 1 9); do
|
||||
for BUILD_ID in $(seq 9 -1 0); do
|
||||
FINAL_URL="${URL_TO_CHECK}-build${BUILD_ID}.json"
|
||||
if wget --quiet --spider "$FINAL_URL"; then
|
||||
LAST_FOUND="$FINAL_URL"
|
||||
elif [ $BUILD_ID -gt 1 ]; then
|
||||
echo "$LAST_FOUND"
|
||||
return 0
|
||||
else
|
||||
echo "Error: Could not find locales-file (json) for Firefox $TMP_VERSION !" 1>&2
|
||||
return 1
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$LAST_FOUND" != "" ]; then
|
||||
echo "$LAST_FOUND"
|
||||
return 0
|
||||
else
|
||||
echo "Error: Could not find locales-file (json) for Firefox $TMP_VERSION !" 1>&2
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
function locales_parse() {
|
||||
@ -160,7 +163,7 @@ fi
|
||||
|
||||
# we might have an upstream archive already and can skip the checkout
|
||||
if [ -e $SOURCE_TARBALL ]; then
|
||||
if [ -z ${SKIP_LOCALES+x} ]; then
|
||||
if [ -z ${SKIP_LOCALES+x} ] && [ $LOCALES_CHANGED -ne 0 ]; then
|
||||
# still need to extract the locale information from the archive
|
||||
echo "extract locale changesets"
|
||||
tar -xf $SOURCE_TARBALL $LOCALE_FILE
|
||||
@ -243,13 +246,18 @@ if [ $LOCALES_CHANGED -ne 0 ]; then
|
||||
esac
|
||||
done
|
||||
echo "creating l10n archive..."
|
||||
if [ "$PRODUCT" = "thunderbird" ]; then
|
||||
if [ "$PRODUCT" = "thunderbird" ]; then
|
||||
TB_TAR_FLAGS="--exclude=browser --exclude=suite"
|
||||
fi
|
||||
fi
|
||||
tar $compression -cf l10n-$VERSION$VERSION_SUFFIX.tar.xz \
|
||||
--exclude=.hgtags --exclude=.hgignore --exclude=.hg \
|
||||
$TB_TAR_FLAGS \
|
||||
l10n
|
||||
elif [ -f "l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz" ]; then
|
||||
# Locales did not change, but the old tar-ball is in this directory
|
||||
# Simply rename it:
|
||||
echo "Moving l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz to l10n-$VERSION$VERSION_SUFFIX.tar.xz"
|
||||
mv "l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz" "l10n-$VERSION$VERSION_SUFFIX.tar.xz"
|
||||
fi
|
||||
|
||||
# compare-locales
|
||||
|
3
firefox-68.0.1.source.tar.xz
Normal file
3
firefox-68.0.1.source.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6037f77bdab29d79ca5e3fbd1d32f6c209e09d2066189a13dc7f7491227f5568
|
||||
size 311390092
|
16
firefox-68.0.1.source.tar.xz.asc
Normal file
16
firefox-68.0.1.source.tar.xz.asc
Normal file
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCAAdFiEECXsxMHeuYqAvhNpN8aZmj7t9Vy4FAl0vi+QACgkQ8aZmj7t9
|
||||
Vy5aFA//ZsBnQjpaCS4uhDKS5hfycGbpUcN/xNhEC43jPemJOUKsmwTYt9V1Qnpe
|
||||
ayuJ/JTALQjzn5korT8OqLQeuAGJbbNsg4OaR5G1LuDjD5I6rH3A7RSjM6XC/MBM
|
||||
8bF1pKi7dz8/W39z6qJVMRHUw5+BAiDdqv0KWP0Bp37ZEgJRnS33GAJH7HpuoCck
|
||||
YJ1/xl2mb5wexiqMY00o/X7uGTy7fEe/eOCgHrxmKjcUNizDU97/aPmlfolDvKuH
|
||||
x8kf1QcvkYueFmGf3MPVq92XH6WuRf7TPyM3LAhdJFux+2Fg3AFsr8BIib/FOwon
|
||||
zouKynmlmIHT/uySGtqcOdlZq/+Lhe9NDirvj8Dx3P/cSdfLy6T6FFnreu0ef7uM
|
||||
ksBwnDwQT0VimX3AwWDs+Nz3PR4DazB1jtmSYSrRRnl1MAz6DT9HPt4ma44rolC5
|
||||
kgXWa9voPdmU16vkarET/NegqjcUtbeCGi6+n1Kw1fPqRJ91FIGp/ROmPIYoodL2
|
||||
kkxBGHZYJ4QkICdqJC6JCp6oDp6m6IDznTlhuI3bNqiPGRAnB8yiFmMVrg6Pf4Ts
|
||||
b+oi8HdCnFqqrP+GCxwfIlTSteCZXkWpTXJxJJm2oMr5FIcA/Ivexrmi/sO89usC
|
||||
aIBGgPG4gk/LzyNUUIiJQ+dS9LAiF3KniQWUjlFKDvsbqobSDDY=
|
||||
=wInf
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f7d61a08820088f1280d27f0808e355152c1dd0c94625fd077ced7319e522565
|
||||
size 315855672
|
@ -1,16 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCAAdFiEECXsxMHeuYqAvhNpN8aZmj7t9Vy4FAl0f/2YACgkQ8aZmj7t9
|
||||
Vy4Q9Q/7BUeGl3mPqCC+RMSQyp2r1hPouNj1aIzWgjmUCNk+2soKgYXFameB7/UT
|
||||
nWejptelT261tAUdRUYfttXk+KBsT4wOMEf0UrlC7GTGllfwjoxc/JWUUmXpJTa6
|
||||
M9xAUIa6NJbXIGCfaRk/PRdz+TAjsLWLQsdavw5zcyMoNiYyTARO0ap1luUo/FAg
|
||||
9aZ7MtBQ1z4C9B3vYuTH6qgGIA1wazstrNg4C4rgkHAXAzvYW9NMNAO53d0F9w1q
|
||||
UVDw0VY7G27gOnrysTJH12Lb18AXFWPXWbF5gmxKbkpdjeGlC1q7GvLV+TAI3m7H
|
||||
UL1fV3c8Y8+9TEJ0c95FvZwTcUmuNDJagt7bu/MNu7i9gyWBqucNnF3NgkmTR+EE
|
||||
BG21l7lSGBh8s4vl4upoCUoQ/bpriMBw767++TA5uzvj7NZXsOwU4sY97gpiJJIa
|
||||
0VwVjdHKjQTUITrHuH2hrqD0dNBL8FgFATXxVVEwDGxhiR5ZP9tduL+a/Sn2pcQd
|
||||
D9v5tJ/3GSlfYJqIAiNMaq139BZBYStcibk99pct5WU5jH6conzx4QEAHM2eaFBX
|
||||
f87G7PKEfvHiVhuUJF8sblbO1DSj0Qk08/bwcVjW8vTAEKcz7AIQw18FoNxlgcg+
|
||||
kIW6xfR/P/sLMnwgc9ZEvVd25AYBJ1qwyBDwwAlcEbEmYoftVJo=
|
||||
=9AVI
|
||||
-----END PGP SIGNATURE-----
|
3
l10n-68.0.1.tar.xz
Normal file
3
l10n-68.0.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8870ac699c5c8536b75d9f4a93f720cb75d312ec29c276cd07699c151f96f4f
|
||||
size 49128836
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a93aca6a8e41ac91d301203fb0d59cc6f6ff20d483e0f6c83e34b9e82a8d116
|
||||
size 49500472
|
@ -1,2 +1,2 @@
|
||||
REV=353628fec415324ca6aa333ab6c47d447ecc128e
|
||||
REV=837bbcb850cd58eb07c7f6437078d5229986967c
|
||||
REPO=http://hg.mozilla.org/releases/mozilla-release
|
||||
|
@ -1,8 +1,8 @@
|
||||
PRODUCT="firefox"
|
||||
CHANNEL="release"
|
||||
VERSION="68.0"
|
||||
VERSION="68.0.1"
|
||||
VERSION_SUFFIX=""
|
||||
FF_RELEASE_TAG="353628fec415324ca6aa333ab6c47d447ecc128e"
|
||||
FF_RELEASE_TAG="837bbcb850cd58eb07c7f6437078d5229986967c"
|
||||
TB_RELEASE_TAG=""
|
||||
PREV_VERSION=""
|
||||
PREV_VERSION_SUFFIX=""
|
||||
|
Loading…
Reference in New Issue
Block a user