Release 0.6.4
This commit is contained in:
parent
a8f5968cd0
commit
afd939ace0
@ -8,8 +8,6 @@ import androidx.fragment.app.Fragment
|
|||||||
import com.google.android.material.appbar.MaterialToolbar
|
import com.google.android.material.appbar.MaterialToolbar
|
||||||
import com.looker.droidify.databinding.FragmentBinding
|
import com.looker.droidify.databinding.FragmentBinding
|
||||||
|
|
||||||
// Unknown cause, and no crash reports
|
|
||||||
// TODO: When clicking on install notification app crashes
|
|
||||||
open class ScreenFragment : Fragment() {
|
open class ScreenFragment : Fragment() {
|
||||||
private var _fragmentBinding: FragmentBinding? = null
|
private var _fragmentBinding: FragmentBinding? = null
|
||||||
val fragmentBinding get() = _fragmentBinding!!
|
val fragmentBinding get() = _fragmentBinding!!
|
||||||
|
@ -448,7 +448,6 @@ class AppDetailFragment() : ScreenFragment(), AppDetailAdapter.Callbacks {
|
|||||||
.Builder(context, screenshots) { view, current ->
|
.Builder(context, screenshots) { view, current ->
|
||||||
view.load(current.url(product.second, viewModel.packageName))
|
view.load(current.url(product.second, viewModel.packageName))
|
||||||
}
|
}
|
||||||
.withTransitionFrom(parentView)
|
|
||||||
.withStartPosition(position)
|
.withStartPosition(position)
|
||||||
.show()
|
.show()
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
object DefaultConfig {
|
object DefaultConfig {
|
||||||
// Update [release_build.yml] along with this
|
// Update [release_build.yml] along with this
|
||||||
const val buildTools: String = "35.0.0"
|
const val buildTools: String = "35.0.0"
|
||||||
const val appId = "com.looker.droidify"
|
const val appId = "com.looker.droidify"
|
||||||
const val compileSdk = 35
|
const val compileSdk = 35
|
||||||
const val minSdk = 23
|
const val minSdk = 23
|
||||||
// Check for TODOs before update
|
// Check for TODOs before update
|
||||||
const val versionCode = 640
|
const val versionCode = 640
|
||||||
const val versionName = "0.6.4"
|
const val versionName = "0.6.4"
|
||||||
}
|
}
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
<string name="unstable_updates">Unstable updates</string>
|
<string name="unstable_updates">Unstable updates</string>
|
||||||
<string name="unstable_updates_summary">Suggest installing unstable versions</string>
|
<string name="unstable_updates_summary">Suggest installing unstable versions</string>
|
||||||
<string name="ignore_signature">Ignore Signature</string>
|
<string name="ignore_signature">Ignore Signature</string>
|
||||||
<string name="ignore_signature_summary">Ignore signature verification when installing apk, for LSPosed users or advanced users</string>
|
<string name="ignore_signature_summary">*Warning* Ignore signature verification when installing apk, for LSPosed users or advanced users</string>
|
||||||
<string name="unverified">Unverified</string>
|
<string name="unverified">Unverified</string>
|
||||||
<string name="update">Update</string>
|
<string name="update">Update</string>
|
||||||
<string name="updates">Updates</string>
|
<string name="updates">Updates</string>
|
||||||
|
@ -0,0 +1,28 @@
|
|||||||
|
Added:
|
||||||
|
- Dialog to indicate low storage (blocks download)
|
||||||
|
- UserAgent, for repository developers
|
||||||
|
- Multiple New Repositories
|
||||||
|
- Option to Ignore Signature Verification of App (Warning)
|
||||||
|
- Predictive Back Support (Thanks to @First Last)
|
||||||
|
- Better RTL Support
|
||||||
|
- Ability to open app info from Android Settings (Thanks to @jonas-w)
|
||||||
|
- Image cache clears in 7 days
|
||||||
|
|
||||||
|
Fixed:
|
||||||
|
- Background Access Dialog reappearing
|
||||||
|
- Screenshot Container expanding
|
||||||
|
- Some text alignments
|
||||||
|
- 0B/0B sync notification
|
||||||
|
- Auto update won't work if notifications are disabled
|
||||||
|
|
||||||
|
Changed:
|
||||||
|
- Target SDK 34 -> 35
|
||||||
|
- Migrated to Preferences Datastore (removes hassle to add new settings)
|
||||||
|
- Better Install notifications
|
||||||
|
|
||||||
|
Removed:
|
||||||
|
- Screenshot transitions
|
||||||
|
|
||||||
|
Improvement:
|
||||||
|
- Downloading performance
|
||||||
|
- Shizuku Installer performance
|
@ -73,7 +73,7 @@ echo "Version Name: $version_name"
|
|||||||
echo "Changelog file name: $changelog_file"
|
echo "Changelog file name: $changelog_file"
|
||||||
echo "Git tag: $git_tag"
|
echo "Git tag: $git_tag"
|
||||||
|
|
||||||
code $changelog_file
|
nvim $changelog_file
|
||||||
|
|
||||||
# Ask for confirmation before creating a Git tag
|
# Ask for confirmation before creating a Git tag
|
||||||
read -p "Do you want to create a Git tag for version $git_tag? (y/n): " -r
|
read -p "Do you want to create a Git tag for version $git_tag? (y/n): " -r
|
||||||
|
Loading…
x
Reference in New Issue
Block a user