Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
Changelog
==========

Version 1.0.0 *(2024-10-19)*
Version 1.0.2 *(2025-03-19)*
----------------------------

* Minor bug fixes and improvements
* Added more translations

Version 1.0.1 *(2024-10-19)*
----------------------------

* Fixed a crash
Expand Down
12 changes: 6 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
android:protectionLevel="signature" />

<queries>
<package android:name="org.fossify.appdrawer" />
<package android:name="org.fossify.appdrawer.debug" />
<package android:name="org.fossify.calculator" />
<package android:name="org.fossify.calculator.debug" />
<package android:name="org.fossify.calendar" />
<package android:name="org.fossify.calendar.debug" />
<package android:name="org.fossify.camera" />
Expand All @@ -42,10 +38,12 @@
<package android:name="org.fossify.flashlight.debug" />
<package android:name="org.fossify.gallery" />
<package android:name="org.fossify.gallery.debug" />
<package android:name="org.fossify.keyboard" />
<package android:name="org.fossify.keyboard.debug" />
<package android:name="org.fossify.home" />
<package android:name="org.fossify.home.debug" />
<package android:name="org.fossify.keyboard" />
<package android:name="org.fossify.keyboard.debug" />
<package android:name="org.fossify.math" />
<package android:name="org.fossify.math.debug" />
<package android:name="org.fossify.messages" />
<package android:name="org.fossify.messages.debug" />
<package android:name="org.fossify.musicplayer" />
Expand All @@ -61,6 +59,8 @@
<package android:name="dev.imranr.obtainium" />
<package android:name="dev.imranr.obtainium.fdroid" />
<package android:name="com.aurora.store" />
<package android:name="app.accrescent.client" />
<package android:name="com.android.vending" />
</queries>

<application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fun Context.getAllFossifyApps(): List<FossifyApp> {
installerName = getInstallerLabel(installerPackage),
verified = true
)
}.sortedBy { it.packageName }
}.sortedBy { it.name }
}
}

Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Minor bug fixes and improvements
* Added more translations
15 changes: 7 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ kotlin = "1.9.25"
#Detekt
detekt = "1.23.3"
#Fossify
commons = "54b78551a4"
commons = "29e9b0d13e"
#Compose
composeActivity = "1.9.3"
compose = "1.7.4"
compose = "1.7.8"
composeCompiler = "1.5.15"
composeMaterial3 = "1.3.0"
composeMaterial3 = "1.3.1"
accompanist = "0.36.0"
#Androidx
androidx-customView = "1.2.0-alpha02"
androidx-customViewPooling = "1.0.0"
androidx-lifecycle = "2.8.6"
androidx-lifecycle = "2.8.7"
#Gradle
gradlePlugins-agp = "8.6.1"
gradlePlugins-agp = "8.9.0"
app-build-compileSDKVersion = "34"
app-build-targetSDK = "34"
app-build-minimumSDK = "26"
app-build-javaVersion = "VERSION_17"
app-build-kotlinJVMTarget = "17"
#versioning
app-version-appId = "org.fossify.thankyou"
app-version-versionCode = "2"
app-version-versionName = "1.0.1"
app-version-versionCode = "3"
app-version-versionName = "1.0.2"
[libraries]
#Android X
androidx-customView = { module = "androidx.customview:customview", version.ref = "androidx-customView" }
Expand All @@ -41,7 +41,6 @@ androidx-lifecycle-compose = { module = "androidx.lifecycle:lifecycle-runtime-co
compose-compiler = { module = "androidx.compose.compiler:compiler", version.ref = "composeCompiler" }
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" }
compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "composeMaterial3" }
compose-material2 = { module = "androidx.compose.material:material", version.ref = "compose" }
compose-material-icons = { module = "androidx.compose.material:material-icons-extended", version.ref = "compose" }
compose-animation = { module = "androidx.compose.animation:animation", version.ref = "compose" }
compose-activity = { module = "androidx.activity:activity-compose", version.ref = "composeActivity" }
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Mon Dec 28 13:44:12 CET 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
Loading
Loading