Arturo Mejia
acae49f949
[components] Issue https://github.com/mozilla-mobile/android-components/issues/6163 Remove the Disconnect category for the SystemEngine
2020-03-05 14:44:58 -05:00
Arturo Mejia
335e263a79
[components] Closes https://github.com/mozilla-mobile/android-components/issues/6163 : Update tracking protection lists
...
domain_blacklist.json maps to disconnect-blacklist.json
commit(shavar-prod-lists) d5755856f4eeab4ce5e8fb7896600ed7768368e5
domain_whitelist.json maps to disconnect-entitylist.json
commit(shavar-prod-lists) 01dcca911aa7787fd835a1a19cef1012296f4eb7
2020-03-05 14:44:58 -05:00
Mozilla L10n Automation Bot
177b318814
[components] Import l10n.
2020-03-04 00:03:47 +00:00
Simon Chae
100239143b
[components] Closes https://github.com/mozilla-mobile/android-components/issues/6018 : Do not load url during link if session is restored
2020-03-02 14:28:48 -05:00
Mozilla L10n Automation Bot
64d8390123
[components] Import l10n.
2020-02-24 00:04:07 +00:00
Mozilla L10n Automation Bot
d9d2a27483
[components] Import l10n.
2020-02-21 00:04:28 +00:00
Severin Rudie
5b868c9ca0
[components] For https://github.com/mozilla-mobile/fenix/issues/5695 : adds '{app} Search' to text selection context menu
2020-02-14 08:40:46 -08:00
Mozilla L10n Automation Bot
8d4b0c5d27
[components] Import l10n.
2020-02-07 00:05:20 +00:00
Mozilla L10n Automation Bot
8bf1ef2fa8
[components] Import l10n.
2020-01-22 00:04:26 +00:00
Sawyer Blatz
f0f6d47247
[components] For https://github.com/mozilla-mobile/android-components/issues/2689 : Refactors Error Pages to allow images
...
Co-authored-by: James Willcox <snorp@snorp.net >
Co-authored-by: Agi Sferro <agi@sferro.dev >
2020-01-21 11:18:14 -08:00
Mozilla L10n Automation Bot
437b0e4885
[components] Import l10n.
2020-01-20 00:03:35 +00:00
Mozilla L10n Automation Bot
6ef542faa4
[components] Import l10n.
2020-01-15 00:07:29 +00:00
Mozilla L10n Automation Bot
8872798070
[components] Import l10n.
2020-01-09 00:01:43 +00:00
Mozilla L10n Automation Bot
ac58483f3b
[components] Import l10n.
2020-01-07 00:02:02 +00:00
Mozilla L10n Automation Bot
2c4948084b
[components] Import l10n.
2020-01-06 00:03:46 +00:00
Mozilla L10n Automation Bot
fdee5b8b3e
[components] Import l10n.
2020-01-03 00:06:56 +00:00
Mozilla L10n Automation Bot
d591b6bfc8
[components] Import l10n.
2019-12-27 00:08:43 +00:00
Roger Yang
7aca9473f1
[components] Closes https://github.com/mozilla-mobile/android-components/issues/5243 : Split AppLinksFeature into feature and interceptor
2019-12-17 15:57:16 -05:00
Mozilla L10n Automation Bot
933e9d5f97
[components] Import l10n.
2019-12-17 18:39:45 +00:00
Gabriel Luong
5a7f12c152
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4240 - Clear the selection on back press
...
- Adds a reference to the current session's BasicSelectionActionDelegate in GeckoEngineView
2019-12-13 20:39:11 -05:00
Roger Yang
60e1084ff7
[components] For https://github.com/mozilla-mobile/android-components/issues/5127 : Add Debugging Code to Help Determine Crash Cause
2019-11-29 14:52:48 -05:00
Sawyer Blatz
191d379ff9
[components] Fixes https://github.com/mozilla-mobile/android-components/issues/5046 : Updates guessFileName to use uniqueFileName
2019-11-22 11:40:29 -08:00
MozLando
d09d5c0e09
[components] Merge https://github.com/mozilla-mobile/android-components/pull/5066
...
5066: Add setDynamicToolbarMaxHeight API r=pocmo a=hiikezoe
Co-authored-by: Hiroyuki Ikezoe <hiroyuki.ikezoe@gmail.com >
2019-11-20 10:00:39 +00:00
Roger Yang
ac7d92a5f9
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4950 : Enable Launching URL in Third Party Application
2019-11-16 22:12:58 -05:00
Hiroyuki Ikezoe
97f3a75121
[components] Add setDynamicToolbarMaxHeight API
2019-11-15 07:31:54 +09:00
Christian Sadilek
8777fc0c62
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4553 : Migrate WindowFeature to browser-state
2019-10-31 15:31:50 -04:00
Christian Sadilek
a5cc73dd18
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4749 : Fix for bug 1522829
2019-10-17 18:44:40 -04:00
Lina Cambridge
c64f248f76
[components] Pass redirect source and target flags to history tracking delegates.
...
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 https://github.com/mozilla-mobile/fenix/issues/3526 .
2019-10-11 21:41:40 -07:00
Axel Hecht
600937dc4a
[components] Import strings from android-l10n
...
State: mozilla-l10n/android-l10n@97355ffcdc
2019-09-25 13:58:27 +02:00
Denys M
b95c932f81
[components] For https://github.com/mozilla-mobile/android-components/issues/4460 . Fix detekt warning about license in project files.
2019-09-24 01:01:03 +04:00
Daniela Arcese
b3d5a23ee8
[components] Closes https://github.com/mozilla-mobile/android-components/issues/1388 : Update tracking protection lists
...
domain_blacklist.json commit(shavar-prod-lists)
ba54e81585a68ec7662629b69e7ebd805f0bda78
domain_whitelist.json commit(shavar-prod-lists)
ba54e81585a68ec7662629b69e7ebd805f0bda78
2019-09-17 08:41:09 -04:00
Axel Hecht
1b48aa9e31
[components] Import strings from android-l10n
...
State: mozilla-l10n/android-l10n@e78d5868c7
2019-09-13 14:42:51 +02:00
Arturo Mejia
f90f380cbc
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4349 : Align default tracking protection policies with
...
Firefox Desktop policies.
2019-09-10 01:45:14 -04:00
Arturo Mejia
6e7ef89243
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4190 : Decouple safe browsing api from the tracking protection.
2019-08-26 21:44:53 -04:00
Arturo Mejia
a618ea15ec
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4191 : Fixed the recommended() tracking category on SystemEngine
2019-08-24 02:16:25 -04:00
Axel Hecht
a893d1f5e7
[components] Import strings from android-l10n
...
State: mozilla-l10n/android-l10n@90a28fd458
2019-08-23 12:33:53 +02:00
Arturo Mejia
044628b17d
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4098 , https://github.com/mozilla-mobile/android-components/issues/4110 : Exposing new categories of content blocking.
2019-08-14 12:28:25 -04:00
Arturo Mejia
b14d8b5bd2
[components] Closes https://github.com/mozilla-mobile/android-components/issues/4079 : Manually updating GeckoView nightly 70.0.20190809095611.
2019-08-13 00:12:32 -04:00
Axel Hecht
222835e01b
[components] Import strings from android-l10n
...
State: mozilla-l10n/android-l10n@ab580f757c
2019-08-12 12:45:49 +02:00
Christian Sadilek
ce24bae766
[components] Closes https://github.com/mozilla-mobile/android-components/issues/1503 : Add support for window requests to engine-gecko
2019-07-30 13:49:51 -04:00
Axel Hecht
e9e8e4a440
[components] Import strings from android-l10n
...
State: mozilla-l10n/android-l10n@1412258878
2019-07-30 15:09:47 +02:00
Tiger Oakes
708e1dd908
[components] Fixes https://github.com/mozilla-mobile/android-components/issues/3516 - Use response to determine file name
2019-07-19 14:09:49 -04:00
Arturo Mejia
773f9e92a2
[components] Closes https://github.com/mozilla-mobile/android-components/issues/3788 : Expose to which category a blocked tracker belongs.
2019-07-19 08:31:31 -07:00
Axel Hecht
96447ce446
[components] Import strings from android-l10n
...
State: mozilla-l10n/android-l10n@e521a2aab2
2019-07-17 17:37:25 +02:00
Tiger Oakes
0099bac510
[components] Turn on MagicNumber ignoreEnums rule
2019-07-15 11:41:43 -04:00
Simon Chae
46cb134dd8
[components] Closes https://github.com/mozilla-mobile/android-components/issues/3666 : Add useWideView=false desktopMode test case
2019-07-12 13:57:26 -04:00
Simon Chae
27cc28bd6c
[components] Issue https://github.com/mozilla-mobile/android-components/issues/3666 : Set desktopMode toggle against settings.useWideViewPort
...
For toggleDesktopMode()
2019-07-12 13:57:26 -04:00
Simon Chae
d0e8cbc06e
[components] Issue https://github.com/mozilla-mobile/android-components/issues/3666 : Make Settings.useWideViewPort nullable
2019-07-12 13:57:26 -04:00
Simon Chae
f0e777c486
[components] Issue https://github.com/mozilla-mobile/android-components/issues/3666 : Apply useWideViewPort to WebSetting
2019-07-12 13:57:26 -04:00
Simon Chae
03fe096b30
[components] Issue https://github.com/mozilla-mobile/android-components/issues/3666 : Add useWideViewPort setting and SystemEngineSession
2019-07-12 13:57:26 -04:00