Release 0.6.4

This commit is contained in:
LooKeR 2024-12-26 00:34:55 +05:30
parent a8f5968cd0
commit afd939ace0
6 changed files with 39 additions and 14 deletions

View File

@ -8,8 +8,6 @@ import androidx.fragment.app.Fragment
import com.google.android.material.appbar.MaterialToolbar
import com.looker.droidify.databinding.FragmentBinding
// Unknown cause, and no crash reports
// TODO: When clicking on install notification app crashes
open class ScreenFragment : Fragment() {
private var _fragmentBinding: FragmentBinding? = null
val fragmentBinding get() = _fragmentBinding!!

View File

@ -448,7 +448,6 @@ class AppDetailFragment() : ScreenFragment(), AppDetailAdapter.Callbacks {
.Builder(context, screenshots) { view, current ->
view.load(current.url(product.second, viewModel.packageName))
}
.withTransitionFrom(parentView)
.withStartPosition(position)
.show()
}

View File

@ -1,10 +1,10 @@
object DefaultConfig {
// Update [release_build.yml] along with this
const val buildTools: String = "35.0.0"
const val appId = "com.looker.droidify"
const val compileSdk = 35
const val minSdk = 23
// Check for TODOs before update
const val versionCode = 640
const val versionName = "0.6.4"
object DefaultConfig {
// Update [release_build.yml] along with this
const val buildTools: String = "35.0.0"
const val appId = "com.looker.droidify"
const val compileSdk = 35
const val minSdk = 23
// Check for TODOs before update
const val versionCode = 640
const val versionName = "0.6.4"
}

View File

@ -220,7 +220,7 @@
<string name="unstable_updates">Unstable updates</string>
<string name="unstable_updates_summary">Suggest installing unstable versions</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="update">Update</string>
<string name="updates">Updates</string>

View File

@ -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

View File

@ -73,7 +73,7 @@ echo "Version Name: $version_name"
echo "Changelog file name: $changelog_file"
echo "Git tag: $git_tag"
code $changelog_file
nvim $changelog_file
# 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