Upgrade ktfmt to 0.33 (#1753)
* build: upgrade ktfmt to 0.33 * all: reformat with ktfmt 0.33
This commit is contained in:
parent
0af4e2920c
commit
778834d5e4
4 changed files with 25 additions and 26 deletions
|
@ -178,12 +178,11 @@ class AutofillFilterView : AppCompatActivity() {
|
|||
setText(initialSearch, TextView.BufferType.EDITABLE)
|
||||
addTextChangedListener { updateSearch() }
|
||||
}
|
||||
origin.text =
|
||||
buildSpannedString {
|
||||
append(getString(R.string.oreo_autofill_select_and_fill_into))
|
||||
append("\n")
|
||||
bold { append(formOrigin.getPrettyIdentifier(applicationContext, untrusted = true)) }
|
||||
}
|
||||
origin.text = buildSpannedString {
|
||||
append(getString(R.string.oreo_autofill_select_and_fill_into))
|
||||
append("\n")
|
||||
bold { append(formOrigin.getPrettyIdentifier(applicationContext, untrusted = true)) }
|
||||
}
|
||||
strictDomainSearch.apply {
|
||||
visibility = if (formOrigin is FormOrigin.Web) View.VISIBLE else View.GONE
|
||||
isChecked = formOrigin is FormOrigin.Web
|
||||
|
|
|
@ -33,10 +33,9 @@ class PasswordSettings(private val activity: FragmentActivity) : SettingsProvide
|
|||
}
|
||||
editText(PreferenceKeys.GENERAL_SHOW_TIME) {
|
||||
titleRes = R.string.pref_clipboard_timeout_title
|
||||
summaryProvider =
|
||||
{ timeout ->
|
||||
activity.getString(R.string.pref_clipboard_timeout_summary, timeout ?: "45")
|
||||
}
|
||||
summaryProvider = { timeout ->
|
||||
activity.getString(R.string.pref_clipboard_timeout_summary, timeout ?: "45")
|
||||
}
|
||||
textInputType = InputType.TYPE_CLASS_NUMBER
|
||||
}
|
||||
checkBox(PreferenceKeys.SHOW_PASSWORD) {
|
||||
|
|
|
@ -76,21 +76,20 @@ class OpenKeychainKeyProvider private constructor(val activity: ContinuationCont
|
|||
}
|
||||
|
||||
private suspend fun prepare() {
|
||||
sshServiceApi =
|
||||
suspendCoroutine { cont ->
|
||||
sshServiceConnection.connect(
|
||||
object : SshAuthenticationConnection.OnBound {
|
||||
override fun onBound(sshAgent: ISshAuthenticationService) {
|
||||
logcat { "Bound to SshAuthenticationApi: $OPENPGP_PROVIDER" }
|
||||
cont.resume(SshAuthenticationApi(context, sshAgent))
|
||||
}
|
||||
|
||||
override fun onError() {
|
||||
throw UserAuthException(DisconnectReason.UNKNOWN, "OpenKeychain service unavailable")
|
||||
}
|
||||
sshServiceApi = suspendCoroutine { cont ->
|
||||
sshServiceConnection.connect(
|
||||
object : SshAuthenticationConnection.OnBound {
|
||||
override fun onBound(sshAgent: ISshAuthenticationService) {
|
||||
logcat { "Bound to SshAuthenticationApi: $OPENPGP_PROVIDER" }
|
||||
cont.resume(SshAuthenticationApi(context, sshAgent))
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
override fun onError() {
|
||||
throw UserAuthException(DisconnectReason.UNKNOWN, "OpenKeychain service unavailable")
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
if (keyId == null) {
|
||||
selectKey()
|
||||
|
|
|
@ -5,14 +5,16 @@
|
|||
|
||||
plugins { id("com.diffplug.spotless") }
|
||||
|
||||
val KTFMT_VERSION = "0.33"
|
||||
|
||||
spotless {
|
||||
kotlin {
|
||||
ktfmt().googleStyle()
|
||||
ktfmt(KTFMT_VERSION).googleStyle()
|
||||
target("**/*.kt")
|
||||
targetExclude("**/build/")
|
||||
}
|
||||
kotlinGradle {
|
||||
ktfmt().googleStyle()
|
||||
ktfmt(KTFMT_VERSION).googleStyle()
|
||||
target("**/*.kts")
|
||||
targetExclude("**/build/")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue