several fixes
This commit is contained in:
@@ -1,3 +1 @@
|
||||
# PurrfectSnap Announcements
|
||||
|
||||
- Welcome to PurrfectSnap announcements.
|
||||
- Welcome to PurrfectSnap Announcements!
|
||||
@@ -279,7 +279,9 @@ class HomeRootSection : Routes.Route() {
|
||||
text = label,
|
||||
color = Color.White,
|
||||
fontSize = 13.sp,
|
||||
fontWeight = FontWeight.Medium
|
||||
fontWeight = FontWeight.Medium,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -312,9 +314,9 @@ class HomeRootSection : Routes.Route() {
|
||||
label = context.translation["manager.routes.home_logs"]
|
||||
) { routes.homeLogs.navigate() }
|
||||
TopBarActionChip(
|
||||
icon = Icons.Filled.Settings,
|
||||
label = context.translation["manager.routes.home_settings"]
|
||||
) { routes.settings.navigate() }
|
||||
icon = Icons.Filled.Info,
|
||||
label = "About"
|
||||
) { routes.about.navigate() }
|
||||
}
|
||||
|
||||
|
||||
@@ -1188,8 +1190,6 @@ class HomeRootSection : Routes.Route() {
|
||||
icon = Icons.Filled.Info,
|
||||
confirmButtonText = "Close",
|
||||
onConfirm = { showAnnouncementsDialog = false },
|
||||
dismissButtonText = "Dismiss",
|
||||
onDismiss = { showAnnouncementsDialog = false },
|
||||
confirmEnabled = !announcementsLoading,
|
||||
customContent = {
|
||||
Column(
|
||||
|
||||
@@ -33,7 +33,7 @@ tasks.register<GetVersionTask>("getVersion") {
|
||||
}
|
||||
|
||||
// You can still set these for legacy use by submodules or scripts:
|
||||
rootProject.ext.set("appVersionName", providers.gradleProperty("APP_VERSION_NAME").orElse("1.1.2").get())
|
||||
rootProject.ext.set("appVersionName", providers.gradleProperty("APP_VERSION_NAME").orElse("1.2.0").get())
|
||||
rootProject.ext.set("appVersionCode", providers.gradleProperty("APP_VERSION_CODE").orElse("252").get().toInt())
|
||||
rootProject.ext.set("applicationId", "me.eternal.purrfectsnap")
|
||||
rootProject.ext.set(
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
## v1.1.2
|
||||
## v1.2.0
|
||||
- New: Chat Wallpaper Download(upstream commit)
|
||||
- Fix: mappings error
|
||||
- Fix: armv7 failed to initialize error
|
||||
|
||||
@@ -8,8 +8,8 @@ org.gradle.configuration-cache=true
|
||||
org.gradle.configuration-cache.problems=warn
|
||||
nativeAbis=arm64-v8a
|
||||
|
||||
APP_VERSION_NAME=1.1.2
|
||||
APP_VERSION_CODE=252
|
||||
APP_VERSION_NAME=1.2.0
|
||||
APP_VERSION_CODE=255
|
||||
debug_build_hash=18fe2a814d0e2eb5
|
||||
psIntegrityPinnedSha256=
|
||||
EXPECTED_CERT_SHA256=97fc5c4dff7e33c159528eb9e53f86c356d430cd63d177f40c22b577ac829dee
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[versions]
|
||||
accompanist = "0.36.0"
|
||||
agp = "9.0.0-alpha05"
|
||||
colorpicker-compose = "1.1.2"
|
||||
colorpicker-compose = "1.2.0"
|
||||
libsu = "6.0.0"
|
||||
guava = "33.4.8-jre"
|
||||
jsoup = "1.21.2"
|
||||
|
||||
Reference in New Issue
Block a user