Welcome back magic_mount!

This commit is contained in:
Rifat Azad
2024-12-11 20:57:43 +06:00
committed by rifsxd
parent 54302c1bc9
commit e005daeee1
4 changed files with 8 additions and 8 deletions

View File

@@ -2,14 +2,14 @@ name: Build Manager
on:
push:
branches: [ "magic" ]
branches: [ "next" ]
paths:
- '.github/workflows/build-manager.yml'
- 'manager/**'
- 'kernel/**'
- 'userspace/ksud/**'
pull_request:
branches: [ "magic" ]
branches: [ "next" ]
paths:
- 'manager/**'
workflow_call:

View File

@@ -68,7 +68,7 @@ android {
applicationVariants.all {
outputs.forEach {
val output = it as BaseVariantOutputImpl
output.outputFileName = "KernelSU_${managerVersionName}_${managerVersionCode}-next-magic-$name.apk"
output.outputFileName = "KernelSU_${managerVersionName}_${managerVersionCode}-next-$name.apk"
}
kotlin.sourceSets {
getByName(name) {

View File

@@ -421,7 +421,7 @@ private fun InfoCard() {
val managerVersion = getManagerVersion(context)
InfoCardItem(
stringResource(R.string.home_manager_version),
"${managerVersion.first}-next-magic (${managerVersion.second})"
"${managerVersion.first}-next (${managerVersion.second})"
)
Spacer(Modifier.height(16.dp))
@@ -436,7 +436,7 @@ private fun InfoCard() {
@Composable
fun Next() {
val uriHandler = LocalUriHandler.current
val url = stringResource(R.string.home_next_kernelsu_announce)
val url = stringResource(R.string.home_next_kernelsu_repo)
ElevatedCard {

View File

@@ -48,9 +48,9 @@
<string name="safe_mode">Safe mode</string>
<string name="reboot_to_apply">Reboot to take effect</string>
<string name="module_magisk_conflict">Modules are unavailable due to a conflict with Magisk!</string>
<string name="home_next_kernelsu">🔥 Next 🪄 Magic Build</string>
<string name="home_next_kernelsu_announce">https://github.com/rifsxd/KernelSU/tree/magic</string>
<string name="home_next_kernelsu_body">Next magic-mount modifications branch. Check it out on GitHub!</string>
<string name="home_next_kernelsu">🔥 Next Build</string>
<string name="home_next_kernelsu_repo">https://github.com/rifsxd/KernelSU</string>
<string name="home_next_kernelsu_body">Next modifications branch. Check it out on GitHub!</string>
<string name="home_learn_kernelsu">Learn KernelSU</string>
<string name="home_learn_kernelsu_url">https://kernelsu.org/guide/what-is-kernelsu.html</string>
<string name="home_click_to_learn_kernelsu">Learn how to install KernelSU and use modules</string>