Skip to content

Commit

Permalink
Release 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Iamlooker committed Dec 25, 2024
1 parent a8f5968 commit afd939a
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 14 deletions.
2 changes: 0 additions & 2 deletions app/src/main/kotlin/com/looker/droidify/ui/ScreenFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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!!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down
18 changes: 9 additions & 9 deletions build-logic/structure/src/main/kotlin/DefaultConfig.kt
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion core/common/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
28 changes: 28 additions & 0 deletions metadata/en-US/changelogs/640.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit afd939a

Please sign in to comment.