chore: 发布 Dev 10
This commit is contained in:
parent
587f770531
commit
08a57b84a7
|
|
@ -101,17 +101,17 @@ dependencies {
|
||||||
kapt "com.android.support:support-annotations:28.0.0"
|
kapt "com.android.support:support-annotations:28.0.0"
|
||||||
|
|
||||||
//AndroidX
|
//AndroidX
|
||||||
implementation "androidx.appcompat:appcompat:1.3.1"
|
implementation "androidx.appcompat:appcompat:1.4.2"
|
||||||
implementation "androidx.core:core-ktx:1.7.0"
|
implementation "androidx.core:core-ktx:1.8.0"
|
||||||
implementation "androidx.annotation:annotation:1.3.0"
|
implementation "androidx.annotation:annotation:1.4.0"
|
||||||
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
|
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
|
||||||
implementation "androidx.preference:preference-ktx:1.1.1"
|
implementation "androidx.preference:preference-ktx:1.2.0"
|
||||||
implementation "androidx.gridlayout:gridlayout:1.0.0"
|
implementation "androidx.gridlayout:gridlayout:1.0.0"
|
||||||
implementation "androidx.browser:browser:1.3.0"
|
implementation "androidx.browser:browser:1.4.0"
|
||||||
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
||||||
implementation "androidx.palette:palette-ktx:1.0.0"
|
implementation "androidx.palette:palette-ktx:1.0.0"
|
||||||
implementation "androidx.window:window:1.0.0-beta03"
|
implementation "androidx.window:window:1.0.0"
|
||||||
implementation "androidx.startup:startup-runtime:1.1.0"
|
implementation "androidx.startup:startup-runtime:1.1.1"
|
||||||
|
|
||||||
//Test
|
//Test
|
||||||
testImplementation "junit:junit:4.13.2"
|
testImplementation "junit:junit:4.13.2"
|
||||||
|
|
@ -126,7 +126,7 @@ dependencies {
|
||||||
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
||||||
implementation "com.github.bumptech.glide:okhttp3-integration:$glide_version"
|
implementation "com.github.bumptech.glide:okhttp3-integration:$glide_version"
|
||||||
|
|
||||||
implementation "com.google.android.material:material:1.4.0"
|
implementation "com.google.android.material:material:1.6.1"
|
||||||
|
|
||||||
implementation "com.squareup.okhttp3:okhttp:4.9.1"
|
implementation "com.squareup.okhttp3:okhttp:4.9.1"
|
||||||
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
|
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
|
||||||
|
|
|
||||||
|
|
@ -197,7 +197,7 @@ class SettingsFragment : PreferencesFragment() {
|
||||||
}
|
}
|
||||||
timePickerPreference.summary = attachContext.getString(
|
timePickerPreference.summary = attachContext.getString(
|
||||||
R.string.summary_auto_sign_time,
|
R.string.summary_auto_sign_time,
|
||||||
preferenceManager.sharedPreferences.getString("auto_sign_time", "09:00")
|
preferenceManager.sharedPreferences!!.getString("auto_sign_time", "09:00")
|
||||||
)
|
)
|
||||||
val clearCache = findPreference<Preference>("clear_cache")
|
val clearCache = findPreference<Preference>("clear_cache")
|
||||||
clearCache!!.summary = attachContext.getString(
|
clearCache!!.summary = attachContext.getString(
|
||||||
|
|
@ -216,7 +216,7 @@ class SettingsFragment : PreferencesFragment() {
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
val littleTaliPreference = findPreference<EditTextPreference>("little_tail")
|
val littleTaliPreference = findPreference<EditTextPreference>("little_tail")
|
||||||
val littleTali = preferenceManager.sharedPreferences.getString("little_tail", "")
|
val littleTali = preferenceManager.sharedPreferences!!.getString("little_tail", "")
|
||||||
if (littleTali!!.isEmpty()) {
|
if (littleTali!!.isEmpty()) {
|
||||||
littleTaliPreference!!.setSummary(R.string.tip_no_little_tail)
|
littleTaliPreference!!.setSummary(R.string.tip_no_little_tail)
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -238,7 +238,7 @@ class SettingsFragment : PreferencesFragment() {
|
||||||
val aboutPreference = findPreference<Preference>("about")
|
val aboutPreference = findPreference<Preference>("about")
|
||||||
val useCustomTabs = findPreference<SwitchPreference>("use_custom_tabs")
|
val useCustomTabs = findPreference<SwitchPreference>("use_custom_tabs")
|
||||||
useCustomTabs!!.isEnabled =
|
useCustomTabs!!.isEnabled =
|
||||||
!preferenceManager.sharedPreferences.getBoolean("use_webview", true)
|
!preferenceManager.sharedPreferences!!.getBoolean("use_webview", true)
|
||||||
findPreference<Preference>("use_webview")!!.onPreferenceChangeListener =
|
findPreference<Preference>("use_webview")!!.onPreferenceChangeListener =
|
||||||
Preference.OnPreferenceChangeListener { _: Preference?, newValue: Any? ->
|
Preference.OnPreferenceChangeListener { _: Preference?, newValue: Any? ->
|
||||||
useCustomTabs.isEnabled = !(newValue as Boolean)
|
useCustomTabs.isEnabled = !(newValue as Boolean)
|
||||||
|
|
@ -281,13 +281,14 @@ class SettingsFragment : PreferencesFragment() {
|
||||||
switchPreference: SwitchPreference?,
|
switchPreference: SwitchPreference?,
|
||||||
defValue: Boolean = false
|
defValue: Boolean = false
|
||||||
) {
|
) {
|
||||||
val value = preferenceManager.sharedPreferences.getBoolean(switchPreference!!.key, defValue)
|
val value =
|
||||||
|
preferenceManager.sharedPreferences!!.getBoolean(switchPreference!!.key, defValue)
|
||||||
switchPreference.isChecked = value
|
switchPreference.isChecked = value
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun initListPreference(key: String, defValue: String) {
|
private fun initListPreference(key: String, defValue: String) {
|
||||||
val listPreference = findPreference<ListPreference>(key)
|
val listPreference = findPreference<ListPreference>(key)
|
||||||
val value = preferenceManager.sharedPreferences.getString(key, defValue)
|
val value = preferenceManager.sharedPreferences!!.getString(key, defValue)
|
||||||
listPreference!!.value = value
|
listPreference!!.value = value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/bg_radius_10dp"
|
android:background="@drawable/bg_radius_10dp"
|
||||||
android:backgroundTint="@color/default_color_card"
|
app:backgroundTint="@color/default_color_card"
|
||||||
android:gravity="center_horizontal"
|
android:gravity="center_horizontal"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:padding="16dp"
|
android:padding="16dp"
|
||||||
|
|
|
||||||
|
|
@ -191,7 +191,7 @@
|
||||||
android:layout_margin="8dp"
|
android:layout_margin="8dp"
|
||||||
android:layout_marginTop="0dp"
|
android:layout_marginTop="0dp"
|
||||||
android:background="@drawable/bg_radius_10dp"
|
android:background="@drawable/bg_radius_10dp"
|
||||||
android:backgroundTint="@color/default_color_card"
|
app:backgroundTint="@color/default_color_card"
|
||||||
android:paddingStart="16dp"
|
android:paddingStart="16dp"
|
||||||
android:paddingEnd="16dp"
|
android:paddingEnd="16dp"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
versionCode=39009
|
versionCode=39010
|
||||||
versionName=4.0.0
|
versionName=4.0.0
|
||||||
isPerRelease=true
|
isPerRelease=true
|
||||||
preReleaseName=dev
|
preReleaseName=dev
|
||||||
preReleaseVer=9
|
preReleaseVer=10
|
||||||
Loading…
Reference in New Issue