Skip to content

Commit

Permalink
Version 11.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkaW committed Feb 11, 2021
1 parent a54303b commit c88a4dd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ext {
moduleAuthor = "Rikka"
moduleDescription = "Modern superuser interface implementation, shares the same API design from Shizuku."
moduleVersionMinor = 4
moduleVersionPatch = 1
moduleVersionPatch = 2
moduleVersion = "v${api_version_major}.${moduleVersionMinor}.${moduleVersionPatch}"
moduleVersionCode = gitCommitCount
moduleMinRiruApiVersion = 9
Expand Down
3 changes: 0 additions & 3 deletions module/src/main/java/rikka/sui/server/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,6 @@ private void enforceCallingPermission(String func) {
}

ClientRecord clientRecord = clientManager.findClient(callingUid, callingPid);
if (clientRecord != null && clientRecord.allowed) {
return;
}

if (clientRecord == null) {
throw new SecurityException("Permission Denial: " + func + " from pid="
Expand Down
13 changes: 13 additions & 0 deletions template/magisk_module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@

## Changelog

### v11.4.2 (2021-02-11)

- Reduce the file size

### v11.4.1 (2021-02-07)

- Fix an undefined behavior
- Skip packages with no code

### v11.4 (2021-01-26)

- Avoid a possible race condition

### v11.3 (2021-01-19)

- Open management UI trough a notification, this notification will show when you are in "Developer options"
Expand Down

0 comments on commit c88a4dd

Please sign in to comment.