- 18 Oct, 2019 1 commit
-
-
MickeyMoz authored
-
- 17 Oct, 2019 8 commits
-
-
MozLando authored
4767: GeckoView update (nightly) (20191017-141848) r=pocmo a=MickeyMoz Co-authored-by:
MickeyMoz <sebastian@mozilla.com>
-
MozLando authored
4762: For #4761 - Adds setting to control `forceUserScalableEnabled` r=csadilek a=boek 4769: For #2923: Don't crash if Intl.RelativeTimeFormat not supported r=Amejia481 a=csadilek `Intl.RelativeTimeFormat` is in Nightly and Beta, but not yet on Release (until Monday). Not a problem as Fenix is on Beta (and R-B on Nightly) anyway, but good to catch errors anyway. This would also help if an article specified an invalid lang for instance. Co-authored-by:
Jeff Boek <jeff@jeffboek.com> Co-authored-by:
Christian Sadilek <christian.sadilek@gmail.com>
-
Jeff Boek authored
-
Christian Sadilek authored
-
MickeyMoz authored
-
MozLando authored
4746: GeckoView update (nightly) (20191016-142200) r=pocmo a=MickeyMoz Co-authored-by:
MickeyMoz <sebastian@mozilla.com>
-
MozLando authored
4745: Fail complete tasks faster so bors errors out faster r=pocmo,mitchhenges a=JohanLorenzo Co-authored-by:
Johan Lorenzo <jlorenzo@mozilla.com>
-
Johan Lorenzo authored
-
- 16 Oct, 2019 8 commits
-
-
MozLando authored
4760: Closes #2923: Remove moment.js from reader view web extension r=Amejia481 a=csadilek Removes moment.js from reader view, and uses [Intl.RelativeTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat ) instead to construct a localized reading time string. Tested this with various sites in Spanish, Arabic, German, and English to verify this works as before. We could improve this more later to detect the language if the article doesn't specify but that's a separate issue (which also doesn't work in Fennec currently). Co-authored-by:
Christian Sadilek <christian.sadilek@gmail.com>
-
Christian Sadilek authored
-
MickeyMoz authored
-
MozLando authored
4744: Docs update (20191016-121549) [ci skip] r=pocmo a=MickeyMoz Co-authored-by:
MickeyMoz <sebastian@mozilla.com>
-
MickeyMoz authored
-
MozLando authored
4730: For #4560 Added BrowserMenuCategory menu item r=pocmo a=mcarare Co-authored-by:
mcarare <mihai.carare.dev@gmail.com>
-
mcarare authored
-
MozLando authored
4731: Update jacoco to version 0.8.5. r=csadilek a=pocmo A new version of jacoco was released and there's at least one improvement for Kotlin code: > Branches added by the Kotlin compiler for functions with default arguments and containing arguments of type long or double should be filtered out during generation of report (GitHub #908). Let's see if this works in automation and how that affects our coverage. 4732: Update Kotlin Coroutines to 1.3.2. r=csadilek a=pocmo Pushing to taskcluster to see if we can just update. Co-authored-by:
Sebastian Kaspari <s.kaspari@gmail.com>
-
- 15 Oct, 2019 4 commits
-
-
MozLando authored
4738: Docs update (20191015-121130) [ci skip] r=pocmo a=MickeyMoz Co-authored-by:
MickeyMoz <sebastian@mozilla.com>
-
Sebastian Kaspari authored
-
Sebastian Kaspari authored
-
MickeyMoz authored
-
- 14 Oct, 2019 10 commits
-
-
MozLando authored
4722: 1587405: Allow recording the empty string list r=mdboom a=mdboom Co-authored-by:
Michael Droettboom <mdboom@gmail.com>
-
MozLando authored
4733: GeckoView update (nightly) (20191014-141938) r=pocmo a=MickeyMoz Co-authored-by:
MickeyMoz <sebastian@mozilla.com>
-
MozLando authored
4734: GeckoView update (beta) (20191014-141938) r=pocmo a=MickeyMoz Co-authored-by:
MickeyMoz <sebastian@mozilla.com>
-
MozLando authored
4698: Uplift string extensions from Fenix r=NotWoods a=daphliu Fixes #4472 Co-authored-by:
Daphne Liu <daphne.liu97@gmail.com>
-
MickeyMoz authored
-
MickeyMoz authored
-
Sebastian Kaspari authored
-
Sebastian Kaspari authored
-
MozLando authored
4724: Import strings from android-l10n. r=pocmo a=mozilla-l10n-automation-bot n/t Co-authored-by:
Mozilla L10n Automation Bot <release+l10n-automation-bot@mozilla.com>
-
MozLando authored
4728: Docs update (20191013-121137) [ci skip] r=pocmo a=MickeyMoz 4729: GeckoView update (nightly) (20191013-141312) r=pocmo a=MickeyMoz Co-authored-by:
MickeyMoz <sebastian@mozilla.com>
-
- 13 Oct, 2019 4 commits
-
-
Mozilla L10n Automation Bot authored
-
MickeyMoz authored
-
MickeyMoz authored
-
Daphne Liu authored
-
- 12 Oct, 2019 2 commits
-
-
MozLando authored
4268: Pass redirect source and target flags to history tracking delegates r=rocketsroger a=linacambridge There's some confusion in `GeckoEngineSession` about redirect flags. The `VISIT_REDIRECT_SOURCE` and `VISIT_REDIRECT_SOURCE_PERMANENT` flags that we get from GeckoView's history delegate are for the redirect _source_, not the visit type. They indicate if the URL passed to `onVisited` is redirecting _to_ another URL, most likely because the server returned an HTTP 3xy status code with a `Location` header. Rust Places decides whether to mark the URL as hidden based on these flags. `VISIT_REDIRECT_{PERMANENT, TEMPORARY}`, however, indicate if the URL passed to `onVisited` is the _target_ of a redirect (in other words, the page that's _in_ the `Location` header). These get translated into `VisitType` flags, which Rust Places stores as the visit transition type. These two flags don't affect whether a URL is hidden. Note that, in a redirect chain, the middle links are both sources and targets. For example, in "mozilla.org" -> "www.mozilla.org" -> "www.mozilla.org/en-US", "www.mozilla.org" is both a redirect target (since "mozilla.org" redirected to it), and a source (it redirected to "www.mozilla.org/en-US"). See mozilla-mobile/fenix#3526. Co-authored-by:
Lina Cambridge <lina@yakshaving.ninja>
-
Lina Cambridge authored
There's some confusion in `GeckoEngineSession` about redirect flags. The `VISIT_REDIRECT_SOURCE` and `VISIT_REDIRECT_SOURCE_PERMANENT` flags that we get from GeckoView's history delegate are for the redirect _source_, not the visit type. They indicate if the URL passed to `onVisited` is redirecting _to_ another URL, most likely because the server returned an HTTP 3xy status code with a `Location` header. Rust Places decides whether to mark the URL as hidden based on these flags. `VISIT_REDIRECT_{PERMANENT, TEMPORARY}`, however, indicate if the URL passed to `onVisited` is the _target_ of a redirect (in other words, the page that's _in_ the `Location` header). These get translated into `VisitType` flags, which Rust Places stores as the visit transition type. These two flags don't affect whether a URL is hidden. Note that, in a redirect chain, the middle links are both sources and targets. For example, in "mozilla.org" -> "www.mozilla.org" -> "www.mozilla.org/en-US", "www.mozilla.org" is both a redirect target (since "mozilla.org" redirected to it), and a source (it redirected to "www.mozilla.org/en-US"). See mozilla-mobile/fenix#3526.
-
- 11 Oct, 2019 3 commits
-
-
Michael Droettboom authored
-
MickeyMoz authored
-
MickeyMoz authored
-