Rifat Azad
057388ccef
manager: do not go at the start of the superuser list and stay where you were after app profile changes ( resolves #491 )
2025-06-12 10:42:53 +06:00
Rifat Azad
67759ad723
manager: update app state upon app profile changes
...
properly update the superuser app list state after changes have been made to app profile
2025-06-12 10:18:51 +06:00
Rifat Azad
f231cbdba7
Revert "manager: refresh superuser applist on appprofile exit"
...
This reverts commit fcbb02a115 .
2025-06-12 08:46:38 +06:00
Suraj J Pai
7abc9bc821
[BUGFIX] manager: Fix Module Flashing fails when orientation changes ( #503 )
...
The issue is caused by re-rendering of Activity when orientation changes.
All states are reset when it is re-rendered. Using ViewModel to manage zipUri fixes the issue.
Fixes issue: https://github.com/KernelSU-Next/KernelSU-Next/issues/488
2025-06-12 04:44:45 +06:00
GMárton
e7697d86fe
Update hungarian translation ( #489 )
...
* Update hungarian translation
* Fix typo
---------
Co-authored-by: Marty <marton.garamszegi@mptrdev.com >
2025-06-11 04:30:29 +06:00
1alessandro1
68394fddd5
Update doc ( #485 )
2025-06-11 04:30:14 +06:00
cvnertnc
90d34bf511
Manager: update values-tr/strings.xml ( #469 )
2025-06-11 04:29:47 +06:00
luigimak
236fbc7615
Update Italian Translation ( #461 )
...
* Update Italian Translation
values-it/strings.xml
* fix use_webuix_summary
Update values-it/strings.xml
* Update values-it/strings.xml
* Add module_size values-it/strings.xml
* Add settings_banner values-it/strings.xml
* fix settings_banner
2025-06-11 04:29:31 +06:00
mr_vokintos
6871cbdba7
Update Russian ( #466 )
...
* Update strings.xml
Update Russian
* Update strings.xml
* Update strings.xml
2025-06-11 04:29:15 +06:00
AxelPLN(Axel Yinjia Huang)
38a9949211
Update manager translations for zh-rCN & zh-rTW ( #456 )
...
* Update translations for zh-rCN &zh-rTW to 0a42dbf
* Add zh-rCN & zh-rTW translations for functions as legacyUI & module banner and so on.
Improve translations.
2025-06-11 04:27:58 +06:00
igor
9fba0faa43
Update portuguese translation ( #453 )
...
* Update portuguese translation
* Update strings.xml
* Update strings.xml
* Update README.md
* Update README_PT-BR.md
* Update strings.xml
* Update strings.xml
2025-06-11 04:26:43 +06:00
Caner Karaca
b1250b002e
Workflow Updates ( #481 )
...
* Update
* Use ubuntu-22.04
* Revert some renamings
* Create renovate.json
* oops
2025-06-11 04:23:22 +06:00
Rifat Azad
10f7d5cf50
Revert "manager: keep mount system preference persistent"
...
This reverts commit 609926bff1 .
2025-06-10 02:31:14 +06:00
rifsxd
0c883ddfd6
manager: let module banner be set locally from module dir
...
ex: banner=banner.png , banner=example.webp banner=temp/hello.jpg
if banner string value starts with http, https then it will try to fetch from online.
Co-authored-by: fatalcoder524 <11532648+fatalcoder524@users.noreply.github.com >
2025-06-06 04:09:16 +06:00
Paul
3921175e4c
kernel: core_hook: intercept devpts via security_inode_permission LSM ( #480 )
...
`ksu handles devpts with selinux lsm hook` - aviraxp
- no, not yet, but yes we can, thats a good idea.
This change tries to do that, so instead of hooking pts_unix98_lookup or
devpts_get_priv, we just watch security_inode_permission, if its devpts,
pass it along to the original handler.
Signed-off-by: backslashxx <118538522+backslashxx@users.noreply.github.com >
Co-authored-by: backslashxx <118538522+backslashxx@users.noreply.github.com >
2025-06-05 06:20:53 +06:00
5ec1cff
84fdcf8bf5
throne_tracker: avoid cross fs access
2025-06-03 03:30:54 +06:00
rifsxd
886cfd5a33
manager: adjusted module banner fade opacity
2025-06-03 03:28:42 +06:00
rifsxd
aea384bdd4
manager: do dynamic fade for banner based on monet when available
2025-06-03 01:49:57 +06:00
rifsxd
84695cea71
manager: do white fade for banner when on light mode
2025-06-03 00:58:58 +06:00
rifsxd
f91afe6c46
manager: add module background banners"
...
module devs can add banners for their modules through module.prop config
Example:
banner=https://something.com/banner.png
2025-06-03 00:34:37 +06:00
rifsxd
3f7e731df6
manager: fix update tag attached to wrong module after using sort options ( fix #473 )
2025-06-02 15:34:30 +06:00
rifsxd
582662dce9
manager: fix back gestures conflicting with LKM warning window ( fix #474 )
2025-06-02 15:12:59 +06:00
rifsxd
f3b49723e8
manager: add sorting by size for module list
2025-06-01 21:03:04 +06:00
backslashxx
c4deee1e49
kernel: ksud, throne_tracker: small changes for UL
...
Safe Ultra-Legacy changes that don't deserve their own commit
d_is_reg requires 4.0
- e36cb0b89c
IS_REG is still there on 6.15 so I do NOT see any issues forcing it for all.
strscpy requires 4.3
strscpy on this usage can be replaced with strncpy + null term.
kernel gives us an option though.
strlcpy is fast af, hotrod fast. It’s just memcpy + null term, so lets go with that.
it got dropped in 6.8 due to risk concerns, so for those, lets use og strscpy.
ref: openwrt/packages #26453
Signed-off-by: backslashxx <118538522+backslashxx@users.noreply.github.com >
2025-06-01 20:09:20 +06:00
Yaroslav Zviezda
6a6fc07cd4
kernel: throne_tracker: move throne_tracker to kthread
...
Runs throne_tracker() in kthread instead of blocking the caller.
Prevents full lockup during installation and removing the manager.
This also looks for manager UID in /data/system/packages.list, not
/data/system/packages.list.tmp
Nice additional side effect is a faster booting.
Signed-off-by: backslashxx <118538522+backslashxx@users.noreply.github.com >
Co-Authored-By: backslashxx <118538522+backslashxx@users.noreply.github.com >
2025-06-01 20:03:38 +06:00
rifsxd
d8cb7ef772
manager: fix module sorting state when module list is null initially before modules are fetched (this should fix #470 )
2025-06-01 19:47:43 +06:00
rifsxd
dddf2f06a0
manager: show reboot button when flashing LKM directly and inactive slot
2025-06-01 15:46:25 +06:00
rifsxd
e7e935aeb2
manager: added module size label
2025-06-01 15:37:13 +06:00
rifsxd
cb146200aa
manager: output full logs of actions and flash modules when developer option is enabled
2025-06-01 04:05:35 +06:00
rifsxd
609926bff1
manager: keep mount system preference persistent
2025-06-01 03:37:10 +06:00
rifsxd
8803058521
manager: added amoled theme for non material u devices
2025-06-01 02:33:02 +06:00
rifsxd
c74805b12b
manager: autoexpand infocard when dev option is enabled
2025-06-01 01:43:08 +06:00
rifsxd
43870237fc
manager: removed unused imports from backuprestore.kt
2025-06-01 01:17:44 +06:00
rifsxd
ca24085b5b
manager: add a separate customization screen in settings
2025-06-01 01:17:35 +06:00
rifsxd
93191c2b8b
manager: add legacy ui toggle
2025-06-01 00:20:23 +06:00
rifsxd
ebc3ded2b2
manager: removed module config to override webui engine
2025-05-30 04:18:02 +06:00
rifsxd
d9d1c874ab
manager: improved module update detection and pre-load applist and modulelist
2025-05-30 02:09:13 +06:00
rifsxd
08477fc361
manager: improved module update status label
2025-05-29 20:55:11 +06:00
rifsxd
11836b876f
manager: change home screen power menu icon to a proper power menu icon
2025-05-29 17:24:20 +06:00
rifsxd
bf20965c46
manager: make the module card neat and clean with less clutter and add useful indicators
2025-05-29 16:14:15 +06:00
rifsxd
22a48e52eb
manager: rearrange and refactor the Module Card UI
2025-05-28 21:50:17 +06:00
rifsxd
15b703b5f2
manager: show webui and action label when a module has it
2025-05-28 20:42:57 +06:00
rifsxd
18f0eb8a36
manager: better spacing between app package name and label item in superuser
2025-05-28 18:12:23 +06:00
rifsxd
32cdcc6fbe
manager: improve layout and look of module cards
2025-05-28 17:57:46 +06:00
rifsxd
437c4b9bc5
manager: improved AMOLED mode
2025-05-28 16:11:00 +06:00
rifsxd
0a42dbf5ba
manager: add amoled mode
2025-05-28 04:21:38 +06:00
igor
ea4f319898
Update strings.xml ( #444 )
2025-05-28 01:14:02 +06:00
Rifat Azad
7b6b944106
docs: updated architecture support
2025-05-28 01:13:54 +06:00
rifsxd
59c966771e
manager: show modules update count on status card only if any update is vailable
2025-05-27 03:24:32 +06:00
rifsxd
a83c20b667
manager: removed the logic for if overlayfs is not found then show warning in module screen
...
since magic_mount is the default mount system and if overlayfs is not available we cant swtich to use overlayfs anyways
2025-05-27 03:00:04 +06:00