Skip to content

Commit 4e4342e

Browse files
committed
Upload file
1 parent a494b1e commit 4e4342e

6 files changed

Lines changed: 15 additions & 10 deletions

File tree

Version.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# [Tool-Tree](https://zenlua.github.io/Tool-Tree)
22

3-
Beta:
3+
**Version: 1.3.7 (21-3-2026)**
44

5+
+ Revise the UI interface
56
+ Fix the findfile error caused by the file not being found
67

78
**Version: 1.3.6 (12-3-2026)**

common/src/main/java/com/omarea/common/ui/DialogHelper.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,12 @@ class DialogHelper {
427427
setBackgroundDrawable(bg.toDrawable())
428428
setDimAmount(0.5f)
429429
} else {
430-
setBackgroundDrawable(bg.toDrawable())
430+
if (wallpaperMode || isNightMode(context)) {
431+
val d = Color.argb(255, 18, 18, 18).toDrawable()
432+
setBackgroundDrawable(d)
433+
} else {
434+
val d = Color.argb(255, 245, 245, 245).toDrawable()
435+
setBackgroundDrawable(d)
431436
}
432437
} catch (_: java.lang.Exception) {
433438
setBackgroundDrawable(Color.TRANSPARENT.toDrawable())

pio/src/main/assets/module/ZADD/patch_rom/addon.prop

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ id=patch_rom
44
name=Patch ROM
55
author=Kakathic
66
description=Quick ROM patch
7-
version=1.3
8-
versionCode=113
7+
version=1.4
8+
versionCode=114
99
root=false
1010

1111
# language
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Version: 1.3
1+
Version: 1.4
22

33
+ Revise all add-on tools.

pio/src/main/assets/module/ZADD/patch_rom/patch-rom.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ if [ "$rw_rom" == 1 ];then
585585
for vv in $pvendor/etc/fstab.* $pvendor_boot/ramdisk/first_stage_ramdisk/fstab.*; do
586586
if [ -f "$vv" ];then
587587
[ "$(grep '/system .*.discard' "$vv" | grep -cm1 ext4)" == 1 ] || echo "Warning: No partition containing ext4 was found; it needs to be added manually: $vv" >&2
588-
sed -i '/camera/!s/^\(overlay.*\)/#\1/' "$vv"
588+
sed -i '/camera\|audio\|sensor/!s/^\(overlay.*\)/#\1/' "$vv"
589589
fi
590590
done
591591
# di chuyển pangu và dọn dẹp

pio/src/main/java/com/tool/tree/SplashActivity.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,16 @@ class SplashActivity : AppCompatActivity() {
4747
applyAppLanguage()
4848
super.onCreate(savedInstanceState)
4949
ThemeModeState.switchTheme(this)
50-
50+
binding = ActivitySplashBinding.inflate(layoutInflater)
51+
setContentView(binding.root)
52+
5153
if (ScriptEnvironmen.isInited() && isTaskRoot) {
5254
gotoHome()
5355
return
5456
}
5557

5658
if (!hasAgreed()) showAgreementDialog()
5759

58-
binding = ActivitySplashBinding.inflate(layoutInflater)
59-
setContentView(binding.root)
60-
6160
binding.startLogoXml.postDelayed({
6261
binding.startLogoXml.startAnimation(AnimationUtils.loadAnimation(this, R.anim.blink))
6362
}, 2000)

0 commit comments

Comments
 (0)