Skip to content

Commit

Permalink
[fastlane] Prepare for v2.5.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MuntashirAkon committed Jul 3, 2020
1 parent c2b6afa commit 143d818
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 14 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ Yet another android package manager and viewer but...
- It displays your app usage, data usage and app storage info (requires “Usage Access” permission)
- Apk files can be shared (hence the use of a provider)
- It can be used to clear app data or app cache (requires root)
- Batch operations: clear app data, disable run in background, disable/kill/uninstall apps

...and other minor features such as uninstalling/enabling/disabling apps, displaying app installation info, opening on F-Droid or Aurora Droid.
...and other minor features such as uninstalling/enabling/disabling apps, displaying app installation info, opening on F-Droid, Aurora Droid or Aurora Store.

It basically combined the features of five or six apps that any tech-savy person is needed to install in order to have a “life”.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public List<ApplicationItem> loadInBackground() {
item.size = (long) -1 * applicationInfo.targetSdkVersion;
}
if (isRootEnabled) {
item.blockedCount = ComponentsBlocker.getInstance(getContext(), pName, true)
item.blockedCount = ComponentsBlocker.getInstance(getContext(), pName, false)
.componentCount();
}
itemList.add(item);
Expand Down Expand Up @@ -87,7 +87,7 @@ public List<ApplicationItem> loadInBackground() {
}
if (isRootEnabled) {
item.blockedCount = ComponentsBlocker.getInstance(getContext(),
applicationInfo.packageName, true).componentCount();
applicationInfo.packageName, false).componentCount();
}
itemList.add(item);
}
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
\n- View app usage statistics (in the menu) (requires “Usage Access” permission)
\n- View running apps/processes (in the menu) (requires root)
\n- Open APK Updater directly (in the menu) (if installed)
\n- Batch operations (click on any app icon to select)
\n
\nList colors used in the main window and their meaning:
\n<u>Red</u>: Doesn\'t allow clearing data storage
Expand Down
4 changes: 2 additions & 2 deletions app/version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Fri Jul 03 20:25:18 BDT 2020
#Fri Jul 03 21:06:44 BDT 2020
VERSION_NAME=2.5.6
VERSION_CODE=232
VERSION_CODE=233
8 changes: 8 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/233.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
- [Feature] Batch operations in the main window: clear app data, disable run in background, disable/kill/uninstall apps (click on the app icon to select)
- [Feature] Full support of Blocker's exported files which was broken due to a bug on Blocker app
- [Feature] Reimplementation of blocking activities, receivers, services and providers
- [Fix] Remove ConstraintLayout dependency therefore a potential decrease in app size
- [Fix] Fix duplicate app usage warning in the App Info window
- [Fix] Fix crash when an app icon is not found in App Details window

Note for root users: In order to ensure that the previous blocking rules are preserved with the new blocking implementation, this update reads from the previous rules consequently increasing the loading time in the main window. This feature will be removed in the next release but can still be simulated by applying global rules in settings.
19 changes: 10 additions & 9 deletions fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,21 @@
<li>Doesn't connect to the internet</li>
<li>Display as much information as possible in the main window</li>
<li>Lists activities, broadcast receivers, services, providers, permissions, signatures, shared libraries, etc. of any app</li>
<li>Ability to launch (exportable) activities, create (customizable) shortcuts</li>
<li>Ability to block any activities, broadcast receivers, services or providers you like with Watt and Blocker import support (requires root)</li>
<li>Ability to revoke permissions that are considered dangerous (requires root)</li>
<li>Ability to disable any app ops (requires root)</li>
<li>Launch (exportable) activities, create (customizable) shortcuts</li>
<li>Block any activities, broadcast receivers, services or providers with Watt and Blocker import support (requires root)</li>
<li>Revoke <i>dangerous</i> permissions (requires root)</li>
<li>Disable any app ops, therefore any hidden permissions (requires root)</li>
<li>Scan for trackers in apps and list (all or only) tracking classes (and their code dump)</li>
<li>Ability to generate dynamic manifest for any app</li>
<li>Generate dynamic manifest for any application</li>
<li>View/edit/delete shared preferences of any app (requires root)</li>
<li>Ability to view running apps/process (requires root)</li>
<li>Ability to view app usage, data usage and app storage info (requires “Usage Access” permission)</li>
<li>View/kill/force-stop running apps/process (requires root)</li>
<li>View app usage, data usage and app storage info (requires “Usage Access” permission)</li>
<li>Apk file sharing (hence the use of a provider)</li>
<li>Ability to to clear app data or app cache (requires root)</li>
<li>Clear app data or app cache (requires root)</li>
<li>Batch operations: clear app data, disable run in background, disable/kill/uninstall apps</li>
</ul>

...and other minor features such as uninstalling/enabling/disabling apps, displaying app installation info, opening on F-Droid or Aurora Droid.
...and other minor features such as uninstalling/enabling/disabling apps, displaying app installation info, opening on F-Droid, Aurora Droid or Aurora Store.

It basically combined the features of five or six apps that any tech-savy person is needed to install in order to have a “life”.

Expand Down

0 comments on commit 143d818

Please sign in to comment.