Commit Graph

3526 Commits

Author SHA1 Message Date
topjohnwu 7da97489cc Add v7.4.0 release notes manager-v7.4.0 v20.1 2019-11-02 01:24:56 -04:00
topjohnwu a9f11b28c8 Fix busybox scripts again 2019-11-02 01:16:54 -04:00
topjohnwu b31d986c8d Update scripts 2019-11-02 00:41:51 -04:00
Oliver Cervera 2dad751889 Update Italian translation
- updated existing strings based on english updates
- added new strings
2019-11-02 00:28:07 -04:00
osm0sis c85b1c56af signing: fixes for bootimg hdr_v1 and hdr_v2
- increase SignBoot bootimg header version maximum from 4 to 8 (upstream AOSP is already at 3) and make a variable for future ease
- hdr read size of 1024 bytes was too small as hdr_v1 and hdr_v2 have increased the used header page areas to 1632 and 1648 bytes, respectively, so raise this to the minimum page size of 2048 and also make a variable for future ease
- do not return "not signed" for all caught exceptions, show StackTrace for future debugging then still return false for script purposes
- correct "test keys" boot image signing strings (scripts and app) to "verity keys"
2019-11-02 00:27:56 -04:00
osm0sis 6dd34aec47 scripts: refactor and major addon.d fixes
- remove redundant addon.d.sh script bits that were covered elsewhere ($TMPDIR in util_functions.sh, find_dtbo_image in patch_dtbo_image)
- refactor addon.d.sh and flash_script.sh for simplicity and readability, and put common flashing script in util_functions.sh (as patch_boot_image), which should greatly help avoid them getting out of sync going forward and fixes compressing ramdisk support and post-patch cleanup for addon.d
- add check_data to addon.d.sh since moving stock_boot* and stock_dtbo* backups depend on it and so weren't occuring with addon.d
- fix find_manager_apk with working fallback for recovery addon.d execution (where `magisk --sqlite` will not work for hidden Manager), Manager DynAPK hiding, and print a useful log warning if an APK can't be found
2019-11-02 00:27:56 -04:00
topjohnwu 4cd154675f Random dname 2019-11-01 18:52:37 -04:00
Viktor De Pasquale d8d72f92b3 Fixed policy toggle being impossible to cancel 2019-11-01 14:47:59 +01:00
topjohnwu a30f5b175f Fix busybox makefiles 2019-11-01 09:38:01 -04:00
topjohnwu 8277896ca1 Make sure uninstall.sh is executed on remove 2019-11-01 03:07:12 -04:00
topjohnwu 493068c073 Attempt to rescan zygote multiple times
Close #1654
2019-11-01 02:12:28 -04:00
topjohnwu f4299fbea8 Update BusyBox to 1.31.1 2019-10-31 18:11:10 -04:00
topjohnwu 10ce11d671 Fix config/locale issues
Close #1977
2019-10-31 17:13:06 -04:00
topjohnwu 0f34457a10 Directly store strings in viewmodel 2019-10-31 15:33:13 -04:00
topjohnwu 34c65e13bc Fix strings
Close #2012
2019-10-31 12:39:54 -04:00
John Wu 17a77e2577 Shortcut booleans 2019-10-31 02:44:25 -04:00
John Wu 0f219e5ae6 Better argument parsing logic 2019-10-31 02:44:25 -04:00
osm0sis 353c3c7d81 magiskboot: add unpack -n to help with repack validity tests
- support unpack without decompression to allow easy testing of magiskboot's header, structure and hashing handling by comparing repack checksum versus origbootimg
- make -n first to match repack
2019-10-31 02:44:25 -04:00
Rom 0a89edf3b0 Update French translation 2019-10-31 02:04:00 -04:00
topjohnwu e7155837d7 Make sure magisk daemon won't get killed by init
According to this comment in #1880:
https://github.com/topjohnwu/Magisk/issues/1880#issuecomment-546657588

If Linux recycled our PPID, and coincidentally the process that reused
the PPID is root, AND init wants to kill the whole process group,
magiskd will get killed as a result.

There is no real way to block a SIGKILL signal, so we simply make sure
our daemon PID is the process group leader by renaming the directory.

