fix: build warnings

This commit is contained in:
particle-box
2026-01-16 23:40:13 +05:30
parent 4961a36c63
commit d3b7ddda40
4 changed files with 8 additions and 30 deletions

View File

@@ -155,26 +155,3 @@ jobs:
with:
name: purrfectsnap-armv7-debug
path: app/build/outputs/apk/armv7/debug/*.apk
make_prerelease:
needs: [job_armv7, job_armv8]
runs-on: ubuntu-latest
steps:
- name: Download all build artifacts
uses: actions/download-artifact@v4
with:
path: ./all-apks
- name: Display all files for debug
run: find ./all-apks
- name: Set up GitHub CLI
run: |
sudo apt-get install -y gh
- name: Create Debug Prerelease with all APKs
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
VERSION="debug-${{ github.run_id }}-${{ github.sha }}"
TITLE="Debug CI $VERSION"
NOTE="Auto-generated debug prerelease including all APKs from jobs."
APKLIST=$(find ./all-apks -type f -name '*.apk' | tr '\n' ' ')
echo "APKS: $APKLIST"
gh release create "$VERSION" $APKLIST --repo ${{ github.repository }} --title "$TITLE" --notes "$NOTE" --prerelease

View File

@@ -417,7 +417,7 @@ class ScriptingRootSection : Routes.Route() {
)
}
if (openSettings) {
Divider(color = Color.White.copy(alpha = 0.08f))
HorizontalDivider(color = Color.White.copy(alpha = 0.08f))
ScriptSettings(script)
}
}

View File

@@ -18,7 +18,7 @@ import androidx.compose.material.icons.filled.Add
import androidx.compose.material.icons.filled.AutoGraph
import androidx.compose.material.icons.filled.DeleteOutline
import androidx.compose.material.icons.filled.FolderOpen
import androidx.compose.material.icons.filled.Rule
import androidx.compose.material.icons.automirrored.filled.Rule
import androidx.compose.material.icons.filled.SaveAlt
import androidx.compose.material.icons.filled.UploadFile
import androidx.compose.material.icons.filled.FileOpen
@@ -466,7 +466,7 @@ class FriendTrackerManagerRoot : Routes.Route() {
),
contentAlignment = Alignment.Center
) {
Icon(Icons.Default.Rule, contentDescription = null, tint = Color.White)
Icon(Icons.AutoMirrored.Filled.Rule, contentDescription = null, tint = Color.White)
}
}
Column(

View File

@@ -11,10 +11,11 @@ class RefreshFriendSuggestions : Feature("Refresh Friend Suggestions") {
listOf("m34803a", "mo81d").forEach { methodName ->
runCatching {
findClass(className).hook(methodName, HookStage.AFTER) { param ->
(param.getResult() as? MutableMap<String, String>)?.apply {
put("_t", System.currentTimeMillis().toString())
put("limit", "100")
}
val result = param.getResult()
val updated = (result as? Map<*, *>)?.toMutableMap() ?: return@hook
updated["_t"] = System.currentTimeMillis().toString()
updated["limit"] = "100"
param.setResult(updated)
}
}.onFailure {}
}