File tree Expand file tree Collapse file tree 7 files changed +17
-8
lines changed
java/org/midorinext/android Expand file tree Collapse file tree 7 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -591,6 +591,11 @@ abstract class BaseBrowserFragment :
591
591
loginValidationDelegate = DefaultLoginValidationDelegate (
592
592
context.components.core.lazyPasswordsStorage
593
593
),
594
+ isLoginAutofillEnabled = {
595
+ context.settings().shouldAutofillLogins
596
+ },
597
+ // there is no generate password feature, add this to show the save dialog
598
+ hideUpdateFragmentAfterSavingGeneratedPassword = { _, _ -> false },
594
599
isSaveLoginEnabled = {
595
600
context.settings().shouldPromptToSaveLogins
596
601
},
Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ import org.midorinext.android.perf.lazyMonitored
87
87
import org.midorinext.android.settings.SupportUtils
88
88
import org.midorinext.android.utils.getUndoDelay
89
89
import org.mozilla.geckoview.GeckoRuntime
90
- import java.util.*
91
90
import java.util.concurrent.TimeUnit
92
91
93
92
/* *
@@ -341,7 +340,7 @@ class Core(
341
340
/* *
342
341
* The storage component to sync and persist tabs in a Midori Sync account.
343
342
*/
344
- val lazyRemoteTabsStorage = lazyMonitored { RemoteTabsStorage (context) }
343
+ val lazyRemoteTabsStorage = lazyMonitored { RemoteTabsStorage (context, crashReporter ) }
345
344
346
345
val recentlyClosedTabsStorage =
347
346
lazyMonitored { RecentlyClosedTabsStorage (context, engine, crashReporter) }
Original file line number Diff line number Diff line change @@ -105,9 +105,12 @@ object GeckoProvider {
105
105
GeckoCreditCardsAddressesStorageDelegate (
106
106
storage = autofillStorage,
107
107
isCreditCardAutofillEnabled = { context.settings().shouldAutofillCreditCardDetails },
108
- isAddressAutofillEnabled = { context.settings().shouldAutofillAddressDetails }
108
+ isAddressAutofillEnabled = { context.settings().shouldAutofillAddressDetails },
109
+ ),
110
+ GeckoLoginStorageDelegate (
111
+ loginStorage = loginStorage,
112
+ isLoginAutofillEnabled = { context.settings().shouldAutofillLogins },
109
113
),
110
- GeckoLoginStorageDelegate (loginStorage)
111
114
)
112
115
113
116
return geckoRuntime
Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ private fun LibrarySiteItemSitePreview() {
261
261
url = null ,
262
262
dateAdded = 0L ,
263
263
children = null ,
264
+ lastModified = 0L ,
264
265
),
265
266
)
266
267
}
@@ -283,6 +284,7 @@ private fun LibrarySiteItemFolderPreview() {
283
284
url = null ,
284
285
dateAdded = 0L ,
285
286
children = null ,
287
+ lastModified = 0L ,
286
288
),
287
289
)
288
290
}
Original file line number Diff line number Diff line change 12
12
android : shortcutLongLabel =" @string/home_screen_shortcut_open_new_tab_2" >
13
13
<intent
14
14
android : action =" org.midorinext.android.OPEN_TAB"
15
- android : targetPackage =" org.midorinext.android"
15
+ android : targetPackage =" org.midorinext.android.release "
16
16
android : targetClass =" org.midorinext.android.IntentReceiverActivity" />
17
17
</shortcut >
18
18
<shortcut
23
23
android : shortcutLongLabel =" @string/home_screen_shortcut_open_new_private_tab_2" >
24
24
<intent
25
25
android : action =" org.midorinext.android.OPEN_PRIVATE_TAB"
26
- android : targetPackage =" org.midorinext.android"
26
+ android : targetPackage =" org.midorinext.android.release "
27
27
android : targetClass =" org.midorinext.android.IntentReceiverActivity" />
28
28
</shortcut >
29
29
</shortcuts >
Original file line number Diff line number Diff line change 3
3
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
4
5
5
object AndroidComponents {
6
- const val VERSION = " 133.0 "
6
+ const val VERSION = " 134.0.2 "
7
7
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import java.util.Locale
16
16
17
17
object Config {
18
18
// Synchronized build configuration for all modules
19
- const val compileSdkVersion = 34
19
+ const val compileSdkVersion = 35
20
20
const val minSdkVersion = 21
21
21
const val targetSdkVersion = 34
22
22
You can’t perform that action at this time.
0 commit comments