Close #1880
2019-10-31 01:57:47 -04:00
topjohnwu 31e003bda5 Fix bug in version detection 2019-10-30 05:24:22 -04:00
topjohnwu 490e4d3180 Target the proper channel in stub 2019-10-30 05:00:52 -04:00
topjohnwu dc9f69bab0 Minor changes 2019-10-30 04:15:53 -04:00
topjohnwu fdf04f77f2 Send bitmap to notifications and shortcuts
On API 23+, the platform unifies the way to handle drawable
resources across processes: all drawables can be passed via Icon.
This allows us to send raw bitmap to the system without the need to
specify a resource ID. This means that we are allowed to NOT include
these drawable resources within our stub APK, since our full APK can
draw the images programmatically and send raw bitmaps to the system.
2019-10-30 01:02:53 -04:00
topjohnwu 5e87483f34 Move addAssetPath to shared 2019-10-29 07:37:19 -04:00
topjohnwu f7aa451591 Update strings 2019-10-29 07:36:50 -04:00
topjohnwu 321d11c2c6 Move Mapping class 2019-10-29 07:21:14 -04:00
topjohnwu ee447bc4ce Improve Keygen yet again 2019-10-26 21:11:32 -04:00
Nathan Muccino 31153e4366 Minor grammatical changes
The plural form of the words 'documentation' and 'following' are used very rarely if ever and I don't believe that they should be used in this particular context.
2019-10-26 19:26:27 -04:00
topjohnwu 7693024c29 Replace general resources with platform 2019-10-26 19:23:57 -04:00
Mevlüt TOPÇU 9628700a2f Update Turkish language
Hi,

Merge please

Thanks
2019-10-26 19:03:52 -04:00
Taras 38576173cb Update Ukrainian translation 2019-10-26 19:03:37 -04:00
topjohnwu 19a769c12e Update dependencies 2019-10-26 19:02:11 -04:00
topjohnwu 3c1db7d2f7 Fix some A/B devices unable to boot into recovery
Some newer recovery ramdisk no longer have /sbin/recovery.
Add /system/bin/recovery as an additional indication for recovery.

Close #1920
2019-10-26 17:12:35 -04:00
topjohnwu 626507093a Don't need to wrap another layer of context 2019-10-26 15:37:12 -04:00
topjohnwu 588b3d14a3 Fix typo 2019-10-24 15:37:32 -04:00
vvb2060 815efa7791 Update zh-rCN translation 2019-10-24 13:04:36 -04:00
topjohnwu 97a691ce2f Improve keygen for signing repackaged manager 2019-10-24 13:04:15 -04:00
topjohnwu 9d948f2c2b Temporary disable verification when hiding app
For some reason, Google Play Protect randomly blocks our self-signed
repackaged Magisk Manager APKs. Since we are root, the sky is our
limit, so yeah, disable package verification temporarily when installing
patched APKs, LOLz

Close #1979
2019-10-24 12:23:03 -04:00
topjohnwu 0b87108174 Move things around 2019-10-24 05:21:42 -04:00
topjohnwu 7fc7809cfc More precise channel targeting 2019-10-24 04:25:05 -04:00
topjohnwu c30be20e49 Minor CachedValue fix 2019-10-24 04:02:01 -04:00
topjohnwu 25c64db0a1 Treat outdated stub as outdated manager 2019-10-24 03:54:16 -04:00
topjohnwu 676e9c6593 Provide upgrade path for stubs 2019-10-24 02:47:40 -04:00
topjohnwu d459859361 Show stub version 2019-10-24 00:54:40 -04:00
topjohnwu 2be0cef446 Add proper intent filters to stub 2019-10-23 17:55:26 -04:00
topjohnwu 294db93fde Copy instead of move
We might be copying from CE to DE storage, which cannot be moved
2019-10-23 17:20:55 -04:00
topjohnwu 7f971f7173 Make sure our constructor is preserved 2019-10-23 07:51:32 -04:00
topjohnwu 5c7b59524d Fix strings 2019-10-23 07:15:28 -04:00
topjohnwu 5133e5910e Don't relaunch app immediately 2019-10-23 07:12:00 -04:00